From: Eric Blake <eblake@redhat.com>
To: qemu-devel@nongnu.org
Cc: pbonzini@redhat.com, qemu-block@nongnu.org, mreitz@redhat.com
Subject: Re: [Qemu-devel] [PATCH v7 00/16] nbd: efficient write zeroes
Date: Tue, 25 Oct 2016 11:13:07 -0500 [thread overview]
Message-ID: <22d2991b-e577-de33-1aea-f3314877f784@redhat.com> (raw)
In-Reply-To: <1476469998-28592-1-git-send-email-eblake@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 3284 bytes --]
ping - I'd really like this in 2.8, since it missed 2.7, but soft freeze
is again approaching
On 10/14/2016 01:33 PM, Eric Blake wrote:
> Also available as a tag at:
> git fetch git://repo.or.cz/qemu/ericb.git nbd-zero-v7
>
> v5 was here, but missed 2.7 freeze:
> https://lists.gnu.org/archive/html/qemu-devel/2016-07/msg04053.html
>
> Since then, I've rebased the series, and the bulk of the changes
> were to use consistent NBDFoo CamelCase naming, as well as to
> improve the commit messages for questions raised on v5.
>
> v6 was here, with no human review yet:
> https://lists.gnu.org/archive/html/qemu-devel/2016-10/msg03048.html
>
> Since then, I addressed the buildbot complaints.
>
> 001/16:[----] [--] 'nbd: Add qemu-nbd -D for human-readable description'
> 002/16:[----] [--] 'nbd: Treat flags vs. command type as separate fields'
> 003/16:[----] [--] 'nbd: Rename NBDRequest to NBDRequestData'
> 004/16:[----] [--] 'nbd: Rename NbdClientSession to NBDClientSession'
> 005/16:[----] [--] 'nbd: Rename struct nbd_request and nbd_reply'
> 006/16:[----] [--] 'nbd: Share common reply-sending code in server'
> 007/16:[----] [--] 'nbd: Send message along with server NBD_REP_ERR errors'
> 008/16:[----] [--] 'nbd: Share common option-sending code in client'
> 009/16:[----] [--] 'nbd: Let server know when client gives up negotiation'
> 010/16:[----] [--] 'nbd: Let client skip portions of server reply'
> 011/16:[----] [--] 'nbd: Less allocation during NBD_OPT_LIST'
> 012/16:[----] [--] 'nbd: Support shorter handshake'
> 013/16:[down] 'nbd: Refactor conversion to errno to silence checkpatch'
> 014/16:[0012] [FC] 'nbd: Improve server handling of shutdown requests'
> 015/16:[----] [--] 'nbd: Implement NBD_CMD_WRITE_ZEROES on server'
> 016/16:[----] [--] 'nbd: Implement NBD_CMD_WRITE_ZEROES on client'
>
> Eric Blake (16):
> nbd: Add qemu-nbd -D for human-readable description
> nbd: Treat flags vs. command type as separate fields
> nbd: Rename NBDRequest to NBDRequestData
> nbd: Rename NbdClientSession to NBDClientSession
> nbd: Rename struct nbd_request and nbd_reply
> nbd: Share common reply-sending code in server
> nbd: Send message along with server NBD_REP_ERR errors
> nbd: Share common option-sending code in client
> nbd: Let server know when client gives up negotiation
> nbd: Let client skip portions of server reply
> nbd: Less allocation during NBD_OPT_LIST
> nbd: Support shorter handshake
> nbd: Refactor conversion to errno to silence checkpatch
> nbd: Improve server handling of shutdown requests
> nbd: Implement NBD_CMD_WRITE_ZEROES on server
> nbd: Implement NBD_CMD_WRITE_ZEROES on client
>
> block/nbd-client.h | 10 +-
> include/block/nbd.h | 73 ++++++--
> nbd/nbd-internal.h | 12 +-
> block/nbd-client.c | 96 ++++++----
> block/nbd.c | 8 +-
> nbd/client.c | 510 ++++++++++++++++++++++++++++------------------------
> nbd/server.c | 296 ++++++++++++++++++++----------
> qemu-nbd.c | 12 +-
> qemu-nbd.texi | 5 +-
> 9 files changed, 638 insertions(+), 384 deletions(-)
>
--
Eric Blake eblake redhat com +1-919-301-3266
Libvirt virtualization library http://libvirt.org
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 604 bytes --]
next prev parent reply other threads:[~2016-10-25 16:13 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-14 18:33 [Qemu-devel] [PATCH v7 00/16] nbd: efficient write zeroes Eric Blake
2016-10-14 18:33 ` [Qemu-devel] [PATCH v7 01/16] nbd: Add qemu-nbd -D for human-readable description Eric Blake
2016-10-14 18:33 ` [Qemu-devel] [PATCH v7 02/16] nbd: Treat flags vs. command type as separate fields Eric Blake
2016-10-14 18:33 ` [Qemu-devel] [PATCH v7 03/16] nbd: Rename NBDRequest to NBDRequestData Eric Blake
2016-10-14 18:33 ` [Qemu-devel] [PATCH v7 04/16] nbd: Rename NbdClientSession to NBDClientSession Eric Blake
2016-10-14 18:33 ` [Qemu-devel] [PATCH v7 05/16] nbd: Rename struct nbd_request and nbd_reply Eric Blake
2016-10-14 18:33 ` [Qemu-devel] [PATCH v7 06/16] nbd: Share common reply-sending code in server Eric Blake
2016-10-14 18:33 ` [Qemu-devel] [PATCH v7 07/16] nbd: Send message along with server NBD_REP_ERR errors Eric Blake
2016-10-14 18:33 ` [Qemu-devel] [PATCH v7 08/16] nbd: Share common option-sending code in client Eric Blake
2016-10-14 18:33 ` [Qemu-devel] [PATCH v7 09/16] nbd: Let server know when client gives up negotiation Eric Blake
2016-10-14 18:33 ` [Qemu-devel] [PATCH v7 10/16] nbd: Let client skip portions of server reply Eric Blake
2016-10-14 18:33 ` [Qemu-devel] [PATCH v7 11/16] nbd: Less allocation during NBD_OPT_LIST Eric Blake
2016-10-14 18:33 ` [Qemu-devel] [PATCH v7 12/16] nbd: Support shorter handshake Eric Blake
2016-10-14 18:33 ` [Qemu-devel] [PATCH v7 13/16] nbd: Refactor conversion to errno to silence checkpatch Eric Blake
2016-10-14 18:33 ` [Qemu-devel] [PATCH v7 14/16] nbd: Improve server handling of shutdown requests Eric Blake
2016-10-14 18:33 ` [Qemu-devel] [PATCH v7 15/16] nbd: Implement NBD_CMD_WRITE_ZEROES on server Eric Blake
2016-10-14 18:33 ` [Qemu-devel] [PATCH v7 16/16] nbd: Implement NBD_CMD_WRITE_ZEROES on client Eric Blake
2016-10-25 16:13 ` Eric Blake [this message]
2016-10-27 12:50 ` [Qemu-devel] [PATCH v7 00/16] nbd: efficient write zeroes Paolo Bonzini
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=22d2991b-e577-de33-1aea-f3314877f784@redhat.com \
--to=eblake@redhat.com \
--cc=mreitz@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-block@nongnu.org \
--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 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).