From patchwork Thu Oct 29 18:42:27 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luiz Capitulino X-Patchwork-Id: 37220 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 C6FE4B7BCA for ; Fri, 30 Oct 2009 05:50:44 +1100 (EST) Received: from localhost ([127.0.0.1]:45592 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N3a54-0008Bk-3K for incoming@patchwork.ozlabs.org; Thu, 29 Oct 2009 14:50:42 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N3ZxZ-000517-BZ for qemu-devel@nongnu.org; Thu, 29 Oct 2009 14:42:57 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N3ZxU-0004yT-Eo for qemu-devel@nongnu.org; Thu, 29 Oct 2009 14:42:56 -0400 Received: from [199.232.76.173] (port=39776 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N3ZxT-0004yF-WC for qemu-devel@nongnu.org; Thu, 29 Oct 2009 14:42:52 -0400 Received: from mx1.redhat.com ([209.132.183.28]:60074) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1N3ZxS-0008Of-N2 for qemu-devel@nongnu.org; Thu, 29 Oct 2009 14:42:51 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n9TIgn7B028391; Thu, 29 Oct 2009 14:42:49 -0400 Received: from localhost (vpn-12-126.rdu.redhat.com [10.11.12.126]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n9TIgm60004061; Thu, 29 Oct 2009 14:42:48 -0400 From: Luiz Capitulino To: qemu-devel@nongnu.org Date: Thu, 29 Oct 2009 16:42:27 -0200 Message-Id: <1256841750-15228-5-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1256841750-15228-1-git-send-email-lcapitulino@redhat.com> References: <1256841750-15228-1-git-send-email-lcapitulino@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: pbonzini@redhat.com, aliguori@us.ibm.com, kraxel@redhat.com, hollisb@us.ibm.com Subject: [Qemu-devel] [PATCH 4/7] QError: Add QERR_DEV_NFOUND 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 A generic error to be triggered when a device is not found. Signed-off-by: Luiz Capitulino --- qerror.c | 4 ++++ qerror.h | 1 + 2 files changed, 5 insertions(+), 0 deletions(-) diff --git a/qerror.c b/qerror.c index 0359d65..69eabfb 100644 --- a/qerror.c +++ b/qerror.c @@ -51,6 +51,10 @@ static QErrorTable qerror_table[] = { .code = QERR_UNKNOWN, .desc = "unknown error", }, + { + .code = QERR_DEV_NFOUND, + .desc = "device \"%(name)s\" not found", + }, }; /** diff --git a/qerror.h b/qerror.h index 2fd0d58..7f45360 100644 --- a/qerror.h +++ b/qerror.h @@ -21,6 +21,7 @@ */ typedef enum QErrorCode { QERR_UNKNOWN, + QERR_DEV_NFOUND, QERR_MAX, } QErrorCode;