From patchwork Thu Feb 4 22:04:26 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Naphtali Sprei X-Patchwork-Id: 44559 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 4CF78B7D50 for ; Fri, 5 Feb 2010 09:24:08 +1100 (EST) Received: from localhost ([127.0.0.1]:37270 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nd9ra-0006qr-95 for incoming@patchwork.ozlabs.org; Thu, 04 Feb 2010 17:07:50 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Nd9oa-0006Mb-MD for qemu-devel@nongnu.org; Thu, 04 Feb 2010 17:04:44 -0500 Received: from [199.232.76.173] (port=46743 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nd9oZ-0006Lz-Ps for qemu-devel@nongnu.org; Thu, 04 Feb 2010 17:04:43 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1Nd9oW-0000nk-IC for qemu-devel@nongnu.org; Thu, 04 Feb 2010 17:04:43 -0500 Received: from mx1.redhat.com ([209.132.183.28]:12265) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Nd9oV-0000nE-QX for qemu-devel@nongnu.org; Thu, 04 Feb 2010 17:04:40 -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 o14M4b9W003316 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 4 Feb 2010 17:04:37 -0500 Received: from localhost.localdomain (dhcp-0-60.tlv.redhat.com [10.35.0.60]) by int-mx08.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o14M4WGX029322; Thu, 4 Feb 2010 17:04:35 -0500 From: Naphtali Sprei To: qemu-devel@nongnu.org Date: Fri, 5 Feb 2010 00:04:26 +0200 Message-Id: <1265321069-4105-2-git-send-email-nsprei@redhat.com> In-Reply-To: <1265321069-4105-1-git-send-email-nsprei@redhat.com> References: <1265321069-4105-1-git-send-email-nsprei@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: Naphtali Sprei Subject: [Qemu-devel] [PATCH v2 resend 1/4] Add open_flags to BlockDriverState Will be used later 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: Naphtali Sprei --- block.c | 1 + block_int.h | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/block.c b/block.c index 1919d19..66564de 100644 --- a/block.c +++ b/block.c @@ -363,6 +363,7 @@ int bdrv_open2(BlockDriverState *bs, const char *filename, int flags, bs->is_temporary = 0; bs->encrypted = 0; bs->valid_key = 0; + bs->open_flags = flags; /* buffer_alignment defaulted to 512, drivers can change this value */ bs->buffer_alignment = 512; diff --git a/block_int.h b/block_int.h index a0ebd90..9144d37 100644 --- a/block_int.h +++ b/block_int.h @@ -130,6 +130,7 @@ struct BlockDriverState { int64_t total_sectors; /* if we are reading a disk image, give its size in sectors */ int read_only; /* if true, the media is read only */ + int open_flags; /* flags used to open the file */ int removable; /* if true, the media can be removed */ int locked; /* if true, the media cannot temporarily be ejected */ int encrypted; /* if true, the media is encrypted */