aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/char/virtio_console.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c
index 288701ccbf7a..c84486b3e43d 100644
--- a/drivers/char/virtio_console.c
+++ b/drivers/char/virtio_console.c
@@ -1738,6 +1738,14 @@ static void virtcons_remove(struct virtio_device *vdev)
1738 1738
1739 unregister_chrdev(portdev->chr_major, "virtio-portsdev"); 1739 unregister_chrdev(portdev->chr_major, "virtio-portsdev");
1740 1740
1741 /*
1742 * When yanking out a device, we immediately lose the
1743 * (device-side) queues. So there's no point in keeping the
1744 * guest side around till we drop our final reference. This
1745 * also means that any ports which are in an open state will
1746 * have to just stop using the port, as the vqs are going
1747 * away.
1748 */
1741 if (use_multiport(portdev)) { 1749 if (use_multiport(portdev)) {
1742 struct port_buffer *buf; 1750 struct port_buffer *buf;
1743 unsigned int len; 1751 unsigned int len;