Re: [PATCH] virtio-net: Add queues before loading them

2024-11-13 Thread Laurent Vivier
On 25/10/2024 10:44, Jason Wang wrote: On Wed, Oct 23, 2024 at 4:02 PM Michael S. Tsirkin wrote: On Tue, Oct 22, 2024 at 03:49:01PM +0900, Akihiko Odaki wrote: Call virtio_net_set_multiqueue() to add queues before loading their states. Otherwise the loaded queues will not have handlers and el

Re: [PATCH] virtio-net: Add queues before loading them

2024-10-25 Thread Jason Wang
On Wed, Oct 23, 2024 at 4:02 PM Michael S. Tsirkin wrote: > > On Tue, Oct 22, 2024 at 03:49:01PM +0900, Akihiko Odaki wrote: > > Call virtio_net_set_multiqueue() to add queues before loading their > > states. Otherwise the loaded queues will not have handlers and elements > > in them will not be p

Re: [PATCH] virtio-net: Add queues before loading them

2024-10-23 Thread Michael S. Tsirkin
On Tue, Oct 22, 2024 at 03:49:01PM +0900, Akihiko Odaki wrote: > Call virtio_net_set_multiqueue() to add queues before loading their > states. Otherwise the loaded queues will not have handlers and elements > in them will not be processed. > > Cc: qemu-sta...@nongnu.org > Fixes: 8c49756825da ("vir

[PATCH] virtio-net: Add queues before loading them

2024-10-21 Thread Akihiko Odaki
Call virtio_net_set_multiqueue() to add queues before loading their states. Otherwise the loaded queues will not have handlers and elements in them will not be processed. Cc: qemu-sta...@nongnu.org Fixes: 8c49756825da ("virtio-net: Add only one queue pair when realizing") Reported-by: Laurent Vivi