From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vlad Zolotarov Subject: Re: [PATCH v5 6/6] testpmd: Set Rx VMDq RSS mode Date: Thu, 08 Jan 2015 11:46:12 +0200 Message-ID: <54AE51E4.5050709@cloudius-systems.com> References: <1420355937-18484-1-git-send-email-changchun.ouyang@intel.com> <1420612355-6666-1-git-send-email-changchun.ouyang@intel.com> <1420612355-6666-7-git-send-email-changchun.ouyang@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit To: Ouyang Changchun , dev-VfR2kkLFssw@public.gmane.org Return-path: In-Reply-To: <1420612355-6666-7-git-send-email-changchun.ouyang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" On 01/07/15 08:32, Ouyang Changchun wrote: > Set VMDq RSS mode if it has VF(VF number is more than 1) and has RSS information. > > Signed-off-by: Changchun Ouyang Reviewed-by: Vlad Zolotarov Some nitpicking below... ;) > > changes in v5 > - Assign txmode.mq_mode with ETH_MQ_TX_NONE explicitly; > - Remove one line wrong comment. > > --- > app/test-pmd/testpmd.c | 15 ++++++++++++++- > 1 file changed, 14 insertions(+), 1 deletion(-) > > diff --git a/app/test-pmd/testpmd.c b/app/test-pmd/testpmd.c > index 8c69756..64fd4ee 100644 > --- a/app/test-pmd/testpmd.c > +++ b/app/test-pmd/testpmd.c > @@ -1700,7 +1700,6 @@ init_port_config(void) > port->dev_conf.rx_adv_conf.rss_conf.rss_hf = 0; > } > > - /* In SR-IOV mode, RSS mode is not available */ > if (port->dcb_flag == 0 && 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_RSS; > @@ -1708,6 +1707,20 @@ init_port_config(void) > 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; > + port->dev_conf.txmode.mq_mode = > + ETH_MQ_TX_NONE; > + } else { > + port->dev_conf.rxmode.mq_mode = > + ETH_MQ_RX_NONE; > + port->dev_conf.txmode.mq_mode = > + ETH_MQ_TX_NONE; It seems that txmode.mq_mode assignment may be taken out of the "if-else" statement here... ;) > + } > + } > + > port->rx_conf.rx_thresh = rx_thresh; > port->rx_conf.rx_free_thresh = rx_free_thresh; > port->rx_conf.rx_drop_en = rx_drop_en;