qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v7 00/16] nbd: efficient write zeroes
@ 2016-10-14 18:33 Eric Blake
  2016-10-14 18:33 ` [Qemu-devel] [PATCH v7 01/16] nbd: Add qemu-nbd -D for human-readable description Eric Blake
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: Eric Blake @ 2016-10-14 18:33 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-block, pbonzini, mreitz

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(-)

-- 
2.7.4

^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2016-10-27 12:51 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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 ` [Qemu-devel] [PATCH v7 00/16] nbd: efficient write zeroes Eric Blake
2016-10-27 12:50 ` Paolo Bonzini

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).