From patchwork Thu Oct 29 18:42:30 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luiz Capitulino X-Patchwork-Id: 37223 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 800B4B7BCA for ; Fri, 30 Oct 2009 05:55:43 +1100 (EST) Received: from localhost ([127.0.0.1]:35655 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N3a9s-0002Ht-OH for incoming@patchwork.ozlabs.org; Thu, 29 Oct 2009 14:55:40 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N3Zxd-00053a-JX for qemu-devel@nongnu.org; Thu, 29 Oct 2009 14:43:01 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N3Zxa-00051U-0J for qemu-devel@nongnu.org; Thu, 29 Oct 2009 14:43:01 -0400 Received: from [199.232.76.173] (port=39780 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N3ZxZ-00051B-Cc for qemu-devel@nongnu.org; Thu, 29 Oct 2009 14:42:57 -0400 Received: from mx1.redhat.com ([209.132.183.28]:32355) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1N3ZxY-0008Q9-TL for qemu-devel@nongnu.org; Thu, 29 Oct 2009 14:42:57 -0400 Received: from int-mx05.intmail.prod.int.phx2.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.18]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n9TIguJj018900; Thu, 29 Oct 2009 14:42:56 -0400 Received: from localhost (vpn-12-126.rdu.redhat.com [10.11.12.126]) by int-mx05.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n9TIgsiq007215; Thu, 29 Oct 2009 14:42:55 -0400 From: Luiz Capitulino To: qemu-devel@nongnu.org Date: Thu, 29 Oct 2009 16:42:30 -0200 Message-Id: <1256841750-15228-8-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1256841750-15228-1-git-send-email-lcapitulino@redhat.com> References: <1256841750-15228-1-git-send-email-lcapitulino@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.18 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: pbonzini@redhat.com, aliguori@us.ibm.com, kraxel@redhat.com, hollisb@us.ibm.com Subject: [Qemu-devel] [PATCH 7/7] monitor: do_info_balloon(): use QError X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Luiz Capitulino --- monitor.c | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/monitor.c b/monitor.c index 4d56b8e..4cec447 100644 --- a/monitor.c +++ b/monitor.c @@ -1717,10 +1717,9 @@ static void do_info_balloon(Monitor *mon, QObject **ret_data) actual = qemu_balloon_status(); if (kvm_enabled() && !kvm_has_sync_mmu()) - monitor_printf(mon, "Using KVM without synchronous MMU, " - "ballooning disabled\n"); + qemu_error_structed(QERR_BAL_MMU, NULL); else if (actual == 0) - monitor_printf(mon, "Ballooning not activated in VM\n"); + qemu_error_structed(QERR_BAL_DIS, NULL); else *ret_data = QOBJECT(qint_from_int((int)(actual >> 20))); }