diff options
| author | Amit Shah <amit.shah@redhat.com> | 2010-03-19 08:06:44 -0400 |
|---|---|---|
| committer | Michael S. Tsirkin <mst@redhat.com> | 2010-03-22 08:24:55 -0400 |
| commit | 2de16a493cc6153f7fa0b9da12a3862d063e3425 (patch) | |
| tree | f649e694f63a6456d7572ec0afc21250c157a3f7 | |
| parent | ec64213c4d482ee4d15b34511441eaecdd002adf (diff) | |
virtio: console: Check if port is valid in resize_console
The console port could have been hot-unplugged. Check if it is valid
before working on it.
Signed-off-by: Amit Shah <amit.shah@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
| -rw-r--r-- | drivers/char/virtio_console.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c index 67b474b4167c..44288ce0cb45 100644 --- a/drivers/char/virtio_console.c +++ b/drivers/char/virtio_console.c | |||
| @@ -681,6 +681,10 @@ static void resize_console(struct port *port) | |||
| 681 | struct virtio_device *vdev; | 681 | struct virtio_device *vdev; |
| 682 | struct winsize ws; | 682 | struct winsize ws; |
| 683 | 683 | ||
| 684 | /* The port could have been hot-unplugged */ | ||
| 685 | if (!port) | ||
| 686 | return; | ||
| 687 | |||
| 684 | vdev = port->portdev->vdev; | 688 | vdev = port->portdev->vdev; |
| 685 | if (virtio_has_feature(vdev, VIRTIO_CONSOLE_F_SIZE)) { | 689 | if (virtio_has_feature(vdev, VIRTIO_CONSOLE_F_SIZE)) { |
| 686 | vdev->config->get(vdev, | 690 | vdev->config->get(vdev, |
