From patchwork Thu Mar 4 15:56:57 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Armbruster X-Patchwork-Id: 46967 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 9E4E7B7CE7 for ; Fri, 5 Mar 2010 04:49:32 +1100 (EST) Received: from localhost ([127.0.0.1]:49641 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NnFA1-0004N7-Lo for incoming@patchwork.ozlabs.org; Thu, 04 Mar 2010 12:48:33 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NnDYX-0006DA-U6 for qemu-devel@nongnu.org; Thu, 04 Mar 2010 11:05:46 -0500 Received: from [199.232.76.173] (port=58613 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NnDYW-0006CR-Mw for qemu-devel@nongnu.org; Thu, 04 Mar 2010 11:05:44 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1NnDYP-0001bx-UP for qemu-devel@nongnu.org; Thu, 04 Mar 2010 11:05:44 -0500 Received: from oxygen.pond.sub.org ([213.239.205.148]:47515) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NnDYO-0001b5-S7 for qemu-devel@nongnu.org; Thu, 04 Mar 2010 11:05:37 -0500 Received: from blackfin.pond.sub.org (pD9E38041.dip.t-dialin.net [217.227.128.65]) by oxygen.pond.sub.org (Postfix) with ESMTPA id EC31A2DD321 for ; Thu, 4 Mar 2010 16:57:16 +0100 (CET) Received: by blackfin.pond.sub.org (Postfix, from userid 500) id F2ECC170; Thu, 4 Mar 2010 16:57:13 +0100 (CET) From: Markus Armbruster To: qemu-devel@nongnu.org Date: Thu, 4 Mar 2010 16:56:57 +0100 Message-Id: <1267718231-13303-37-git-send-email-armbru@redhat.com> X-Mailer: git-send-email 1.6.6.1 In-Reply-To: <1267718231-13303-1-git-send-email-armbru@redhat.com> References: <1267718231-13303-1-git-send-email-armbru@redhat.com> X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) Cc: Luiz Capitulino Subject: [Qemu-devel] [PATCH 36/50] error: New QERR_DEVICE_NO_BUS 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: Markus Armbruster --- qerror.c | 4 ++++ qerror.h | 3 +++ 2 files changed, 7 insertions(+), 0 deletions(-) diff --git a/qerror.c b/qerror.c index b79b4fa..733723e 100644 --- a/qerror.c +++ b/qerror.c @@ -73,6 +73,10 @@ static const QErrorStringTable qerror_table[] = { .desc = "Device '%(device)' is not removable", }, { + .error_fmt = QERR_DEVICE_NO_BUS, + .desc = "Device '%(device)' has no child bus", + }, + { .error_fmt = QERR_FD_NOT_FOUND, .desc = "File descriptor named '%(name)' not found", }, diff --git a/qerror.h b/qerror.h index 2b31a8d..e65f1f2 100644 --- a/qerror.h +++ b/qerror.h @@ -66,6 +66,9 @@ QError *qobject_to_qerror(const QObject *obj); #define QERR_DEVICE_NOT_REMOVABLE \ "{ 'class': 'DeviceNotRemovable', 'data': { 'device': %s } }" +#define QERR_DEVICE_NO_BUS \ + "{ 'class': 'DeviceNoBus', 'data': { 'device': %s } }" + #define QERR_FD_NOT_FOUND \ "{ 'class': 'FdNotFound', 'data': { 'name': %s } }"