Re: [dpdk-dev] [PATCH v3] app/testpmd: fix testpmd failure due to RSS offload check

2018-04-25 Thread Ferruh Yigit
On 4/25/2018 5:27 PM, Adrien Mazarguil wrote: > On Wed, Apr 25, 2018 at 09:38:16PM +0800, Qi Zhang wrote: >> After add RSS hash offload check, default rss_hf will fail on >> devices that not support all bits, the patch take rss_hf as >> a suggest value and only set bits that device supported base

Re: [dpdk-dev] [PATCH v3] app/testpmd: fix testpmd failure due to RSS offload check

2018-04-25 Thread Ferruh Yigit
On 4/25/2018 5:27 PM, Adrien Mazarguil wrote: > On Wed, Apr 25, 2018 at 09:38:16PM +0800, Qi Zhang wrote: >> After add RSS hash offload check, default rss_hf will fail on >> devices that not support all bits, the patch take rss_hf as >> a suggest value and only set bits that device supported base

Re: [dpdk-dev] [PATCH v3] app/testpmd: fix testpmd failure due to RSS offload check

2018-04-25 Thread Adrien Mazarguil
On Wed, Apr 25, 2018 at 09:38:16PM +0800, Qi Zhang wrote: > After add RSS hash offload check, default rss_hf will fail on > devices that not support all bits, the patch take rss_hf as > a suggest value and only set bits that device supported base on > rte_eth_dev_get_info, also rss_hf will only be

Re: [dpdk-dev] [PATCH v3] app/testpmd: fix testpmd failure due to RSS offload check

2018-04-25 Thread Ferruh Yigit
On 4/25/2018 2:38 PM, Qi Zhang wrote: > After add RSS hash offload check, default rss_hf will fail on > devices that not support all bits, the patch take rss_hf as > a suggest value and only set bits that device supported base on > rte_eth_dev_get_info, also rss_hf will only be updated when new >

[dpdk-dev] [PATCH v3] app/testpmd: fix testpmd failure due to RSS offload check

2018-04-25 Thread Qi Zhang
After add RSS hash offload check, default rss_hf will fail on devices that not support all bits, the patch take rss_hf as a suggest value and only set bits that device supported base on rte_eth_dev_get_info, also rss_hf will only be updated when new rss offload is successfully updated on all ports