Re: [Qemu-devel] [PATCH V17 11/12] quorum: Add quorum_open() and quorum_close().

2014-02-18 Thread Benoît Canet
The Tuesday 18 Feb 2014 à 12:06:57 (+0800), Fam Zheng wrote : On Thu, 02/13 10:09, Benoît Canet wrote: The Wednesday 12 Feb 2014 à 23:06:38 (+0100), Benoît Canet wrote : +static void quorum_close(BlockDriverState *bs) +{ +BDRVQuorumState *s = bs-opaque; +int i; + +

Re: [Qemu-devel] [PATCH V17 11/12] quorum: Add quorum_open() and quorum_close().

2014-02-17 Thread Fam Zheng
On Thu, 02/13 10:09, Benoît Canet wrote: The Wednesday 12 Feb 2014 à 23:06:38 (+0100), Benoît Canet wrote : +static void quorum_close(BlockDriverState *bs) +{ +BDRVQuorumState *s = bs-opaque; +int i; + +for (i = 0; i s-num_children; i++) { +bdrv_unref(s-bs[i]);

Re: [Qemu-devel] [PATCH V17 11/12] quorum: Add quorum_open() and quorum_close().

2014-02-14 Thread Max Reitz
On 12.02.2014 23:06, Benoît Canet wrote: From: Benoît Canet ben...@irqsave.net Example of command line: -drive if=virtio,file.driver=quorum,\ file.children.0.file.filename=1.raw,\ file.children.0.node-name=1.raw,\ file.children.0.driver=raw,\ file.children.1.file.filename=2.raw,\

Re: [Qemu-devel] [PATCH V17 11/12] quorum: Add quorum_open() and quorum_close().

2014-02-13 Thread Benoît Canet
The Wednesday 12 Feb 2014 à 23:06:38 (+0100), Benoît Canet wrote : From: Benoît Canet ben...@irqsave.net Example of command line: -drive if=virtio,file.driver=quorum,\ file.children.0.file.filename=1.raw,\ file.children.0.node-name=1.raw,\ file.children.0.driver=raw,\

[Qemu-devel] [PATCH V17 11/12] quorum: Add quorum_open() and quorum_close().

2014-02-12 Thread Benoît Canet
From: Benoît Canet ben...@irqsave.net Example of command line: -drive if=virtio,file.driver=quorum,\ file.children.0.file.filename=1.raw,\ file.children.0.node-name=1.raw,\ file.children.0.driver=raw,\ file.children.1.file.filename=2.raw,\ file.children.1.node-name=2.raw,\