From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 6F63E8E80 for ; Fri, 30 Oct 2015 09:26:48 +0100 (CET) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP; 30 Oct 2015 01:26:48 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,217,1444719600"; d="scan'208";a="807298754" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by orsmga001.jf.intel.com with ESMTP; 30 Oct 2015 01:26:47 -0700 Received: from fmsmsx119.amr.corp.intel.com (10.18.124.207) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.248.2; Fri, 30 Oct 2015 01:26:43 -0700 Received: from shsmsx103.ccr.corp.intel.com (10.239.4.69) by FMSMSX119.amr.corp.intel.com (10.18.124.207) with Microsoft SMTP Server (TLS) id 14.3.248.2; Fri, 30 Oct 2015 01:26:43 -0700 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.253]) by SHSMSX103.ccr.corp.intel.com ([169.254.4.204]) with mapi id 14.03.0248.002; Fri, 30 Oct 2015 16:26:41 +0800 From: "Liang, Cunming" To: "Chen, Jing D" , "dev@dpdk.org" Thread-Topic: [PATCH v5 00/14] Vector Rx/Tx PMD implementation for fm10k Thread-Index: AQHREul6Cz66n350QUKsZMaBb5HfkJ6Ds4Dw Date: Fri, 30 Oct 2015 08:26:40 +0000 Message-ID: References: <1446110173-13330-2-git-send-email-jing.d.chen@intel.com> <1446192187-1890-1-git-send-email-jing.d.chen@intel.com> In-Reply-To: <1446192187-1890-1-git-send-email-jing.d.chen@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 v5 00/14] Vector Rx/Tx PMD implementation for fm10k 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 08:26:49 -0000 > -----Original Message----- > From: Chen, Jing D > Sent: Friday, October 30, 2015 4:03 PM > To: dev@dpdk.org > Cc: Liang, Cunming; Tao, Zhe; He, Shaopeng; Ananyev, Konstantin; Richards= on, > Bruce; Chen, Jing D > Subject: [PATCH v5 00/14] Vector Rx/Tx PMD implementation for fm10k >=20 > From: "Chen Jing D(Mark)" >=20 > v5: > - Fix some warnings reported by checkpatch.pl > - Squash 3 patches into 1 to avoid compile error on unsued functions. > - Sync with master branch >=20 > v4: > - Clear HW/SW ring content after allocating mbuf failed. >=20 > v3: > - Add a blank line after variable definition. > - Do floor alignment for passing in argument nb_pkts to avoid memory > overwritten. > - Only scan max of 32 desc in scatter Rx function to avoid memory overwr= itten. >=20 > v2: > - Fix a typo issue. > - Fix an improper prefetch in vector RX function, in which prefetches > un-initialized mbuf. > - Remove limitation on number of desc pointer in vector RX function. > - Re-organize some comments. > - Add a new patch to fix a crash issue in vector RX func. > - Add a new patch to update release notes. >=20 > v1: > This patch set includes Vector Rx/Tx functions to receive/transmit packet= s > for fm10k devices. It also contains logic to do sanity check for proper > RX/TX function selections. >=20 > Chen Jing D(Mark) (14): > fm10k: add new vPMD file > fm10k: add vPMD pre-condition check for each RX queue > fm10k: Add a new func to initialize all parameters > fm10k: add Vector RX function > fm10k: add func to do Vector RX condition check > fm10k: add Vector RX scatter function > fm10k: add function to decide best RX function > fm10k: add func to release mbuf in case Vector RX applied > fm10k: add Vector TX function > fm10k: use func pointer to reset TX queue and mbuf release > fm10k: introduce 2 funcs to reset TX queue and mbuf release > fm10k: Add function to decide best TX func > fm10k: fix a crash issue in vector RX func > doc: release notes update for fm10k Vector PMD >=20 > doc/guides/rel_notes/release_2_2.rst | 6 + > drivers/net/fm10k/Makefile | 1 + > drivers/net/fm10k/fm10k.h | 45 ++- > drivers/net/fm10k/fm10k_ethdev.c | 172 ++++++- > drivers/net/fm10k/fm10k_rxtx_vec.c | 847 > ++++++++++++++++++++++++++++++++++ > 5 files changed, 1043 insertions(+), 28 deletions(-) > create mode 100644 drivers/net/fm10k/fm10k_rxtx_vec.c >=20 > -- > 1.7.7.6 Acked-by: Cunming Liang