From patchwork Tue Feb 28 06:26:28 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jingjing Wu X-Patchwork-Id: 20933 X-Patchwork-Delegate: ferruh.yigit@amd.com Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 9CB93532C; Tue, 28 Feb 2017 07:29:36 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id AFC952C56; Tue, 28 Feb 2017 07:29:09 +0100 (CET) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 Feb 2017 22:29:09 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos; i="5.35,217,1484035200"; d="scan'208"; a="1116446874" Received: from dpdk2.sh.intel.com ([10.239.128.246]) by fmsmga001.fm.intel.com with ESMTP; 27 Feb 2017 22:29:04 -0800 From: Jingjing Wu To: dev@dpdk.org Cc: jingjing.wu@intel.com, helin.zhang@intel.com, wenzhuo.lu@intel.com, stable@dpdk.org Date: Tue, 28 Feb 2017 14:26:28 +0800 Message-Id: <1488263190-26621-2-git-send-email-jingjing.wu@intel.com> X-Mailer: git-send-email 2.4.11 In-Reply-To: <1488263190-26621-1-git-send-email-jingjing.wu@intel.com> References: <1488263190-26621-1-git-send-email-jingjing.wu@intel.com> Subject: [dpdk-dev] [PATCH 2/4] app/testpmd: fix init config for multi-queue mode X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" In SRIOV mode, the mq_mode of rte_eth_rxmode should not carry VMDQ info without rx_adv_conf setting. Fixes: a30979f6ad7f ("app/testpmd: set Rx VMDq RSS mode") Cc: stable@dpdk.org Signed-off-by: Jingjing Wu --- app/test-pmd/testpmd.c | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/app/test-pmd/testpmd.c b/app/test-pmd/testpmd.c index bfb2f8e..f695807 100644 --- a/app/test-pmd/testpmd.c +++ b/app/test-pmd/testpmd.c @@ -1835,24 +1835,13 @@ init_port_config(void) port->dev_conf.rx_adv_conf.rss_conf.rss_hf = 0; } - if (port->dcb_flag == 0 && port->dev_info.max_vfs == 0) { + if (port->dcb_flag == 0) { if( port->dev_conf.rx_adv_conf.rss_conf.rss_hf != 0) port->dev_conf.rxmode.mq_mode = ETH_MQ_RX_RSS; else port->dev_conf.rxmode.mq_mode = ETH_MQ_RX_NONE; } - if (port->dev_info.max_vfs != 0) { - if (port->dev_conf.rx_adv_conf.rss_conf.rss_hf != 0) - port->dev_conf.rxmode.mq_mode = - ETH_MQ_RX_VMDQ_RSS; - else - port->dev_conf.rxmode.mq_mode = - ETH_MQ_RX_NONE; - - port->dev_conf.txmode.mq_mode = ETH_MQ_TX_NONE; - } - rxtx_port_config(port); rte_eth_macaddr_get(pid, &port->eth_addr);