From patchwork Thu Jan 21 21:09:39 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luiz Capitulino X-Patchwork-Id: 43460 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 C0D5BB7D20 for ; Fri, 22 Jan 2010 08:32:42 +1100 (EST) Received: from localhost ([127.0.0.1]:50834 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NY4dM-0004M1-93 for incoming@patchwork.ozlabs.org; Thu, 21 Jan 2010 16:32:08 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NY4IY-00016u-Gj for qemu-devel@nongnu.org; Thu, 21 Jan 2010 16:10:38 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NY4IT-000113-FZ for qemu-devel@nongnu.org; Thu, 21 Jan 2010 16:10:37 -0500 Received: from [199.232.76.173] (port=43493 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NY4IT-00010m-BC for qemu-devel@nongnu.org; Thu, 21 Jan 2010 16:10:33 -0500 Received: from mx1.redhat.com ([209.132.183.28]:54400) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NY4IS-000345-QZ for qemu-devel@nongnu.org; Thu, 21 Jan 2010 16:10:33 -0500 Received: from int-mx04.intmail.prod.int.phx2.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.17]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o0LLAV2C030231 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 21 Jan 2010 16:10:32 -0500 Received: from localhost (vpn-9-176.rdu.redhat.com [10.11.9.176]) by int-mx04.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o0LLATYQ016022; Thu, 21 Jan 2010 16:10:30 -0500 From: Luiz Capitulino To: qemu-devel@nongnu.org, armbru@redhat.com, aliguori@us.ibm.com, avi@redhat.com Date: Thu, 21 Jan 2010 19:09:39 -0200 Message-Id: <1264108180-3666-11-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1264108180-3666-1-git-send-email-lcapitulino@redhat.com> References: <1264108180-3666-1-git-send-email-lcapitulino@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.17 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: Subject: [Qemu-devel] [PATCH 10/11] QError: New QERR_QMP_INVALID_MODE_COMMAND 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 --- qerror.c | 4 ++++ qerror.h | 3 +++ 2 files changed, 7 insertions(+), 0 deletions(-) diff --git a/qerror.c b/qerror.c index 12dcc8f..52cccc6 100644 --- a/qerror.c +++ b/qerror.c @@ -109,6 +109,10 @@ static const QErrorStringTable qerror_table[] = { .desc = "Bad QMP input object", }, { + .error_fmt = QERR_QMP_INVALID_MODE_COMMAND, + .desc = "The issued command is invalid in this mode", + }, + { .error_fmt = QERR_QMP_INVALID_MODE_NAME, .desc = "Mode name %(name) is invalid", }, diff --git a/qerror.h b/qerror.h index 8e16b35..c0deacc 100644 --- a/qerror.h +++ b/qerror.h @@ -91,6 +91,9 @@ QError *qobject_to_qerror(const QObject *obj); #define QERR_QMP_BAD_INPUT_OBJECT \ "{ 'class': 'QMPBadInputObject', 'data': { 'expected': %s } }" +#define QERR_QMP_INVALID_MODE_COMMAND \ + "{ 'class': 'QMPInvalidModeCommad', 'data': {} }" + #define QERR_QMP_INVALID_MODE_NAME \ "{ 'class': 'QMPInvalidModeName', 'data': { 'name': %s } }"