Re: [dpdk-dev] [PATCH v2 04/29] net/ena/base: set default hash key

2020-04-03 Thread Michał Krawczyk
czw., 2 kwi 2020 o 14:36 Ferruh Yigit napisał(a): > > On 4/1/2020 3:21 PM, Michal Krawczyk wrote: > > The RSS hash key was present in the device, but it wasn't exposed to > > the user. The other key still cannot be set, but now it can be accessed > > if one needs to do that. > > What is 'the other

Re: [dpdk-dev] [PATCH v2 04/29] net/ena/base: set default hash key

2020-04-02 Thread Ferruh Yigit
On 4/1/2020 3:21 PM, Michal Krawczyk wrote: > The RSS hash key was present in the device, but it wasn't exposed to > the user. The other key still cannot be set, but now it can be accessed > if one needs to do that. What is 'the other key'? > > By default, the random hash key is used and it is g

[dpdk-dev] [PATCH v2 04/29] net/ena/base: set default hash key

2020-04-01 Thread Michal Krawczyk
The RSS hash key was present in the device, but it wasn't exposed to the user. The other key still cannot be set, but now it can be accessed if one needs to do that. By default, the random hash key is used and it is generated only once when requested for the first time. Signed-off-by: Michal Kraw