From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47504) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z4lkW-0003DG-7U for qemu-devel@nongnu.org; Tue, 16 Jun 2015 03:57:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z4lkS-0005u4-2h for qemu-devel@nongnu.org; Tue, 16 Jun 2015 03:57:36 -0400 Received: from mx1.redhat.com ([209.132.183.28]:57552) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z4lkR-0005tw-Tm for qemu-devel@nongnu.org; Tue, 16 Jun 2015 03:57:32 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (Postfix) with ESMTPS id 7C3BC373BED for ; Tue, 16 Jun 2015 07:57:31 +0000 (UTC) From: Gerd Hoffmann Date: Tue, 16 Jun 2015 09:57:22 +0200 Message-Id: <1434441446-18930-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1434441446-18930-1-git-send-email-kraxel@redhat.com> References: <1434441446-18930-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 1/5] virtio-gpu: fix error message List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann , "Michael S. Tsirkin" iov limit was raised, but the error message still has the old limit ... Signed-off-by: Gerd Hoffmann --- 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