From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH v4 1/3] lpm: make rte_lpm_lookupx4 API definition architecture agnostic Date: Tue, 01 Mar 2016 18:42:35 +0100 Message-ID: <5714484.YVztAxKXHT@xps13> References: <1454040645-23864-1-git-send-email-jerin.jacob@caviumnetworks.com> <1455280123-9311-1-git-send-email-jerin.jacob@caviumnetworks.com> <1455280123-9311-2-git-send-email-jerin.jacob@caviumnetworks.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org, viktorin@rehivetech.com To: Jerin Jacob Return-path: Received: from mail-wm0-f42.google.com (mail-wm0-f42.google.com [74.125.82.42]) by dpdk.org (Postfix) with ESMTP id 87FF9AD7B for ; Tue, 1 Mar 2016 18:44:11 +0100 (CET) Received: by mail-wm0-f42.google.com with SMTP id l68so48755823wml.0 for ; Tue, 01 Mar 2016 09:44:11 -0800 (PST) In-Reply-To: <1455280123-9311-2-git-send-email-jerin.jacob@caviumnetworks.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 2016-02-12 17:58, Jerin Jacob: > -Used architecture agnostic xmm_t to represent 128 bit SIMD variable > > -Introduced vect_* API abstraction in app/test to test rte_lpm_lookupx4 > API in architecture agnostic way > > -Moved rte_lpm_lookupx4 SSE implementation to architecture specific > rte_lpm_sse.h file to accommodate new rte_lpm_lookupx4 implementation > for a different architecture. > > Signed-off-by: Jerin Jacob > Acked-by: Konstantin Ananyev > --- > app/test/test_lpm.c | 21 ++++--- > app/test/test_xmmt_ops.h | 47 ++++++++++++++ > lib/librte_lpm/Makefile | 2 + > lib/librte_lpm/rte_lpm.h | 93 +--------------------------- > lib/librte_lpm/rte_lpm_sse.h | 143 +++++++++++++++++++++++++++++++++++++++++++ > 5 files changed, 206 insertions(+), 100 deletions(-) app/test/test_xmmt_ops.h must be added to LPM in MAINTAINERS file.