From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 6DEC76A95 for ; Fri, 12 Jun 2015 11:31:15 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga102.jf.intel.com with ESMTP; 12 Jun 2015 02:31:15 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.13,601,1427785200"; d="scan'208";a="745465694" Received: from irsmsx103.ger.corp.intel.com ([163.33.3.157]) by orsmga002.jf.intel.com with ESMTP; 12 Jun 2015 02:31:14 -0700 Received: from irsmsx105.ger.corp.intel.com ([169.254.7.73]) by IRSMSX103.ger.corp.intel.com ([169.254.3.215]) with mapi id 14.03.0224.002; Fri, 12 Jun 2015 10:31:13 +0100 From: "Ananyev, Konstantin" To: "Zhang, Helin" , "dev@dpdk.org" Thread-Topic: [PATCH v3 0/6] query hash key size in byte Thread-Index: AQHQpOI5nJhbgdTnBE6RcMdnrszOaJ2omvhw Date: Fri, 12 Jun 2015 09:31:12 +0000 Message-ID: <2601191342CEEE43887BDE71AB97725836A08EFD@irsmsx105.ger.corp.intel.com> References: <1433403216-7114-1-git-send-email-helin.zhang@intel.com> <1434094441-23906-1-git-send-email-helin.zhang@intel.com> In-Reply-To: <1434094441-23906-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.180] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v3 0/6] query hash key size in byte 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, 12 Jun 2015 09:31:15 -0000 > -----Original Message----- > From: Zhang, Helin > Sent: Friday, June 12, 2015 8:34 AM > To: dev@dpdk.org > Cc: Cao, Min; Xu, Qian Q; Cao, Waterman; Ananyev, Konstantin; Zhang, Heli= n > Subject: [PATCH v3 0/6] query hash key size in byte >=20 > As different hardware has different hash key sizes, querying it (in byte) > per port was asked by users. Otherwise there is no convenient way to know > the size of hash key which should be prepared. >=20 > v2 changes: > * Disabled the code changes by default, to avoid breaking ABI compatibili= ty. >=20 > v3 changes: > * Moved the newly added element right after 'uint16_t reta_size', where i= t > was a padding. So it will not break any ABI compatibility, and no need = to > disable the code changes by default. >=20 > Helin Zhang (6): > ethdev: add an field for querying hash key size > e1000: fill the hash key size > fm10k: fill the hash key size > i40e: fill the hash key size > ixgbe: fill the hash key size > app/testpmd: show the hash key size >=20 > app/test-pmd/config.c | 2 ++ > drivers/net/e1000/igb_ethdev.c | 3 +++ > drivers/net/fm10k/fm10k_ethdev.c | 1 + > drivers/net/i40e/i40e_ethdev.c | 2 ++ > drivers/net/i40e/i40e_ethdev_vf.c | 2 ++ > drivers/net/ixgbe/ixgbe_ethdev.c | 3 +++ > lib/librte_ether/rte_ethdev.h | 1 + > 7 files changed, 14 insertions(+) >=20 Acked-by: Konstantin Ananyev > -- > 1.9.3