Re: [PATCH net 1/3] virtio-net: make refill work a per receive queue work
From: Jason Wang <jasowang@redhat.com>
Date: 2025-12-24 00:52:53
Also in:
bpf, lkml, virtualization
From: Jason Wang <jasowang@redhat.com>
Date: 2025-12-24 00:52:53
Also in:
bpf, lkml, virtualization
On Tue, Dec 23, 2025 at 11:27 PM Bui Quang Minh [off-list ref] wrote:
Currently, the refill work is a global delayed work for all the receive queues. This commit makes the refill work a per receive queue so that we can manage them separately and avoid further mistakes. It also helps the successfully refilled queue avoid the napi_disable in the global delayed refill work like before. Signed-off-by: Bui Quang Minh <redacted> ---
I may miss something but I think this patch is sufficient to fix the problem? Thanks