[PATCH net-next 1/4] virtio_net: Split struct virtio_net_rss_config

2025-03-18 Thread Akihiko Odaki
struct virtio_net_rss_config was less useful in actual code because of a flexible array placed in the middle. Add new structures that split it into two to avoid having a flexible array in the middle. Suggested-by: Jason Wang Signed-off-by: Akihiko Odaki --- include/uapi/linux/virtio_net.h | 13

Re: [PATCH net-next 1/4] virtio_net: Split struct virtio_net_rss_config

2025-03-18 Thread Jason Wang
On Tue, Mar 18, 2025 at 5:57 PM Akihiko Odaki wrote: > > struct virtio_net_rss_config was less useful in actual code because of a > flexible array placed in the middle. Add new structures that split it > into two to avoid having a flexible array in the middle. > > Suggested-by: Jason Wang > Signe