From patchwork Fri Jun 7 19:52:29 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luiz Capitulino X-Patchwork-Id: 249803 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id D75EE2C00A6 for ; Sat, 8 Jun 2013 05:54:42 +1000 (EST) Received: from localhost ([::1]:55679 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ul2kC-0004oa-U4 for incoming@patchwork.ozlabs.org; Fri, 07 Jun 2013 15:54:40 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45374) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ul2iJ-0002QN-6E for qemu-devel@nongnu.org; Fri, 07 Jun 2013 15:52:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ul2iH-00034m-4f for qemu-devel@nongnu.org; Fri, 07 Jun 2013 15:52:43 -0400 Received: from mx1.redhat.com ([209.132.183.28]:29060) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ul2iG-00034g-Tc for qemu-devel@nongnu.org; Fri, 07 Jun 2013 15:52:41 -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.14.4/8.14.4) with ESMTP id r57JqeAd028415 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 7 Jun 2013 15:52:40 -0400 Received: from localhost (ovpn-113-73.phx2.redhat.com [10.3.113.73]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id r57JqdRA022321; Fri, 7 Jun 2013 15:52:40 -0400 From: Luiz Capitulino To: qemu-devel@nongnu.org Date: Fri, 7 Jun 2013 15:52:29 -0400 Message-Id: <1370634755-18132-4-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1370634755-18132-1-git-send-email-lcapitulino@redhat.com> References: <1370634755-18132-1-git-send-email-lcapitulino@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: kwolf@redhat.com, armbru@redhat.com Subject: [Qemu-devel] [PATCH 3/9] block: bdrv_reopen_prepare(): use error_setg_file_open() X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Luiz Capitulino --- block.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/block.c b/block.c index 79ad33d..c78f152 100644 --- a/block.c +++ b/block.c @@ -1291,8 +1291,7 @@ int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue, if (local_err != NULL) { error_propagate(errp, local_err); } else { - error_set(errp, QERR_OPEN_FILE_FAILED, - reopen_state->bs->filename); + error_setg_file_open(errp, errno, reopen_state->bs->filename); } goto error; }