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 B6DCC8052 for ; Mon, 15 Dec 2014 11:55:30 +0100 (CET) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga101.jf.intel.com with ESMTP; 15 Dec 2014 02:55:23 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.07,579,1413270000"; d="scan'208";a="654051437" Received: from bricha3-mobl3.ger.corp.intel.com ([10.243.20.31]) by orsmga002.jf.intel.com with SMTP; 15 Dec 2014 02:55:21 -0800 Received: by (sSMTP sendmail emulation); Mon, 15 Dec 2014 10:55:20 +0025 Date: Mon, 15 Dec 2014 10:55:20 +0000 From: Bruce Richardson To: Ouyang Changchun Message-ID: <20141215105518.GC11332@bricha3-MOBL3> References: <1418612225-6095-1-git-send-email-changchun.ouyang@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1418612225-6095-1-git-send-email-changchun.ouyang@intel.com> Organization: Intel Shannon Ltd. User-Agent: Mutt/1.5.23 (2014-03-12) Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH 0/6] Enable VF RSS for Niantic 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: Mon, 15 Dec 2014 10:55:31 -0000 On Mon, Dec 15, 2014 at 10:56:59AM +0800, Ouyang Changchun wrote: > This patch enables VF RSS for Niantic, which allow each VF having at most 4 queues. > The actual queue number per VF depends on the number of VF: > VF number from 1~32: 4 queues per VF; > VF number from 33~max vf num: 2 queues per VF; > > On host, to enable VF RSS functionality, mq mode should be set as ETH_MQ_RX_VMDQ_RSS > or ETH_MQ_RX_RSS mode, and SRIOV mode should be activated. > It also needs config VF RSS information like hash function, RSS key, RSS key length. > Hi Changchun, are there limitations to this support, as I understood that that RSS support for VFs was not fully available in Niantic-based hardware? /Bruce > Changchun Ouyang (6): > ixgbe: Code cleanup > ixgbe: Negotiate VF API version > ixgbe: Get VF queue number > ether: Check VMDq RSS mode > ixgbe: Config VF RSS > testpmd: Set Rx VMDq RSS mode > > app/test-pmd/testpmd.c | 9 ++++ > lib/librte_ether/rte_ethdev.c | 21 ++++++-- > lib/librte_pmd_ixgbe/ixgbe_ethdev.h | 1 + > lib/librte_pmd_ixgbe/ixgbe_pf.c | 75 ++++++++++++++++++++++++++++- > lib/librte_pmd_ixgbe/ixgbe_rxtx.c | 95 +++++++++++++++++++++++++++---------- > 5 files changed, 171 insertions(+), 30 deletions(-) > > -- > 1.8.4.2 >