]> Git Repo - linux.git/commit
vsock/virtio: fix kernel panic after device hot-unplug
authorStefano Garzarella <[email protected]>
Fri, 1 Feb 2019 11:42:06 +0000 (12:42 +0100)
committerDavid S. Miller <[email protected]>
Sun, 3 Feb 2019 19:06:25 +0000 (11:06 -0800)
commit22b5c0b63f32568e130fa2df4ba23efce3eb495b
treebc9447293bc9ae92fcbf10db6dd3352ff3378fdd
parentc14f07c6211cc01d52ed92cce1fade5071b8d197
vsock/virtio: fix kernel panic after device hot-unplug

virtio_vsock_remove() invokes the vsock_core_exit() also if there
are opened sockets for the AF_VSOCK protocol family. In this way
the vsock "transport" pointer is set to NULL, triggering the
kernel panic at the first socket activity.

This patch move the vsock_core_init()/vsock_core_exit() in the
virtio_vsock respectively in module_init and module_exit functions,
that cannot be invoked until there are open sockets.

Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1609699
Reported-by: Yan Fu <[email protected]>
Signed-off-by: Stefano Garzarella <[email protected]>
Acked-by: Stefan Hajnoczi <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
net/vmw_vsock/virtio_transport.c
This page took 0.085519 seconds and 4 git commands to generate.