Re: [dpdk-dev] [PATCH v1] net/ice: fix wrong RSS hash update

2021-03-02 Thread Wu, Wenjun1
Hi Qiming, There are two consequences if skipping the state rss_conf->rss_hf == 0. 1. The function " port config all rss none" means to disable RSS. When rss_conf->rss_hf == 0, the function will not take affect, which does not conform to the description in dpdk doc: The none option is

Re: [dpdk-dev] [PATCH v1] net/ice: fix wrong RSS hash update

2021-03-02 Thread Yang, Qiming
> -Original Message- > From: Wu, Wenjun1 > Sent: Tuesday, March 2, 2021 13:31 > To: dev@dpdk.org; Yang, Qiming ; Zhang, Qi Z > > Cc: Wu, Wenjun1 ; sta...@dpdk.org > Subject: [PATCH v1] net/ice: fix wrong RSS hash update > > This patch removes redundant judgment statements to disable R

[dpdk-dev] [PATCH v1] net/ice: fix wrong RSS hash update

2021-03-01 Thread Wenjun Wu
This patch removes redundant judgment statements to disable RSS when RSS hash function configured is not supported. Fixes: 4717a12cfaf1 ("net/ice: initialize and update RSS based on user config") Cc: sta...@dpdk.org Signed-off-by: Wenjun Wu --- drivers/net/ice/ice_ethdev.c | 3 --- 1 file chang