Re: [dpdk-dev] [PATCH v6 1/5] net/virtio: add initial RSS support

2021-10-29 Thread Maxime Coquelin
On 10/29/21 19:40, Ferruh Yigit wrote: On 10/27/2021 3:22 PM, Maxime Coquelin wrote: Provide the capability to update the hash key, hash types and RETA table on the fly (without needing to stop/start the device). However, the key length and the number of RETA entries are fixed to 40B and 128

Re: [dpdk-dev] [PATCH v6 1/5] net/virtio: add initial RSS support

2021-10-29 Thread Ferruh Yigit
On 10/27/2021 3:22 PM, Maxime Coquelin wrote: Provide the capability to update the hash key, hash types and RETA table on the fly (without needing to stop/start the device). However, the key length and the number of RETA entries are fixed to 40B and 128 entries respectively. This is done in order

Re: [dpdk-dev] [PATCH v6 1/5] net/virtio: add initial RSS support

2021-10-27 Thread Andrew Rybchenko
On 10/27/21 5:22 PM, Maxime Coquelin wrote: Provide the capability to update the hash key, hash types and RETA table on the fly (without needing to stop/start the device). However, the key length and the number of RETA entries are fixed to 40B and 128 entries respectively. This is done in order t

[dpdk-dev] [PATCH v6 1/5] net/virtio: add initial RSS support

2021-10-27 Thread Maxime Coquelin
Provide the capability to update the hash key, hash types and RETA table on the fly (without needing to stop/start the device). However, the key length and the number of RETA entries are fixed to 40B and 128 entries respectively. This is done in order to simplify the design, but may be revisited la