summaryrefslogtreecommitdiffstats
path: root/hw/display/virtio-gpu.c
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2015-03-17 08:56:18 +0100
committerGerd Hoffmann <kraxel@redhat.com>2015-06-12 10:13:23 +0200
commit2c84167b4efa4a0e81946ef624e96005396e14b2 (patch)
tree77b85faaf28991c973fdc729a2643318850e85b0 /hw/display/virtio-gpu.c
parentd8e3b729cf452d2689c8669f1ec18158db29fd5a (diff)
downloadhqemu-2c84167b4efa4a0e81946ef624e96005396e14b2.zip
hqemu-2c84167b4efa4a0e81946ef624e96005396e14b2.tar.gz
virtio-gpu: fix error message
iov limit was raised, but the error message still has the old limit ... Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/display/virtio-gpu.c')
-rw-r--r--hw/display/virtio-gpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/display/virtio-gpu.c b/hw/display/virtio-gpu.c
index 4b10ca1..8c109b7 100644
--- a/hw/display/virtio-gpu.c
+++ b/hw/display/virtio-gpu.c
@@ -534,7 +534,7 @@ int virtio_gpu_create_mapping_iov(struct virtio_gpu_resource_attach_backing *ab,
if (ab->nr_entries > 16384) {
qemu_log_mask(LOG_GUEST_ERROR,
- "%s: nr_entries is too big (%d > 1024)\n",
+ "%s: nr_entries is too big (%d > 16384)\n",
__func__, ab->nr_entries);
return -1;
}
OpenPOWER on IntegriCloud