Re: [PATCH v2] virtio-net: Add queues for RSS during migration

2025-06-03 Thread Lei Yang
Tested this series of patches with virtio-net regression tests, everything works fine. Tested-by: Lei Yang On Tue, Jun 3, 2025 at 11:01 AM Jason Wang wrote: > > On Fri, May 30, 2025 at 1:19 PM Akihiko Odaki > wrote: > > > > virtio_net_pre_load_queues() inspects vdev->guest_features to tell if

Re: [PATCH v2] virtio-net: Add queues for RSS during migration

2025-06-02 Thread Jason Wang
On Fri, May 30, 2025 at 1:19 PM Akihiko Odaki wrote: > > virtio_net_pre_load_queues() inspects vdev->guest_features to tell if > VIRTIO_NET_F_RSS or VIRTIO_NET_F_MQ is enabled to infer the required > number of queues. This works for VIRTIO_NET_F_MQ but it doesn't for > VIRTIO_NET_F_RSS because onl

[PATCH v2] virtio-net: Add queues for RSS during migration

2025-05-29 Thread Akihiko Odaki
virtio_net_pre_load_queues() inspects vdev->guest_features to tell if VIRTIO_NET_F_RSS or VIRTIO_NET_F_MQ is enabled to infer the required number of queues. This works for VIRTIO_NET_F_MQ but it doesn't for VIRTIO_NET_F_RSS because only the lowest 32 bits of vdev->guest_features is set at the point