From patchwork Wed Feb 24 17:55:51 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Armbruster X-Patchwork-Id: 46201 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 310F1B7CE4 for ; Thu, 25 Feb 2010 06:55:23 +1100 (EST) Received: from localhost ([127.0.0.1]:38567 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NkN88-0007Gg-Af for incoming@patchwork.ozlabs.org; Wed, 24 Feb 2010 14:42:44 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NkM5B-0003tw-Fz for qemu-devel@nongnu.org; Wed, 24 Feb 2010 13:35:37 -0500 Received: from [199.232.76.173] (port=36088 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NkM5B-0003th-1u for qemu-devel@nongnu.org; Wed, 24 Feb 2010 13:35:37 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1NkM59-0003oL-R1 for qemu-devel@nongnu.org; Wed, 24 Feb 2010 13:35:36 -0500 Received: from oxygen.pond.sub.org ([213.239.205.148]:48759) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NkM59-0003oD-Dl for qemu-devel@nongnu.org; Wed, 24 Feb 2010 13:35:35 -0500 Received: from blackfin.pond.sub.org (pD9E38C12.dip.t-dialin.net [217.227.140.18]) by oxygen.pond.sub.org (Postfix) with ESMTPA id 647F43127B4 for ; Wed, 24 Feb 2010 18:56:06 +0100 (CET) Received: by blackfin.pond.sub.org (Postfix, from userid 500) id 3D393D5; Wed, 24 Feb 2010 18:56:03 +0100 (CET) From: Markus Armbruster To: qemu-devel@nongnu.org Date: Wed, 24 Feb 2010 18:55:51 +0100 Message-Id: <1267034160-3517-40-git-send-email-armbru@redhat.com> X-Mailer: git-send-email 1.6.6 In-Reply-To: <1267034160-3517-1-git-send-email-armbru@redhat.com> References: <1267034160-3517-1-git-send-email-armbru@redhat.com> X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) Subject: [Qemu-devel] [PATCH RFC 39/48] error: New QERR_DEVICE_INIT_FAILED 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 38db6b2..8a38e5d 100644 --- a/qerror.c +++ b/qerror.c @@ -61,6 +61,10 @@ static const QErrorStringTable qerror_table[] = { .desc = "Device '%(device)' is encrypted", }, { + .error_fmt = QERR_DEVICE_INIT_FAILED, + .desc = "Device '%(device)' could not be initialized", + }, + { .error_fmt = QERR_DEVICE_LOCKED, .desc = "Device '%(device)' is locked", }, diff --git a/qerror.h b/qerror.h index 9db909a..173b9f8 100644 --- a/qerror.h +++ b/qerror.h @@ -57,6 +57,9 @@ QError *qobject_to_qerror(const QObject *obj); #define QERR_DEVICE_ENCRYPTED \ "{ 'class': 'DeviceEncrypted', 'data': { 'device': %s } }" +#define QERR_DEVICE_INIT_FAILED \ + "{ 'class': 'DeviceInitFailed', 'data': { 'device': %s } }" + #define QERR_DEVICE_LOCKED \ "{ 'class': 'DeviceLocked', 'data': { 'device': %s } }"