diff options
| author | Jason Wang | 2015-05-29 08:15:31 +0200 |
|---|---|---|
| committer | Michael S. Tsirkin | 2015-05-31 16:50:10 +0200 |
| commit | 87b3bd1c858e6cacac4d403da9109ec3a04fe9d0 (patch) | |
| tree | db821ce6da2d155218db126912cc8cff3c72234f /hw/scsi | |
| parent | virtio-s390: introduce virtio_s390_device_plugged() (diff) | |
| download | qemu-87b3bd1c858e6cacac4d403da9109ec3a04fe9d0.tar.gz qemu-87b3bd1c858e6cacac4d403da9109ec3a04fe9d0.tar.xz qemu-87b3bd1c858e6cacac4d403da9109ec3a04fe9d0.zip | |
virtio: rename VIRTIO_PCI_QUEUE_MAX to VIRTIO_QUEUE_MAX
VIRTIO_PCI_QUEUE_MAX is not only used for pci, so rename it be generic.
Cc: Amit Shah <amit.shah@redhat.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>
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/scsi')
| -rw-r--r-- | hw/scsi/virtio-scsi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/scsi/virtio-scsi.c b/hw/scsi/virtio-scsi.c index e242fefa84..5818159e64 100644 --- a/hw/scsi/virtio-scsi.c +++ b/hw/scsi/virtio-scsi.c @@ -830,10 +830,10 @@ void virtio_scsi_common_realize(DeviceState *dev, Error **errp, sizeof(VirtIOSCSIConfig)); if (s->conf.num_queues == 0 || - s->conf.num_queues > VIRTIO_PCI_QUEUE_MAX - 2) { + s->conf.num_queues > VIRTIO_QUEUE_MAX - 2) { error_setg(errp, "Invalid number of queues (= %" PRIu32 "), " "must be a positive integer less than %d.", - s->conf.num_queues, VIRTIO_PCI_QUEUE_MAX - 2); + s->conf.num_queues, VIRTIO_QUEUE_MAX - 2); virtio_cleanup(vdev); return; } |
