From patchwork Wed Oct 2 12:39:15 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Beno=C3=AEt_Canet?= X-Patchwork-Id: 279725 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 E9CF22C00B1 for ; Wed, 2 Oct 2013 22:41:47 +1000 (EST) Received: from localhost ([::1]:35836 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VRLkP-0008J0-QP for incoming@patchwork.ozlabs.org; Wed, 02 Oct 2013 08:41:45 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55680) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VRLiU-0006F1-Ko for qemu-devel@nongnu.org; Wed, 02 Oct 2013 08:39:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VRLiP-00075F-Gd for qemu-devel@nongnu.org; Wed, 02 Oct 2013 08:39:46 -0400 Received: from nodalink.pck.nerim.net ([62.212.105.220]:42235 helo=paradis.irqsave.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VRLiP-000755-6p for qemu-devel@nongnu.org; Wed, 02 Oct 2013 08:39:41 -0400 Received: by paradis.irqsave.net (Postfix, from userid 1002) id 8ADB88746C0; Wed, 2 Oct 2013 14:39:40 +0200 (CEST) Received: from Laure.example.org (unknown [192.168.77.20]) by paradis.irqsave.net (Postfix) with ESMTP id 18A128746C4; Wed, 2 Oct 2013 14:39:25 +0200 (CEST) From: =?UTF-8?q?Beno=C3=AEt=20Canet?= To: qemu-devel@nongnu.org Date: Wed, 2 Oct 2013 14:39:15 +0200 Message-Id: <1380717564-11098-3-git-send-email-benoit@irqsave.net> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1380717564-11098-1-git-send-email-benoit@irqsave.net> References: <1380717564-11098-1-git-send-email-benoit@irqsave.net> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 62.212.105.220 Cc: kwolf@redhat.com, =?UTF-8?q?Beno=C3=AEt=20Canet?= , stefanha@redhat.com Subject: [Qemu-devel] [PATCH V9 02/11] quorum: Create BDRVQuorumState and BlkDriver and do init. 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: Benoit Canet --- block/quorum.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/block/quorum.c b/block/quorum.c index 76a1fbb..9557e61 100644 --- a/block/quorum.c +++ b/block/quorum.c @@ -15,6 +15,16 @@ #include "block/block_int.h" +/* the following structure hold the state of one quorum instance */ +typedef struct { + BlockDriverState *bs; /* children BlockDriverStates */ + int total; /* children count */ + int threshold; /* if less than threshold children reads gave the same + * result a quorum error occur. + */ + bool is_blkverify; /* true if the driver is in blkverify mode */ +} BDRVQuorumState; + typedef struct QuorumAIOCB QuorumAIOCB; /* Quorum will create one instance of the following structure per read/write @@ -37,6 +47,7 @@ typedef struct QuorumSingleAIOCB { */ struct QuorumAIOCB { BlockDriverAIOCB common; + BDRVQuorumState *bqs; /* Request metadata */ uint64_t sector_num; @@ -52,3 +63,17 @@ struct QuorumAIOCB { bool is_read; int vote_ret; }; + +static BlockDriver bdrv_quorum = { + .format_name = "quorum", + .protocol_name = "quorum", + + .instance_size = sizeof(BDRVQuorumState), +}; + +static void bdrv_quorum_init(void) +{ + bdrv_register(&bdrv_quorum); +} + +block_init(bdrv_quorum_init);