aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/virtio_console.c
diff options
context:
space:
mode:
authorAmit Shah <amit.shah@redhat.com>2010-09-02 08:41:44 -0400
committerRusty Russell <rusty@rustcorp.com.au>2010-10-21 03:14:01 -0400
commit8529a504273d4efa6bb004dcd6ef28fe67b64ae9 (patch)
tree3a6046100b725d8b263c4bd94baf6338dd4208b0 /drivers/char/virtio_console.c
parent3709ea7ae7d698b428576c2db0bbb6e08a18cf12 (diff)
virtio: console: Unblock poll on port hot-unplug
When a port is hot-unplugged while an app is blocked on poll(), unblock the poll() and return. Signed-off-by: Amit Shah <amit.shah@redhat.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'drivers/char/virtio_console.c')
-rw-r--r--drivers/char/virtio_console.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c
index 92f1f65d57a9..47b710ca4ab3 100644
--- a/drivers/char/virtio_console.c
+++ b/drivers/char/virtio_console.c
@@ -663,6 +663,10 @@ static unsigned int port_fops_poll(struct file *filp, poll_table *wait)
663 port = filp->private_data; 663 port = filp->private_data;
664 poll_wait(filp, &port->waitqueue, wait); 664 poll_wait(filp, &port->waitqueue, wait);
665 665
666 if (!port->guest_connected) {
667 /* Port got unplugged */
668 return POLLHUP;
669 }
666 ret = 0; 670 ret = 0;
667 if (!will_read_block(port)) 671 if (!will_read_block(port))
668 ret |= POLLIN | POLLRDNORM; 672 ret |= POLLIN | POLLRDNORM;