Re: [PATCH] net/gve: fix RSS hash endianness in DQO format

2024-07-07 Thread Ferruh Yigit
On 7/3/2024 2:31 PM, Shreesh Adiga wrote: > The hash field in struct gve_rx_compl_desc_dqo defined in > gve_desc_dqo.h has the type __le32. Therefore the hash must be > read in little endian rather than big endian. > > Bugzilla ID: 1441 > > Signed-off-by: Shreesh Adiga <16567adigashre...@gmail.co

Re: [PATCH] net/gve: fix RSS hash endianness in DQO format

2024-07-07 Thread Ferruh Yigit
On 7/7/2024 3:53 AM, Shreesh Adiga wrote: > Thank you Joshua for your review and suggestions.  > Appreciate the help with dpdk process. > I've sent a new patch with "Fixes" tag to sta...@dpdk.org > .  > I'm not sure if same needs to be sent here to dev@dpdk.org >

Re: [PATCH] net/gve: fix RSS hash endianness in DQO format

2024-07-06 Thread Shreesh Adiga
Thank you Joshua for your review and suggestions. Appreciate the help with dpdk process. I've sent a new patch with "Fixes" tag to sta...@dpdk.org. I'm not sure if same needs to be sent here to dev@dpdk.org as well. Please let me know if I've missed anything. Thanks, Shreesh

Re: [PATCH] net/gve: fix RSS hash endianness in DQO format

2024-07-06 Thread Joshua Washington
Thank you for your contribution, Shreesh! Let's get this applied as a stable fix so that it can be applied to 23.11 as well. https://doc.dpdk.org/guides/contributing/patches.html, section "Patch for Stable Releases" should have more detail for how this can be done. > Bugzilla ID: 1441 Please add a

[PATCH] net/gve: fix RSS hash endianness in DQO format

2024-07-03 Thread Shreesh Adiga
The hash field in struct gve_rx_compl_desc_dqo defined in gve_desc_dqo.h has the type __le32. Therefore the hash must be read in little endian rather than big endian. Bugzilla ID: 1441 Signed-off-by: Shreesh Adiga <16567adigashre...@gmail.com> --- drivers/net/gve/gve_rx_dqo.c | 2 +- 1 file chan