projects
/
sdk
/
emulator
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d8e3b72
)
virtio-gpu: fix error message
author
Gerd Hoffmann
<kraxel@redhat.com>
Tue, 17 Mar 2015 07:56:18 +0000
(08:56 +0100)
committer
Gerd Hoffmann
<kraxel@redhat.com>
Fri, 12 Jun 2015 08:13:23 +0000
(10:13 +0200)
iov limit was raised, but the error message still has the old limit ...
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
hw/display/virtio-gpu.c
patch
|
blob
|
history
diff --git
a/hw/display/virtio-gpu.c
b/hw/display/virtio-gpu.c
index
4b10ca1
..
8c109b7
100644
(file)
--- 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 > 1
02
4)\n",
+ "%s: nr_entries is too big (%d > 1
638
4)\n",
__func__, ab->nr_entries);
return -1;
}