From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id B0D7891CC for ; Fri, 30 Oct 2015 15:24:19 +0100 (CET) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga103.jf.intel.com with ESMTP; 30 Oct 2015 07:24:18 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,218,1444719600"; d="scan'208";a="839337526" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by fmsmga002.fm.intel.com with ESMTP; 30 Oct 2015 07:24:18 -0700 Received: from fmsmsx111.amr.corp.intel.com (10.18.116.5) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.248.2; Fri, 30 Oct 2015 07:24:18 -0700 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by fmsmsx111.amr.corp.intel.com (10.18.116.5) with Microsoft SMTP Server (TLS) id 14.3.248.2; Fri, 30 Oct 2015 07:24:17 -0700 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.253]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.96]) with mapi id 14.03.0248.002; Fri, 30 Oct 2015 22:24:16 +0800 From: "Liang, Cunming" To: "Tao, Zhe" , "dev@dpdk.org" Thread-Topic: [dpdk-dev][PATCH 0/4 v4] i40e: add vector PMD support for FVL Thread-Index: AQHREx2nrUoJo75wsUmzlFwZcJrXx56EFvPQ Date: Fri, 30 Oct 2015 14:24:15 +0000 Message-ID: References: <1446210115-13927-1-git-send-email-zhe.tao@intel.com> <1446214599-14669-1-git-send-email-zhe.tao@intel.com> In-Reply-To: <1446214599-14669-1-git-send-email-zhe.tao@intel.com> Accept-Language: zh-CN, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH 0/4 v4] i40e: add vector PMD support for FVL 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: Fri, 30 Oct 2015 14:24:20 -0000 Hi, > -----Original Message----- > From: Tao, Zhe > Sent: Friday, October 30, 2015 10:17 PM > To: dev@dpdk.org > Cc: Tao, Zhe; Liang, Cunming > Subject: [dpdk-dev][PATCH 0/4 v4] i40e: add vector PMD support for FVL >=20 > This patch set add the vector PMD support for FVL. > FVL vPMD works like the way ixgbe does > All the functionality is tested >=20 > PATCH v1: add the vector PMD support for FVL >=20 > PATCH v2: remove the extra code out of share code > change the prefetch position for splitter packets support > update the release note >=20 > PATCH v3: make the new patch set >=20 > PATCH v4: fix some format issues >=20 > Zhe Tao (4): > add vector PMD RX for FVL > add vector PMD TX for FVL > add vector PMD scatter RX for FVL > add RX and TX selection function for FVL >=20 > config/common_bsdapp | 2 + > config/common_linuxapp | 2 + > doc/guides/rel_notes/release_2_2.rst | 4 + > drivers/net/i40e/Makefile | 1 + > drivers/net/i40e/i40e_ethdev.c | 20 +- > drivers/net/i40e/i40e_ethdev.h | 6 + > drivers/net/i40e/i40e_ethdev_vf.c | 28 +- > drivers/net/i40e/i40e_rxtx.c | 227 +++++++++- > drivers/net/i40e/i40e_rxtx.h | 40 +- > drivers/net/i40e/i40e_rxtx_vec.c | 777 > +++++++++++++++++++++++++++++++++++ > 10 files changed, 1082 insertions(+), 25 deletions(-) > create mode 100644 drivers/net/i40e/i40e_rxtx_vec.c >=20 > -- > 1.9.3 Acked-by: Cunming Liang