aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/char/virtio_console.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c
index c4ca43694233..6d5c579b1693 100644
--- a/drivers/char/virtio_console.c
+++ b/drivers/char/virtio_console.c
@@ -1483,6 +1483,9 @@ static void in_intr(struct virtqueue *vq)
1483 1483
1484 wake_up_interruptible(&port->waitqueue); 1484 wake_up_interruptible(&port->waitqueue);
1485 1485
1486 /* Send a SIGIO indicating new data in case the process asked for it */
1487 send_sigio_to_port(port);
1488
1486 if (is_console_port(port) && hvc_poll(port->cons.hvc)) 1489 if (is_console_port(port) && hvc_poll(port->cons.hvc))
1487 hvc_kick(); 1490 hvc_kick();
1488} 1491}