[Qemu-devel] [PULL v2 00/17] NBD patches for 2018-03-13 (2.12 softfreeze)

Eric Blake posted 17 patches 6 years, 1 month ago
Only 1 patches received!
block/nbd-client.h            |   6 +
include/block/nbd.h           |   3 +
block/block-backend.c         |  63 ++++
block/nbd-client.c            | 154 ++++++++-
block/nbd.c                   |   3 +
nbd/client.c                  | 117 +++++++
nbd/server.c                  | 725 ++++++++++++++++++++++++++++++++----------
block/trace-events            |   2 +
tests/qemu-iotests/033        |   1 +
tests/qemu-iotests/208        |  55 ++++
tests/qemu-iotests/208.out    |   9 +
tests/qemu-iotests/209        |  34 ++
tests/qemu-iotests/209.out    |   2 +
tests/qemu-iotests/group      |   2 +
tests/qemu-iotests/iotests.py |  37 ++-
15 files changed, 1047 insertions(+), 166 deletions(-)
create mode 100755 tests/qemu-iotests/208
create mode 100644 tests/qemu-iotests/208.out
create mode 100755 tests/qemu-iotests/209
create mode 100644 tests/qemu-iotests/209.out
[Qemu-devel] [PULL v2 00/17] NBD patches for 2018-03-13 (2.12 softfreeze)
Posted by Eric Blake 6 years, 1 month ago
The following changes since commit 026aaf47c02b79036feb830206cfebb2a726510d:

  Merge remote-tracking branch 'remotes/ehabkost/tags/python-next-pull-request' into staging (2018-03-13 16:26:44 +0000)

are available in the Git repository at:

  git://repo.or.cz/qemu/ericb.git tags/pull-nbd-2018-03-13-v2

for you to fetch changes up to 65374c1aa6263a4e2b566d15a9fd9b2105954a1b:

  iotests: new test 209 for NBD BLOCK_STATUS (2018-03-13 15:44:09 -0500)

In v2: fix uninitialized variable warning [patchew]
(only mailing patches that changed since v1)

----------------------------------------------------------------
nbd patches for 2018-03-13

- Eric Blake: iotests: Fix stuck NBD process on 33
- Vladimir Sementsov-Ogievskiy: 0/5 nbd server fixing and refactoring before BLOCK_STATUS
- Eric Blake: nbd/server: Honor FUA request on NBD_CMD_TRIM
- Stefan Hajnoczi: 0/2 block: fix nbd-server-stop crash after blockdev-snapshot-sync
- Vladimir Sementsov-Ogievskiy: nbd block status base:allocation

----------------------------------------------------------------
Eric Blake (2):
      iotests: Fix stuck NBD process on 33
      nbd/server: Honor FUA request on NBD_CMD_TRIM

Stefan Hajnoczi (2):
      block: let blk_add/remove_aio_context_notifier() tolerate BDS changes
      iotests: add 208 nbd-server + blockdev-snapshot-sync test case

Vladimir Sementsov-Ogievskiy (13):
      nbd/server: move nbd_co_send_structured_error up
      nbd/server: fix sparse read
      nbd/server: fix: check client->closing before sending reply
      nbd/server: refactor nbd_trip: cmd_read and generic reply
      nbd/server: refactor nbd_trip: split out nbd_handle_request
      nbd/server: add nbd_opt_invalid helper
      nbd/server: add nbd_read_opt_name helper
      nbd: BLOCK_STATUS for standard get_block_status function: server part
      block/nbd-client: save first fatal error in nbd_iter_error
      nbd: BLOCK_STATUS for standard get_block_status function: client part
      iotests.py: tiny refactor: move system imports up
      iotests: add file_path helper
      iotests: new test 209 for NBD BLOCK_STATUS

 block/nbd-client.h            |   6 +
 include/block/nbd.h           |   3 +
 block/block-backend.c         |  63 ++++
 block/nbd-client.c            | 154 ++++++++-
 block/nbd.c                   |   3 +
 nbd/client.c                  | 117 +++++++
 nbd/server.c                  | 725 ++++++++++++++++++++++++++++++++----------
 block/trace-events            |   2 +
 tests/qemu-iotests/033        |   1 +
 tests/qemu-iotests/208        |  55 ++++
 tests/qemu-iotests/208.out    |   9 +
 tests/qemu-iotests/209        |  34 ++
 tests/qemu-iotests/209.out    |   2 +
 tests/qemu-iotests/group      |   2 +
 tests/qemu-iotests/iotests.py |  37 ++-
 15 files changed, 1047 insertions(+), 166 deletions(-)
 create mode 100755 tests/qemu-iotests/208
 create mode 100644 tests/qemu-iotests/208.out
 create mode 100755 tests/qemu-iotests/209
 create mode 100644 tests/qemu-iotests/209.out

-- 
2.14.3


Re: [Qemu-devel] [PULL v2 00/17] NBD patches for 2018-03-13 (2.12 softfreeze)
Posted by Peter Maydell 6 years, 1 month ago
On 13 March 2018 at 20:50, Eric Blake <eblake@redhat.com> wrote:
> The following changes since commit 026aaf47c02b79036feb830206cfebb2a726510d:
>
>   Merge remote-tracking branch 'remotes/ehabkost/tags/python-next-pull-request' into staging (2018-03-13 16:26:44 +0000)
>
> are available in the Git repository at:
>
>   git://repo.or.cz/qemu/ericb.git tags/pull-nbd-2018-03-13-v2
>
> for you to fetch changes up to 65374c1aa6263a4e2b566d15a9fd9b2105954a1b:
>
>   iotests: new test 209 for NBD BLOCK_STATUS (2018-03-13 15:44:09 -0500)
>
> In v2: fix uninitialized variable warning [patchew]
> (only mailing patches that changed since v1)
>
> ----------------------------------------------------------------
> nbd patches for 2018-03-13
>
> - Eric Blake: iotests: Fix stuck NBD process on 33
> - Vladimir Sementsov-Ogievskiy: 0/5 nbd server fixing and refactoring before BLOCK_STATUS
> - Eric Blake: nbd/server: Honor FUA request on NBD_CMD_TRIM
> - Stefan Hajnoczi: 0/2 block: fix nbd-server-stop crash after blockdev-snapshot-sync
> - Vladimir Sementsov-Ogievskiy: nbd block status base:allocation
>

Applied, thanks.

-- PMM