mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 10:58:48 +09:00
virtio_net: suppress cpu stall when free_unused_bufs
[ Upstream commitf8bb510439] For multi-queue and large ring-size use case, the following error occurred when free_unused_bufs: rcu: INFO: rcu_sched self-detected stall on CPU. Fixes:986a4f4d45("virtio_net: multiqueue support") Signed-off-by: Wenliang Wang <wangwenliang.1995@bytedance.com> Acked-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b4e16ea5f1
commit
a0cb00295d
@@ -2844,12 +2844,14 @@ static void free_unused_bufs(struct virtnet_info *vi)
|
|||||||
struct virtqueue *vq = vi->sq[i].vq;
|
struct virtqueue *vq = vi->sq[i].vq;
|
||||||
while ((buf = virtqueue_detach_unused_buf(vq)) != NULL)
|
while ((buf = virtqueue_detach_unused_buf(vq)) != NULL)
|
||||||
virtnet_sq_free_unused_buf(vq, buf);
|
virtnet_sq_free_unused_buf(vq, buf);
|
||||||
|
cond_resched();
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = 0; i < vi->max_queue_pairs; i++) {
|
for (i = 0; i < vi->max_queue_pairs; i++) {
|
||||||
struct virtqueue *vq = vi->rq[i].vq;
|
struct virtqueue *vq = vi->rq[i].vq;
|
||||||
while ((buf = virtqueue_detach_unused_buf(vq)) != NULL)
|
while ((buf = virtqueue_detach_unused_buf(vq)) != NULL)
|
||||||
virtnet_rq_free_unused_buf(vq, buf);
|
virtnet_rq_free_unused_buf(vq, buf);
|
||||||
|
cond_resched();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user