Re: [dpdk-dev] [PATCH v1] app/testpmd: fix default RSS hash not accurate

2020-12-15 Thread Li, Xiaoyun
2020 14:13 > To: dev@dpdk.org > Cc: Lu, Wenzhuo ; Xing, Beilei ; > Iremonger, Bernard ; Yigit, Ferruh > ; Zhang, Qi Z ; Yang, SteveX > > Subject: [dpdk-dev] [PATCH v1] app/testpmd: fix default RSS hash not accurate > > When testpmd launched, the default RSS hash function w

[dpdk-dev] [PATCH v1] app/testpmd: fix default RSS hash not accurate

2020-12-14 Thread Steve Yang
When testpmd launched, the default RSS hash function will only activate 'ETH_RSS_IP', it isn't consistent with the command result of 'port config all rss default'. Removed the default 'rss_hf' limited in 'init_port_config', that will use the default supported RSS hash function for NIC. Fixes: 908