From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 01707532C for ; Wed, 28 Sep 2016 02:36:58 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga104.fm.intel.com with ESMTP; 27 Sep 2016 17:36:58 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,407,1470726000"; d="scan'208";a="1057505921" Received: from yliu-dev.sh.intel.com (HELO yliu-dev) ([10.239.67.162]) by orsmga002.jf.intel.com with ESMTP; 27 Sep 2016 17:36:56 -0700 Date: Wed, 28 Sep 2016 08:37:32 +0800 From: Yuanhan Liu To: Jerin Jacob Cc: dev@dpdk.org, thomas.monjalon@6wind.com, bruce.richardson@intel.com, jianbo.liu@linaro.org, huawei.xie@intel.com Message-ID: <20160928003732.GC1597@yliu-dev.sh.intel.com> References: <1467722966-2572-1-git-send-email-jerin.jacob@caviumnetworks.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1467722966-2572-1-git-send-email-jerin.jacob@caviumnetworks.com> User-Agent: Mutt/1.5.23 (2014-03-12) Subject: Re: [dpdk-dev] [PATCH v3 0/4] Virtio NEON support for ARM X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Sep 2016 00:36:59 -0000 On Tue, Jul 05, 2016 at 06:19:22PM +0530, Jerin Jacob wrote: > This patch-set includes, > > 1) General cleanup of compile time dependency. > 2) made vector handler section based on run-time cpuflags > 2) Added NEON support for optimized Rx handling > > This patch-set is based on dpdk-next-virtio/master Now the weird build issue is gone, this series is applied to dpdk-next-virtio. I addressed some conflict issues; you might want to have a simple check to make sure I don't mess something up. Or even better, if you could do a test. Thanks. --yliu > > v3: > Address Yuanhan's review comments > http://dpdk.org/dev/patchwork/patch/14495/ > http://dpdk.org/dev/patchwork/patch/14496/ > > v2: > - made vector handler selection based on run-time cpuflags (Suggested by Thomas) > - moved vector implementations to .c file instead of .h file(Suggested by Jianbo) > > Jerin Jacob (4): > virtio: conditional compilation cleanup > virtio: move SSE based Rx implementation to separate file > virtio: add cpuflag based vector handler selection > virtio: add neon support > > MAINTAINERS | 1 + > doc/guides/rel_notes/release_16_07.rst | 2 + > drivers/net/virtio/Makefile | 7 +- > drivers/net/virtio/virtio_pci.h | 1 + > drivers/net/virtio/virtio_rxtx.c | 63 ++++--- > drivers/net/virtio/virtio_rxtx.h | 3 +- > drivers/net/virtio/virtio_rxtx_simple.c | 269 ++------------------------- > drivers/net/virtio/virtio_rxtx_simple.h | 133 +++++++++++++ > drivers/net/virtio/virtio_rxtx_simple_neon.c | 235 +++++++++++++++++++++++ > drivers/net/virtio/virtio_rxtx_simple_sse.c | 222 ++++++++++++++++++++++ > drivers/net/virtio/virtio_user_ethdev.c | 1 + > 11 files changed, 646 insertions(+), 291 deletions(-) > create mode 100644 drivers/net/virtio/virtio_rxtx_simple.h > create mode 100644 drivers/net/virtio/virtio_rxtx_simple_neon.c > create mode 100644 drivers/net/virtio/virtio_rxtx_simple_sse.c > > -- > 2.5.5