diff options
author | Halil Pasic <pasic@linux.ibm.com> | 2019-01-21 07:19:43 -0500 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2019-03-06 11:19:44 -0500 |
commit | 3438b2c039b4bf26881786a1f3450f016d66ad11 (patch) | |
tree | a78f00f0a7ea4abafb80ca65824a0c08c4f644bf | |
parent | 8457fdfeb16d307b2acd502cb9224d03174294d2 (diff) |
s390/virtio: handle find on invalid queue gracefully
A queue with a capacity of zero is clearly not a valid virtio queue.
Some emulators report zero queue size if queried with an invalid queue
index. Instead of crashing in this case let us just return -ENOENT. To
make that work properly, let us fix the notifier cleanup logic as well.
Cc: stable@vger.kernel.org
Signed-off-by: Halil Pasic <pasic@linux.ibm.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
-rw-r--r-- | drivers/s390/virtio/virtio_ccw.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/s390/virtio/virtio_ccw.c b/drivers/s390/virtio/virtio_ccw.c index ae1d56da671d..1a738fe9f26b 100644 --- a/drivers/s390/virtio/virtio_ccw.c +++ b/drivers/s390/virtio/virtio_ccw.c | |||
@@ -272,6 +272,8 @@ static void virtio_ccw_drop_indicators(struct virtio_ccw_device *vcdev) | |||
272 | { | 272 | { |
273 | struct virtio_ccw_vq_info *info; | 273 | struct virtio_ccw_vq_info *info; |
274 | 274 | ||
275 | if (!vcdev->airq_info) | ||
276 | return; | ||
275 | list_for_each_entry(info, &vcdev->virtqueues, node) | 277 | list_for_each_entry(info, &vcdev->virtqueues, node) |
276 | drop_airq_indicator(info->vq, vcdev->airq_info); | 278 | drop_airq_indicator(info->vq, vcdev->airq_info); |
277 | } | 279 | } |
@@ -413,7 +415,7 @@ static int virtio_ccw_read_vq_conf(struct virtio_ccw_device *vcdev, | |||
413 | ret = ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_READ_VQ_CONF); | 415 | ret = ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_READ_VQ_CONF); |
414 | if (ret) | 416 | if (ret) |
415 | return ret; | 417 | return ret; |
416 | return vcdev->config_block->num; | 418 | return vcdev->config_block->num ?: -ENOENT; |
417 | } | 419 | } |
418 | 420 | ||
419 | static void virtio_ccw_del_vq(struct virtqueue *vq, struct ccw1 *ccw) | 421 | static void virtio_ccw_del_vq(struct virtqueue *vq, struct ccw1 *ccw) |