From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3C0E9A2E1B for ; Thu, 5 Sep 2019 12:31:31 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2E0453772; Thu, 5 Sep 2019 12:31:31 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 02ADD1ED97; Thu, 5 Sep 2019 12:31:29 +0200 (CEST) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 05 Sep 2019 03:31:28 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,470,1559545200"; d="scan'208";a="195052330" Received: from yexl-server.sh.intel.com (HELO localhost) ([10.67.117.5]) by orsmga002.jf.intel.com with ESMTP; 05 Sep 2019 03:31:27 -0700 Date: Thu, 5 Sep 2019 18:29:29 +0800 From: Ye Xiaolong To: Wei Zhao Cc: dev@dpdk.org, stable@dpdk.org, qi.z.zhang@intel.com Message-ID: <20190905102929.GD70700@intel.com> References: <1567586454-49292-1-git-send-email-wei.zhao1@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1567586454-49292-1-git-send-email-wei.zhao1@intel.com> User-Agent: Mutt/1.9.4 (2018-02-28) Subject: Re: [dpdk-stable] [PATCH] net/ixgbe: fix Vf Rss offloads configuration X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" On 09/04, Wei Zhao wrote: >x550 NIC Vf port has the capacity to set Rss >hash, so device info get function should report that. > >Cc: stable@dpdk.org > >Fixes: 2144f6630fca ("ixgbe: add redirection table size in device info") > >Signed-off-by: Wei Zhao >--- > drivers/net/ixgbe/ixgbe_ethdev.c | 1 + > 1 file changed, 1 insertion(+) > >diff --git a/drivers/net/ixgbe/ixgbe_ethdev.c b/drivers/net/ixgbe/ixgbe_ethdev.c >index 03fc1f7..f7ac068 100644 >--- a/drivers/net/ixgbe/ixgbe_ethdev.c >+++ b/drivers/net/ixgbe/ixgbe_ethdev.c >@@ -3928,6 +3928,7 @@ ixgbevf_dev_info_get(struct rte_eth_dev *dev, > dev_info->tx_offload_capa = ixgbe_get_tx_port_offloads(dev); > dev_info->hash_key_size = IXGBE_HKEY_MAX_INDEX * sizeof(uint32_t); > dev_info->reta_size = ixgbe_reta_size_get(hw->mac.type); >+ dev_info->flow_type_rss_offloads = IXGBE_RSS_OFFLOAD_ALL; > > dev_info->default_rxconf = (struct rte_eth_rxconf) { > .rx_thresh = { >-- >2.7.5 > Acked-by: Xiaolong Ye Applied to dpdk-next-net-intel.