From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id A0F04690F for ; Thu, 19 May 2016 09:41:55 +0200 (CEST) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga102.fm.intel.com with ESMTP; 19 May 2016 00:41:54 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.26,333,1459839600"; d="xls'32?scan'32,208,32";a="705566453" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by FMSMGA003.fm.intel.com with ESMTP; 19 May 2016 00:41:49 -0700 Received: from fmsmsx151.amr.corp.intel.com (10.18.125.4) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.248.2; Thu, 19 May 2016 00:41:49 -0700 Received: from shsmsx102.ccr.corp.intel.com (10.239.4.154) by FMSMSX151.amr.corp.intel.com (10.18.125.4) with Microsoft SMTP Server (TLS) id 14.3.248.2; Thu, 19 May 2016 00:41:48 -0700 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.148]) by shsmsx102.ccr.corp.intel.com ([169.254.2.104]) with mapi id 14.03.0248.002; Thu, 19 May 2016 15:41:46 +0800 From: "Gu, YongjieX" To: "Xing, Beilei" , "Zhang, Helin" CC: "dev@dpdk.org" , "Xing, Beilei" Thread-Topic: [dpdk-dev] [PATCH 01/29] ixgbe/base: add new VF requests for mailbox API Thread-Index: AQHRp12wcDz1M+ZOL02VV2vKjb0jBZ+/711A Date: Thu, 19 May 2016 07:41:45 +0000 Message-ID: References: <1462514861-29419-1-git-send-email-beilei.xing@intel.com> <1462514861-29419-2-git-send-email-beilei.xing@intel.com> In-Reply-To: <1462514861-29419-2-git-send-email-beilei.xing@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: yes X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-dev] [PATCH 01/29] ixgbe/base: add new VF requests for mailbox API 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, 19 May 2016 07:41:56 -0000 Tested-by: Yongjie Gu - Check patch: success - Apply patch: success - compilation: success OS: fedora20 GCC: gcc_x86-64, 4.8.3 ICC: 16.0.2 Commit: 84c9b5a9fe926f1aa033dc5352be8d4a5e0b789d i686-native-linuxapp-icc: compile pass x86_64-native-linuxapp-gcc-combined: compile pass i686-native-linuxapp-gcc: compile pass x86_64-native-linuxapp-gcc: compile pass x86_64-native-linuxapp-icc: compile pass x86_64-native-linuxapp-gcc-debug: compile pass x86_64-native-linuxapp-gcc-shared: compile pass x86_64-native-linuxapp-clang: compile pass - dts validation:=20 -- Test Commit: db340cf2ef71af231af67be8e42fd603e4bab0ac -- OS/Kernel: Ubuntu 15.04/3.19.0-15-generic -- GCC: gcc version 4.9.2 (Ubuntu 4.9.2-10ubuntu13) -- CPU: Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz -- NIC: Intel Corporation 82599ES 10-Gigabit SFI/SFP+ Network Connection [= 8086:10fb] -- total 96,failed 13(Detailed case list see in the attachment) Thanks Yongjie -----Original Message----- From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Beilei Xing Sent: Friday, May 06, 2016 2:07 PM To: Zhang, Helin Cc: dev@dpdk.org; Xing, Beilei Subject: [dpdk-dev] [PATCH 01/29] ixgbe/base: add new VF requests for mailb= ox API It adds two new VF requests of IXGBE_VF_GET_RETA and IXGBE_VF_GET_RSS_KEY f= or mailbox API. Signed-off-by: Beilei Xing --- drivers/net/ixgbe/base/ixgbe_mbx.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/net/ixgbe/base/ixgbe_mbx.h b/drivers/net/ixgbe/base/ix= gbe_mbx.h index 4a120a3..d775142 100644 --- a/drivers/net/ixgbe/base/ixgbe_mbx.h +++ b/drivers/net/ixgbe/base/ixgbe_mbx.h @@ -109,7 +109,9 @@ enum ixgbe_pfvf_api_rev { #define IXGBE_VF_GET_QUEUES 0x09 /* get queue configuration */ =20 /* mailbox API, version 1.2 VF requests */ -#define IXGBE_VF_UPDATE_XCAST_MODE 0x0C +#define IXGBE_VF_GET_RETA 0x0a /* VF request for RETA */ +#define IXGBE_VF_GET_RSS_KEY 0x0b /* get RSS key */ +#define IXGBE_VF_UPDATE_XCAST_MODE 0x0C =20 /* GET_QUEUES return data indices within the mailbox */ #define IXGBE_VF_TX_QUEUES 1 /* number of Tx queues supported */ -- 2.5.0