From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 3EC557F29 for ; Thu, 6 Nov 2014 16:38:03 +0100 (CET) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP; 06 Nov 2014 07:41:11 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.07,326,1413270000"; d="scan'208";a="618273704" Received: from irsmsx101.ger.corp.intel.com ([163.33.3.153]) by fmsmga001.fm.intel.com with ESMTP; 06 Nov 2014 07:47:29 -0800 Received: from irsmsx105.ger.corp.intel.com ([169.254.7.56]) by IRSMSX101.ger.corp.intel.com ([169.254.1.144]) with mapi id 14.03.0195.001; Thu, 6 Nov 2014 15:46:25 +0000 From: "Ananyev, Konstantin" To: "Zhang, Helin" , "dev@dpdk.org" Thread-Topic: [PATCH v3 0/5] support of configurable CRC stripping in VF Thread-Index: AQHP+cC+cZgYCHjfrkKhUpP+u2nmJZxTvewA Date: Thu, 6 Nov 2014 15:46:24 +0000 Message-ID: <2601191342CEEE43887BDE71AB977258213A2E2C@IRSMSX105.ger.corp.intel.com> References: <1410706109-30448-1-git-send-email-helin.zhang@intel.com> <1415278430-17920-1-git-send-email-helin.zhang@intel.com> In-Reply-To: <1415278430-17920-1-git-send-email-helin.zhang@intel.com> Accept-Language: en-IE, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v3 0/5] support of configurable CRC stripping in VF 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: Thu, 06 Nov 2014 15:38:03 -0000 > From: Zhang, Helin > Sent: Thursday, November 06, 2014 12:54 PM > To: dev@dpdk.org > Cc: Cao, Waterman; Cao, Min; Ananyev, Konstantin; Zhang, Helin > Subject: [PATCH v3 0/5] support of configurable CRC stripping in VF >=20 > To support configurable CRC stripping in both PF host > and VF, a new operation and a new structure are added > to carry more configurations from VF to PF host. >=20 > v2 changes: > * Put all the renaming and code style fixes into a patch. > * Put processing crc stripping configuration in PF host > into a single patch. > * Put setting the crc stripping into a single patch. > * Put the configuring crc stripping in VF into a single patch. > * Added several more code style fixes reported by checkpatch.pl. >=20 > v3 changes: > * Added a macro of calculating memory size for configuring > vsi queues. > * Used array of memory in stack to replace the memory > allocated by rte_zmalloc(). > * Added an input parameter for configuring crc stripping in > RX queue context. > * Put configuring crc stripping of both PF host and VF > into a single patch. > * Defined below new structures for the configuring specifically. > - struct i40e_virtchnl_rxq_ext_info; > - struct i40e_virtchnl_queue_pair_ext_info; > - struct i40e_virtchnl_vsi_queue_config_ext_info; > * Renamed 'I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES_EX' to > 'I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES_EXT'. >=20 > Helin Zhang (5): > config: remove useless i40e items in config files > i40evf: Remove 'host_is_dpdk', and use version number instead > i40e: renaming and code style fix > i40e: support of configurable crc stripping in rx queue > i40e: support of configurable VF crc stripping >=20 > config/common_bsdapp | 1 - > config/common_linuxapp | 1 - > lib/librte_pmd_i40e/i40e_ethdev.h | 3 +- > lib/librte_pmd_i40e/i40e_ethdev_vf.c | 218 +++++++++++++++++++++++------= ------ > lib/librte_pmd_i40e/i40e_pf.c | 134 +++++++++++++++------ > lib/librte_pmd_i40e/i40e_pf.h | 57 +++++++-- > 6 files changed, 297 insertions(+), 117 deletions(-) >=20 > -- > 1.8.1.4 Acked-by: Konstantin Ananyev