Re: [PATCH net] net/vmxnet3: fix mapping of mempools to queues

2025-07-18 Thread Ronak Doshi
On Wed, Jul 9, 2025 at 2:47 PM Ronak Doshi wrote: > > Index bitmask variable used was uint8_t, too small for bitmask with > 9 or more queues. This patch changes it to uint16_t for now, to be > same as in the Vmxnet3_MemoryRegion structure. This way txQueues > can be lesser than rxQueues and have c

[PATCH net] net/vmxnet3: fix mapping of mempools to queues

2025-07-09 Thread Ronak Doshi
Index bitmask variable used was uint8_t, too small for bitmask with 9 or more queues. This patch changes it to uint16_t for now, to be same as in the Vmxnet3_MemoryRegion structure. This way txQueues can be lesser than rxQueues and have correct mapping of memory regions. Also, the patch fixes memo