From patchwork Thu Jan 21 21:09:32 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luiz Capitulino X-Patchwork-Id: 43454 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 A2F8FB7D13 for ; Fri, 22 Jan 2010 08:19:28 +1100 (EST) Received: from localhost ([127.0.0.1]:43096 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NY4OU-00053J-27 for incoming@patchwork.ozlabs.org; Thu, 21 Jan 2010 16:16:46 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NY4I6-0000Z5-HD for qemu-devel@nongnu.org; Thu, 21 Jan 2010 16:10:10 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NY4I1-0000R7-6h for qemu-devel@nongnu.org; Thu, 21 Jan 2010 16:10:09 -0500 Received: from [199.232.76.173] (port=43475 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NY4I1-0000Qs-0J for qemu-devel@nongnu.org; Thu, 21 Jan 2010 16:10:05 -0500 Received: from mx1.redhat.com ([209.132.183.28]:30795) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NY4I0-0002yG-IC for qemu-devel@nongnu.org; Thu, 21 Jan 2010 16:10:04 -0500 Received: from int-mx08.intmail.prod.int.phx2.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o0LLA33u031821 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 21 Jan 2010 16:10:03 -0500 Received: from localhost (vpn-9-176.rdu.redhat.com [10.11.9.176]) by int-mx08.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o0LLA10S008284; Thu, 21 Jan 2010 16:10:02 -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:32 -0200 Message-Id: <1264108180-3666-4-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.21 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: Subject: [Qemu-devel] [PATCH 03/11] QError: Add QMP mode-oriented errors 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 Two new errors: - QERR_QMP_INVALID_MODE_NAME - QERR_QMP_INVALID_MODE_TRANSACTION Signed-off-by: Luiz Capitulino --- qerror.c | 8 ++++++++ qerror.h | 6 ++++++ 2 files changed, 14 insertions(+), 0 deletions(-) diff --git a/qerror.c b/qerror.c index 5f8fc5d..9dd729a 100644 --- a/qerror.c +++ b/qerror.c @@ -105,6 +105,14 @@ static const QErrorStringTable qerror_table[] = { .desc = "Bad QMP input object", }, { + .error_fmt = QERR_QMP_INVALID_MODE_NAME, + .desc = "Mode name %(name) is invalid", + }, + { + .error_fmt = QERR_QMP_INVALID_MODE_TRANSACTION, + .desc = "Invalid mode transaction", + }, + { .error_fmt = QERR_SET_PASSWD_FAILED, .desc = "Could not set password", }, diff --git a/qerror.h b/qerror.h index 9e220d6..9982d57 100644 --- a/qerror.h +++ b/qerror.h @@ -88,6 +88,12 @@ QError *qobject_to_qerror(const QObject *obj); #define QERR_QMP_BAD_INPUT_OBJECT \ "{ 'class': 'QMPBadInputObject', 'data': { 'expected': %s } }" +#define QERR_QMP_INVALID_MODE_NAME \ + "{ 'class': 'QMPInvalidModeName', 'data': { 'name': %s } }" + +#define QERR_QMP_INVALID_MODE_TRANSACTION \ + "{ 'class': 'QMPInvalidModeTransaction', 'data': {} }" + #define QERR_SET_PASSWD_FAILED \ "{ 'class': 'SetPasswdFailed', 'data': {} }"