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

2021-10-27 Thread Maxime Coquelin
Hi Yuri, On 10/27/21 16:45, Yuri Benditovich wrote: On Wed, Oct 27, 2021 at 1:55 PM Maxime Coquelin mailto:maxime.coque...@redhat.com>> wrote: Hi, On 10/19/21 11:37, Andrew Rybchenko wrote: > Hi Maxime, > > On 10/19/21 12:22 PM, Maxime Coquelin wrote: >> Hi Andr

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

2021-10-27 Thread Yuri Benditovich
On Wed, Oct 27, 2021 at 1:55 PM Maxime Coquelin wrote: > Hi, > > On 10/19/21 11:37, Andrew Rybchenko wrote: > > Hi Maxime, > > > > On 10/19/21 12:22 PM, Maxime Coquelin wrote: > >> Hi Andrew, > >> > >> On 10/19/21 09:30, Andrew Rybchenko wrote: > >>> On 10/18/21 1:20 PM, Maxime Coquelin wrote: >

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

2021-10-27 Thread Maxime Coquelin
Hi, On 10/19/21 11:37, Andrew Rybchenko wrote: Hi Maxime, On 10/19/21 12:22 PM, Maxime Coquelin wrote: Hi Andrew, On 10/19/21 09:30, Andrew Rybchenko wrote: On 10/18/21 1:20 PM, Maxime Coquelin wrote: Provide the capability to update the hash key, hash types and RETA table on the fly (witho

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

2021-10-19 Thread Andrew Rybchenko
Hi Maxime, On 10/19/21 12:22 PM, Maxime Coquelin wrote: > Hi Andrew, > > On 10/19/21 09:30, Andrew Rybchenko wrote: >> On 10/18/21 1:20 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 dev

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

2021-10-19 Thread Maxime Coquelin
Hi Andrew, On 10/19/21 09:30, Andrew Rybchenko wrote: On 10/18/21 1:20 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 4

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

2021-10-19 Thread Maxime Coquelin
On 10/19/21 06:47, Xia, Chenbo wrote: -Original Message- From: Maxime Coquelin Sent: Monday, October 18, 2021 6:21 PM To: dev@dpdk.org; Xia, Chenbo ; amore...@redhat.com; david.march...@redhat.com; andrew.rybche...@oktetlabs.ru; Yigit, Ferruh ; michae...@nvidia.com; viachesl...@nvidia

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

2021-10-19 Thread Andrew Rybchenko
On 10/18/21 1:20 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

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

2021-10-18 Thread Xia, Chenbo
> -Original Message- > From: Maxime Coquelin > Sent: Monday, October 18, 2021 6:21 PM > To: dev@dpdk.org; Xia, Chenbo ; amore...@redhat.com; > david.march...@redhat.com; andrew.rybche...@oktetlabs.ru; Yigit, Ferruh > ; michae...@nvidia.com; viachesl...@nvidia.com; Li, > Xiaoyun > Cc: neli

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

2021-10-18 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