From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60866) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z3KWO-0002NI-C9 for qemu-devel@nongnu.org; Fri, 12 Jun 2015 04:41:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z3KWL-0000It-5V for qemu-devel@nongnu.org; Fri, 12 Jun 2015 04:41:04 -0400 Received: from mx1.redhat.com ([209.132.183.28]:55320) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z3KWK-0000Go-W6 for qemu-devel@nongnu.org; Fri, 12 Jun 2015 04:41:01 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (Postfix) with ESMTPS id 2043F2DD31C for ; Fri, 12 Jun 2015 08:41:00 +0000 (UTC) From: Gerd Hoffmann Date: Fri, 12 Jun 2015 10:39:52 +0200 Message-Id: <1434098397-19376-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1434098397-19376-1-git-send-email-kraxel@redhat.com> References: <1434098397-19376-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH v2 1/6] 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