Re: [PATCH v2] net/bonding: fix RSS not work for bonding

2022-01-26 Thread Ferruh Yigit
On 1/18/2022 9:27 AM, Min Hu (Connor) wrote: 在 2022/1/18 17:18, Yu Wenjun 写道: RSS don't work when bond_ethdev_configure called before rte_eth_bond_slave_add. e.g.: dont't work(examples/bond/main.c): rte_eth_bond_create() rte_eth_dev_configure() rte_eth_bond_slave_add() rte_eth_dev_start() wor

[PATCH v2] net/bonding: fix RSS not work for bonding

2022-01-19 Thread Yu Wenjun
RSS don't work when bond_ethdev_configure called before rte_eth_bond_slave_add. e.g.: dont't work(examples/bond/main.c): rte_eth_bond_create() rte_eth_dev_configure() rte_eth_bond_slave_add() rte_eth_dev_start() work(testpmd): rte_eth_bond_create() rte_eth_bond_slave_add() rte_eth_dev_configure()