Skip to content
This repository was archived by the owner on Dec 20, 2023. It is now read-only.

Commit b9befa4

Browse files
jasowangsashalevin
authored andcommitted
virtio-net: correctly delete napi hash
[ Upstream commit ab3971b ] We don't delete napi from hash list during module exit. This will cause the following panic when doing module load and unload: BUG: unable to handle kernel paging request at 0000004e00000075 IP: [<ffffffff816bd01b>] napi_hash_add+0x6b/0xf0 PGD 3c5d5067 PUD 0 Oops: 0000 [#1] SMP ... Call Trace: [<ffffffffa0a5bfb7>] init_vqs+0x107/0x490 [virtio_net] [<ffffffffa0a5c9f2>] virtnet_probe+0x562/0x791815639d880be [virtio_net] [<ffffffff8139e667>] virtio_dev_probe+0x137/0x200 [<ffffffff814c7f2a>] driver_probe_device+0x7a/0x250 [<ffffffff814c81d3>] __driver_attach+0x93/0xa0 [<ffffffff814c8140>] ? __device_attach+0x40/0x40 [<ffffffff814c6053>] bus_for_each_dev+0x63/0xa0 [<ffffffff814c7a79>] driver_attach+0x19/0x20 [<ffffffff814c76f0>] bus_add_driver+0x170/0x220 [<ffffffffa0a60000>] ? 0xffffffffa0a60000 [<ffffffff814c894f>] driver_register+0x5f/0xf0 [<ffffffff8139e41b>] register_virtio_driver+0x1b/0x30 [<ffffffffa0a60010>] virtio_net_driver_init+0x10/0x12 [virtio_net] This patch fixes this by doing this in virtnet_free_queues(). And also don't delete napi in virtnet_freeze() since it will call virtnet_free_queues() which has already did this. Fixes 9181563 ("virtio-net: rx busy polling support") Cc: Rusty Russell <[email protected]> Cc: Michael S. Tsirkin <[email protected]> Signed-off-by: Jason Wang <[email protected]> Acked-by: Michael S. Tsirkin <[email protected]> Reviewed-by: Michael S. Tsirkin <[email protected]> Signed-off-by: David S. Miller <[email protected]> Signed-off-by: Sasha Levin <[email protected]>
1 parent 6ba8661 commit b9befa4

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

drivers/net/virtio_net.c

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1452,8 +1452,10 @@ static void virtnet_free_queues(struct virtnet_info *vi)
14521452
{
14531453
int i;
14541454

1455-
for (i = 0; i < vi->max_queue_pairs; i++)
1455+
for (i = 0; i < vi->max_queue_pairs; i++) {
1456+
napi_hash_del(&vi->rq[i].napi);
14561457
netif_napi_del(&vi->rq[i].napi);
1458+
}
14571459

14581460
kfree(vi->rq);
14591461
kfree(vi->sq);
@@ -1939,11 +1941,8 @@ static int virtnet_freeze(struct virtio_device *vdev)
19391941
cancel_delayed_work_sync(&vi->refill);
19401942

19411943
if (netif_running(vi->dev)) {
1942-
for (i = 0; i < vi->max_queue_pairs; i++) {
1944+
for (i = 0; i < vi->max_queue_pairs; i++)
19431945
napi_disable(&vi->rq[i].napi);
1944-
napi_hash_del(&vi->rq[i].napi);
1945-
netif_napi_del(&vi->rq[i].napi);
1946-
}
19471946
}
19481947

19491948
remove_vq_common(vi);

0 commit comments

Comments
 (0)