Re: [Qemu-devel] [RFC V3 9/9] quorum: Add quorum mechanism.
On Tue, Aug 14, 2012 at 04:14:11PM +0200, Benoît Canet wrote: > +#define QUORUM_FREE_QIOV_ITEMS(qlist) do { \ > +QLIST_FOREACH_SAFE(item, qlist, next, next_item) { \ > +QLIST_REMOVE(item, next); \ > +g_free(item);
[Qemu-devel] [RFC V3 9/9] quorum: Add quorum mechanism.
Signed-off-by: Benoit Canet --- block/quorum.c | 211 +++- 1 file changed, 210 insertions(+), 1 deletion(-) diff --git a/block/quorum.c b/block/quorum.c index 8b449fb..24c8298 100644 --- a/block/quorum.c +++ b/block/quorum.c @@ -14,6 +14,20 @@