qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Benoît Canet" <benoit.canet@irqsave.net>
To: Jeff Cody <jcody@redhat.com>
Cc: "Benoît Canet" <benoit.canet@irqsave.net>,
	kwolf@redhat.com, qemu-devel@nongnu.org, stefanha@redhat.com,
	mreitz@redhat.com
Subject: Re: [Qemu-devel] [PATCH V14 00/13] Quorum block filter
Date: Mon, 3 Feb 2014 23:14:32 +0100	[thread overview]
Message-ID: <20140203221432.GA25860@irqsave.net> (raw)
In-Reply-To: <20140203211000.GA28264@localhost.localdomain>

Le Monday 03 Feb 2014 à 16:10:00 (-0500), Jeff Cody a écrit :
> On Mon, Feb 03, 2014 at 08:11:39PM +0100, Benoît Canet wrote:
> > v14:
> >    Use quorum_report_failure in early failure test suggested by Max [Benoît]
> > 
> > v13:
> >     update copyright date and company legal status
> > 
> > Benoît Canet (13):
> >   quorum: Create quorum.c, add QuorumSingleAIOCB and QuorumAIOCB.
> >   quorum: Create BDRVQuorumState and BlkDriver and do init.
> >   quorum: Add quorum_aio_writev and its dependencies.
> >   blkverify: Extract qemu_iovec_clone() and qemu_iovec_compare() from
> >     blkverify.
> >   quorum: Add quorum_aio_readv.
> >   quorum: Add quorum mechanism.
> >   quorum: Add quorum_getlength().
> >   quorum: Add quorum_invalidate_cache().
> >   quorum: Add quorum_co_get_block_status.
> >   quorum: Add quorum_co_flush().
> >   quorum: Implement recursive .bdrv_recurse_is_first_non_filter in
> >     quorum.
> >   quorum: Add quorum_open() and quorum_close().
> >   quorum: Add unit test.
> >
> 
> Most of the patches in this series are lacking meaningful commit
> messages - via this series, quorum.c is created, with not much more
> than 1-line commit logs.  Could you please add more details to the
> commit messages?

Ok, I'll do a v16 tomorow.

Best regards

Benoît

> 
> Thanks,
> Jeff
> 
> 
> >  block/Makefile.objs        |   1 +
> >  block/blkverify.c          | 108 +-----
> >  block/quorum.c             | 915 +++++++++++++++++++++++++++++++++++++++++++++
> >  configure                  |  36 ++
> >  docs/qmp/qmp-events.txt    |  33 ++
> >  include/monitor/monitor.h  |   2 +
> >  include/qemu-common.h      |   2 +
> >  monitor.c                  |   2 +
> >  qapi-schema.json           |  21 +-
> >  tests/qemu-iotests/075     |  95 +++++
> >  tests/qemu-iotests/075.out |  34 ++
> >  tests/qemu-iotests/group   |   1 +
> >  util/iov.c                 | 103 +++++
> >  13 files changed, 1246 insertions(+), 107 deletions(-)
> >  create mode 100644 block/quorum.c
> >  create mode 100755 tests/qemu-iotests/075
> >  create mode 100644 tests/qemu-iotests/075.out
> > 
> > -- 
> > 1.8.3.2
> > 
> > 
> 

  reply	other threads:[~2014-02-03 22:14 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-02-03 19:11 [Qemu-devel] [PATCH V14 00/13] Quorum block filter Benoît Canet
2014-02-03 19:11 ` [Qemu-devel] [PATCH V14 01/13] quorum: Create quorum.c, add QuorumSingleAIOCB and QuorumAIOCB Benoît Canet
2014-02-03 19:11 ` [Qemu-devel] [PATCH V14 02/13] quorum: Create BDRVQuorumState and BlkDriver and do init Benoît Canet
2014-02-03 19:11 ` [Qemu-devel] [PATCH V14 03/13] quorum: Add quorum_aio_writev and its dependencies Benoît Canet
2014-02-03 19:11 ` [Qemu-devel] [PATCH V14 04/13] blkverify: Extract qemu_iovec_clone() and qemu_iovec_compare() from blkverify Benoît Canet
2014-02-03 19:11 ` [Qemu-devel] [PATCH V14 05/13] quorum: Add quorum_aio_readv Benoît Canet
2014-02-03 19:11 ` [Qemu-devel] [PATCH V14 06/13] quorum: Add quorum mechanism Benoît Canet
2014-02-03 19:42   ` Max Reitz
2014-02-03 19:11 ` [Qemu-devel] [PATCH V14 07/13] quorum: Add quorum_getlength() Benoît Canet
2014-02-03 19:11 ` [Qemu-devel] [PATCH V14 08/13] quorum: Add quorum_invalidate_cache() Benoît Canet
2014-02-03 19:11 ` [Qemu-devel] [PATCH V14 09/13] quorum: Add quorum_co_get_block_status Benoît Canet
2014-02-03 19:46   ` Max Reitz
2014-02-03 19:11 ` [Qemu-devel] [PATCH V14 10/13] quorum: Add quorum_co_flush() Benoît Canet
2014-02-03 19:51   ` Max Reitz
2014-02-03 19:11 ` [Qemu-devel] [PATCH V14 11/13] quorum: Implement recursive .bdrv_recurse_is_first_non_filter in quorum Benoît Canet
2014-02-03 19:11 ` [Qemu-devel] [PATCH V14 12/13] quorum: Add quorum_open() and quorum_close() Benoît Canet
2014-02-03 20:22   ` Max Reitz
2014-02-03 21:19     ` Benoît Canet
2014-02-03 19:11 ` [Qemu-devel] [PATCH V14 13/13] quorum: Add unit test Benoît Canet
2014-02-03 20:23   ` Max Reitz
2014-02-03 21:10 ` [Qemu-devel] [PATCH V14 00/13] Quorum block filter Jeff Cody
2014-02-03 22:14   ` Benoît Canet [this message]
2014-02-04 10:35 ` Kevin Wolf
2014-02-04 21:54   ` Benoît Canet

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140203221432.GA25860@irqsave.net \
    --to=benoit.canet@irqsave.net \
    --cc=jcody@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=mreitz@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).