All of lore.kernel.org
 help / color / mirror / Atom feed
From: Anthony Liguori <anthony@codemonkey.ws>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PULL 00/26] nbd refactoring, fully asynchronous operation, flushing, fixes
Date: Tue, 27 Dec 2011 10:36:16 -0600	[thread overview]
Message-ID: <4EF9F400.7000101@codemonkey.ws> (raw)
In-Reply-To: <1324653990-20074-1-git-send-email-pbonzini@redhat.com>

On 12/23/2011 09:26 AM, Paolo Bonzini wrote:
> Anthony,
>
> the following changes since commit 3799ce4ab64f578eb818689a276e4f0c73d01fb5:
>
>    sd: Remember to reset .expecting_acmd on reset. (2011-12-21 05:04:21 +0100)
>
> are available in the git repository at:
>    git://github.com/bonzini/qemu.git nbd-for-anthony

Pulled.  Thanks.

Regards,

Anthony Liguori

>
> Thanks,
>
> Paolo
>
> Chunyan Liu (1):
>    Update ioctl order in nbd_init() to detect EBUSY
>
> Paolo Bonzini (25):
>    add qemu_send_full and qemu_recv_full
>    sheepdog: move coroutine send/recv function to generic code
>    nbd: switch to asynchronous operation
>    nbd: split requests
>    nbd: allow multiple in-flight requests
>    nbd: fix error handling in the server
>    nbd: add support for NBD_CMD_FLAG_FUA
>    nbd: add support for NBD_CMD_FLUSH
>    nbd: add support for NBD_CMD_TRIM
>    qemu-nbd: remove offset argument to nbd_trip
>    qemu-nbd: remove data_size argument to nbd_trip
>    move corking functions to osdep.c
>    qemu-nbd: simplify nbd_trip
>    qemu-nbd: introduce nbd_do_send_reply
>    qemu-nbd: more robust handling of invalid requests
>    qemu-nbd: introduce nbd_do_receive_request
>    qemu-nbd: introduce NBDExport
>    qemu-nbd: introduce NBDRequest
>    link the main loop and its dependencies into the tools
>    qemu-nbd: use common main loop
>    qemu-nbd: move client handling to nbd.c
>    qemu-nbd: add client pointer to NBDRequest
>    qemu-nbd: asynchronous operation
>    qemu-nbd: throttle requests
>    nbd: add myself as maintainer
>
>   MAINTAINERS         |    7 +
>   Makefile            |    5 +-
>   Makefile.objs       |    2 +-
>   block/nbd.c         |  319 ++++++++++++++++++++++++++++++-------
>   block/sheepdog.c    |  250 +++--------------------------
>   cutils.c            |  111 +++++++++++++
>   main-loop.h         |    6 +
>   nbd.c               |  439 ++++++++++++++++++++++++++++++++++++++++-----------
>   nbd.h               |   14 ++-
>   os-posix.c          |   42 -----
>   os-win32.c          |    5 -
>   osdep.c             |   76 +++++++++
>   oslib-posix.c       |   43 +++++
>   oslib-win32.c       |    5 +
>   qemu-common.h       |   34 ++++
>   qemu-coroutine-io.c |   96 +++++++++++
>   qemu-nbd.c          |  120 +++++---------
>   qemu-tool.c         |   42 +++---
>   qemu_socket.h       |    1 +
>   19 files changed, 1087 insertions(+), 530 deletions(-)
>   create mode 100644 qemu-coroutine-io.c
>

      parent reply	other threads:[~2011-12-27 16:36 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-12-23 15:26 [Qemu-devel] [PULL 00/26] nbd refactoring, fully asynchronous operation, flushing, fixes Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 01/26] add qemu_send_full and qemu_recv_full Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 02/26] sheepdog: move coroutine send/recv function to generic code Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 03/26] nbd: switch to asynchronous operation Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 04/26] nbd: split requests Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 05/26] nbd: allow multiple in-flight requests Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 06/26] nbd: fix error handling in the server Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 07/26] nbd: add support for NBD_CMD_FLAG_FUA Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 08/26] nbd: add support for NBD_CMD_FLUSH Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 09/26] nbd: add support for NBD_CMD_TRIM Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 10/26] Update ioctl order in nbd_init() to detect EBUSY Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 11/26] qemu-nbd: remove offset argument to nbd_trip Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 12/26] qemu-nbd: remove data_size " Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 13/26] move corking functions to osdep.c Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 14/26] qemu-nbd: simplify nbd_trip Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 15/26] qemu-nbd: introduce nbd_do_send_reply Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 16/26] qemu-nbd: more robust handling of invalid requests Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 17/26] qemu-nbd: introduce nbd_do_receive_request Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 18/26] qemu-nbd: introduce NBDExport Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 19/26] qemu-nbd: introduce NBDRequest Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 20/26] link the main loop and its dependencies into the tools Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 21/26] qemu-nbd: use common main loop Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 22/26] qemu-nbd: move client handling to nbd.c Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 23/26] qemu-nbd: add client pointer to NBDRequest Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 24/26] qemu-nbd: asynchronous operation Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 25/26] qemu-nbd: throttle requests Paolo Bonzini
2011-12-23 15:26 ` [Qemu-devel] [PATCH 26/26] nbd: add myself as maintainer Paolo Bonzini
2011-12-27 16:36 ` Anthony Liguori [this message]

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=4EF9F400.7000101@codemonkey.ws \
    --to=anthony@codemonkey.ws \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.