From patchwork Tue Jun 16 07:57:22 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerd Hoffmann X-Patchwork-Id: 484819 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id D37231402A0 for ; Tue, 16 Jun 2015 17:58:16 +1000 (AEST) Received: from localhost ([::1]:38462 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z4ll7-0004CO-DF for incoming@patchwork.ozlabs.org; Tue, 16 Jun 2015 03:58:13 -0400 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) Received: from nilsson.home.kraxel.org (ovpn-116-43.ams2.redhat.com [10.36.116.43]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t5G7vUIa028104; Tue, 16 Jun 2015 03:57:31 -0400 Received: by nilsson.home.kraxel.org (Postfix, from userid 500) id 9AE1481C55; Tue, 16 Jun 2015 09:57:28 +0200 (CEST) From: Gerd Hoffmann To: qemu-devel@nongnu.org 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> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Gerd Hoffmann , "Michael S. Tsirkin" Subject: [Qemu-devel] [PULL 1/5] virtio-gpu: fix error message X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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; }