aboutsummaryrefslogtreecommitdiff
path: root/hw/s390x/s390-virtio-ccw.c
diff options
context:
space:
mode:
authorJason Wang <jasowang@redhat.com>2015-05-29 14:15:27 +0800
committerMichael S. Tsirkin <mst@redhat.com>2015-05-31 16:45:38 +0200
commit8dfbaa6ac450c4ec2646b1ca08a4017052a90c1d (patch)
treeffdd182e133d2f04ee08ff31bb6f65ce9cfe9f2c /hw/s390x/s390-virtio-ccw.c
parent8ad176aaed24535f535e0fdb03c538c23017535d (diff)
downloadqemu-8dfbaa6ac450c4ec2646b1ca08a4017052a90c1d.zip
qemu-8dfbaa6ac450c4ec2646b1ca08a4017052a90c1d.tar.gz
qemu-8dfbaa6ac450c4ec2646b1ca08a4017052a90c1d.tar.bz2
virtio-ccw: introduce ccw specific queue limit
Cc: Alexander Graf <agraf@suse.de> Cc: Cornelia Huck <cornelia.huck@de.ibm.com> Cc: Christian Borntraeger <borntraeger@de.ibm.com> Cc: Richard Henderson <rth@twiddle.net> Signed-off-by: Jason Wang <jasowang@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/s390x/s390-virtio-ccw.c')
-rw-r--r--hw/s390x/s390-virtio-ccw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/s390x/s390-virtio-ccw.c b/hw/s390x/s390-virtio-ccw.c
index afb539a..8a565f6 100644
--- a/hw/s390x/s390-virtio-ccw.c
+++ b/hw/s390x/s390-virtio-ccw.c
@@ -67,7 +67,7 @@ static int virtio_ccw_hcall_notify(const uint64_t *args)
if (!sch || !css_subch_visible(sch)) {
return -EINVAL;
}
- if (queue >= VIRTIO_PCI_QUEUE_MAX) {
+ if (queue >= VIRTIO_CCW_QUEUE_MAX) {
return -EINVAL;
}
virtio_queue_notify(virtio_ccw_get_vdev(sch), queue);