projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
56a571d
)
virtio: fix error message for number of queues
author
Cornelia Huck
<cornelia.huck@de.ibm.com>
Fri, 8 Jan 2016 10:00:00 +0000
(11:00 +0100)
committer
Michael S. Tsirkin
<mst@redhat.com>
Sat, 9 Jan 2016 21:20:20 +0000
(23:20 +0200)
There's no such thing as "PCI queues" in the virtio core.
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
hw/virtio/virtio.c
patch
|
blob
|
history
diff --git
a/hw/virtio/virtio.c
b/hw/virtio/virtio.c
index 28300cdba616eca63fd18e707183b68dcb411119..bd6b4df9ae85ce794a5f3a2f280d936baf51a553 100644
(file)
--- a/
hw/virtio/virtio.c
+++ b/
hw/virtio/virtio.c
@@
-1380,7
+1380,7
@@
int virtio_load(VirtIODevice *vdev, QEMUFile *f, int version_id)
num = qemu_get_be32(f);
if (num > VIRTIO_QUEUE_MAX) {
- error_report("Invalid number of
PCI
queues: 0x%x", num);
+ error_report("Invalid number of
virt
queues: 0x%x", num);
return -1;
}