From patchwork Thu Jan 21 21:09:36 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luiz Capitulino X-Patchwork-Id: 43459 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 600DFB7CF8 for ; Fri, 22 Jan 2010 08:31:29 +1100 (EST) Received: from localhost ([127.0.0.1]:49310 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NY4XA-0005gG-14 for incoming@patchwork.ozlabs.org; Thu, 21 Jan 2010 16:25:44 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NY4IL-0000q2-52 for qemu-devel@nongnu.org; Thu, 21 Jan 2010 16:10:25 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NY4IH-0000nT-96 for qemu-devel@nongnu.org; Thu, 21 Jan 2010 16:10:24 -0500 Received: from [199.232.76.173] (port=43486 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NY4IH-0000n3-18 for qemu-devel@nongnu.org; Thu, 21 Jan 2010 16:10:21 -0500 Received: from mx1.redhat.com ([209.132.183.28]:4420) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NY4IG-0002zu-Gc for qemu-devel@nongnu.org; Thu, 21 Jan 2010 16:10:20 -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 o0LLAJar005095 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 21 Jan 2010 16:10:20 -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 o0LLAHqH008577; Thu, 21 Jan 2010 16:10:18 -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:36 -0200 Message-Id: <1264108180-3666-8-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 07/11] QError: New QERR_ASYNC_MSG_NOT_FOUND 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 9dd729a..12dcc8f 100644 --- a/qerror.c +++ b/qerror.c @@ -41,6 +41,10 @@ static const QType qerror_type = { */ static const QErrorStringTable qerror_table[] = { { + .error_fmt = QERR_ASYNC_MSG_NOT_FOUND, + .desc = "Asynchronous message %(name) has not been found", + }, + { .error_fmt = QERR_COMMAND_NOT_FOUND, .desc = "The command %(name) has not been found", }, diff --git a/qerror.h b/qerror.h index 9982d57..8e16b35 100644 --- a/qerror.h +++ b/qerror.h @@ -40,6 +40,9 @@ QError *qobject_to_qerror(const QObject *obj); /* * QError class list */ +#define QERR_ASYNC_MSG_NOT_FOUND \ + "{ 'class': 'AsyncMsgNotFound', 'data': { 'name': %s } }" + #define QERR_COMMAND_NOT_FOUND \ "{ 'class': 'CommandNotFound', 'data': { 'name': %s } }"