[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 1/5] virtio-gpu: fix error message
From: |
Gerd Hoffmann |
Subject: |
[Qemu-devel] [PULL 1/5] virtio-gpu: fix error message |
Date: |
Tue, 16 Jun 2015 09:57:22 +0200 |
iov limit was raised, but the error message still has the old limit ...
Signed-off-by: Gerd Hoffmann <address@hidden>
---
hw/display/virtio-gpu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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;
}
--
1.8.3.1
- [Qemu-devel] [PULL 0/5] virtio-gpu: pci support bits and virtio-vga, Gerd Hoffmann, 2015/06/16
- [Qemu-devel] [PULL 1/5] virtio-gpu: fix error message,
Gerd Hoffmann <=
- [Qemu-devel] [PULL 3/5] virtio-vga: add virtio gpu device with vga compatibility, Gerd Hoffmann, 2015/06/16
- [Qemu-devel] [PULL 2/5] virtio-gpu-pci: add virtio pci support, Gerd Hoffmann, 2015/06/16
- [Qemu-devel] [PULL 4/5] virtio-vga: add '-vga virtio' support, Gerd Hoffmann, 2015/06/16
- [Qemu-devel] [PULL 5/5] virtio-vga: add vgabios configuration, Gerd Hoffmann, 2015/06/16
- Re: [Qemu-devel] [PULL 0/5] virtio-gpu: pci support bits and virtio-vga, Peter Maydell, 2015/06/16