Skip to content

Commit 3438b2c

Browse files
halil-pasicmstsirkin
authored andcommitted
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>
1 parent 8457fdf commit 3438b2c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

drivers/s390/virtio/virtio_ccw.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,8 @@ static void virtio_ccw_drop_indicators(struct virtio_ccw_device *vcdev)
272272
{
273273
struct virtio_ccw_vq_info *info;
274274

275+
if (!vcdev->airq_info)
276+
return;
275277
list_for_each_entry(info, &vcdev->virtqueues, node)
276278
drop_airq_indicator(info->vq, vcdev->airq_info);
277279
}
@@ -413,7 +415,7 @@ static int virtio_ccw_read_vq_conf(struct virtio_ccw_device *vcdev,
413415
ret = ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_READ_VQ_CONF);
414416
if (ret)
415417
return ret;
416-
return vcdev->config_block->num;
418+
return vcdev->config_block->num ?: -ENOENT;
417419
}
418420

419421
static void virtio_ccw_del_vq(struct virtqueue *vq, struct ccw1 *ccw)

0 commit comments

Comments
 (0)