[Qemu-devel] [PULL for 2.10-rc3 0/7] NBD changes for 2.10-rc3

Eric Blake posted 7 patches 6 years, 8 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20170815150907.21495-1-eblake@redhat.com
Test FreeBSD passed
Test checkpatch passed
Test docker passed
Test s390x passed
block/nbd-client.h           |  1 +
block/block-backend.c        | 41 ++++++++++++++++++++++++++++
block/nbd-client.c           | 17 +++++++++---
nbd/common.c                 |  2 +-
nbd/server.c                 | 20 +++++++-------
stubs/change-state-handler.c | 14 ++++++++++
stubs/Makefile.objs          |  1 +
tests/qemu-iotests/093       |  4 +++
tests/qemu-iotests/192       | 63 ++++++++++++++++++++++++++++++++++++++++++++
tests/qemu-iotests/192.out   |  7 +++++
tests/qemu-iotests/group     |  1 +
11 files changed, 157 insertions(+), 14 deletions(-)
create mode 100644 stubs/change-state-handler.c
create mode 100755 tests/qemu-iotests/192
create mode 100644 tests/qemu-iotests/192.out
[Qemu-devel] [PULL for 2.10-rc3 0/7] NBD changes for 2.10-rc3
Posted by Eric Blake 6 years, 8 months ago
The following changes since commit 47025a0193f1f910300adfa443305ccf8482ef87:

  qxl: call qemu_spice_display_init_common for secondary devices (2017-08-15 15:04:51 +0100)

are available in the git repository at:

  git://repo.or.cz/qemu/ericb.git tags/pull-nbd-2017-08-15

for you to fetch changes up to 72b6ffc76653214b69a94a7b1643ff80df134486:

  nbd-client: Fix regression when server sends garbage (2017-08-15 10:03:28 -0500)

----------------------------------------------------------------
nbd patches for 2017-08-15

- Eric Blake: nbd: Fix trace message for disconnect
- Stefan Hajnoczi: qemu-iotests: step clock after each test iteration
- Fam Zheng: 0/4 block: Fix non-shared storage migration
- Eric Blake: nbd-client: Fix regression when server sends garbage

----------------------------------------------------------------
Eric Blake (2):
      nbd: Fix trace message for disconnect
      nbd-client: Fix regression when server sends garbage

Fam Zheng (3):
      stubs: Add vm state change handler stubs
      block-backend: Defer shared_perm tightening migration completion
      iotests: Add non-shared storage migration case 192

Kevin Wolf (1):
      nbd: Fix order of bdrv_set_perm and bdrv_invalidate_cache

Stefan Hajnoczi (1):
      qemu-iotests: step clock after each test iteration

 block/nbd-client.h           |  1 +
 block/block-backend.c        | 41 ++++++++++++++++++++++++++++
 block/nbd-client.c           | 17 +++++++++---
 nbd/common.c                 |  2 +-
 nbd/server.c                 | 20 +++++++-------
 stubs/change-state-handler.c | 14 ++++++++++
 stubs/Makefile.objs          |  1 +
 tests/qemu-iotests/093       |  4 +++
 tests/qemu-iotests/192       | 63 ++++++++++++++++++++++++++++++++++++++++++++
 tests/qemu-iotests/192.out   |  7 +++++
 tests/qemu-iotests/group     |  1 +
 11 files changed, 157 insertions(+), 14 deletions(-)
 create mode 100644 stubs/change-state-handler.c
 create mode 100755 tests/qemu-iotests/192
 create mode 100644 tests/qemu-iotests/192.out

-- 
2.13.5


Re: [Qemu-devel] [PULL for 2.10-rc3 0/7] NBD changes for 2.10-rc3
Posted by Peter Maydell 6 years, 8 months ago
On 15 August 2017 at 16:09, Eric Blake <eblake@redhat.com> wrote:
> The following changes since commit 47025a0193f1f910300adfa443305ccf8482ef87:
>
>   qxl: call qemu_spice_display_init_common for secondary devices (2017-08-15 15:04:51 +0100)
>
> are available in the git repository at:
>
>   git://repo.or.cz/qemu/ericb.git tags/pull-nbd-2017-08-15
>
> for you to fetch changes up to 72b6ffc76653214b69a94a7b1643ff80df134486:
>
>   nbd-client: Fix regression when server sends garbage (2017-08-15 10:03:28 -0500)
>
> ----------------------------------------------------------------
> nbd patches for 2017-08-15
>
> - Eric Blake: nbd: Fix trace message for disconnect
> - Stefan Hajnoczi: qemu-iotests: step clock after each test iteration
> - Fam Zheng: 0/4 block: Fix non-shared storage migration
> - Eric Blake: nbd-client: Fix regression when server sends garbage
>
> ----------------------------------------------------------------
> Eric Blake (2):
>       nbd: Fix trace message for disconnect
>       nbd-client: Fix regression when server sends garbage
>
> Fam Zheng (3):
>       stubs: Add vm state change handler stubs
>       block-backend: Defer shared_perm tightening migration completion
>       iotests: Add non-shared storage migration case 192
>
> Kevin Wolf (1):
>       nbd: Fix order of bdrv_set_perm and bdrv_invalidate_cache
>
> Stefan Hajnoczi (1):
>       qemu-iotests: step clock after each test iteration

Applied, thanks.

-- PMM