mbox

[PULL,00/14] Block patches

Message ID 20220425140821.957511-1-hreitz@redhat.com
State New
Headers show

Pull-request

https://gitlab.com/hreitz/qemu.git tags/pull-block-2022-04-25

Message

Hanna Czenczek April 25, 2022, 2:08 p.m. UTC
The following changes since commit 754f756cc4c6d9d14b7230c62b5bb20f9d655888:

  Merge tag 'pull-target-arm-20220422-1' of https://git.linaro.org/people/pmaydell/qemu-arm into staging (2022-04-22 08:03:18 -0700)

are available in the Git repository at:

  https://gitlab.com/hreitz/qemu.git tags/pull-block-2022-04-25

for you to fetch changes up to 348a0740afc5b313599533eb69bbb2b95d2f1bba:

  iotests/108: Fix when missing user_allow_other (2022-04-25 14:46:45 +0200)

----------------------------------------------------------------
Block patches:
- New @force parameter for blockdev-change-medium
- Improvements to the iotests to help with debugging
- Fix iotest 108 on systems without user_allow_other in fuse.conf

----------------------------------------------------------------
Denis V. Lunev (1):
  block: add 'force' parameter to 'blockdev-change-medium' command

Hanna Reitz (1):
  iotests/108: Fix when missing user_allow_other

John Snow (12):
  iotests: replace calls to log(qemu_io(...)) with qemu_io_log()
  iotests/163: Fix broken qemu-io invocation
  iotests: Don't check qemu_io() output for specific error strings
  iotests/040: Don't check image pattern on zero-length image
  iotests/040: Fix TestCommitWithFilters test
  iotests: create generic qemu_tool() function
  iotests: rebase qemu_io() on top of qemu_tool()
  iotests/migration-permissions: use assertRaises() for qemu_io()
    negative test
  iotests/image-fleecing: switch to qemu_io()
  iotests: remove qemu_io_pipe_and_status()
  iotests: remove qemu_io_silent() and qemu_io_silent_check().
  iotests: make qemu_io_log() check return codes by default

 qapi/block.json                               |  6 ++
 block/qapi-sysemu.c                           |  3 +-
 monitor/hmp-cmds.c                            |  4 +-
 hmp-commands.hx                               | 11 ++-
 tests/qemu-iotests/030                        | 85 +++++++++++--------
 tests/qemu-iotests/040                        | 53 +++++++-----
 tests/qemu-iotests/056                        |  2 +-
 tests/qemu-iotests/108                        |  2 +-
 tests/qemu-iotests/149                        |  6 +-
 tests/qemu-iotests/163                        |  5 +-
 tests/qemu-iotests/205                        |  4 +-
 tests/qemu-iotests/216                        | 12 +--
 tests/qemu-iotests/218                        |  5 +-
 tests/qemu-iotests/224                        |  4 +-
 tests/qemu-iotests/242                        |  6 +-
 tests/qemu-iotests/245                        | 17 ++--
 tests/qemu-iotests/255                        |  4 +-
 tests/qemu-iotests/258                        | 11 ++-
 tests/qemu-iotests/298                        | 17 ++--
 tests/qemu-iotests/303                        |  4 +-
 tests/qemu-iotests/310                        | 22 ++---
 tests/qemu-iotests/iotests.py                 | 69 ++++++++-------
 tests/qemu-iotests/tests/image-fleecing       | 30 ++++---
 .../qemu-iotests/tests/migration-permissions  | 28 +++---
 .../tests/mirror-ready-cancel-error           |  2 +-
 .../qemu-iotests/tests/nbd-reconnect-on-open  |  2 +-
 .../qemu-iotests/tests/stream-error-on-reset  |  4 +-
 ui/cocoa.m                                    |  1 +
 28 files changed, 231 insertions(+), 188 deletions(-)

Comments

Richard Henderson April 25, 2022, 11:32 p.m. UTC | #1
On 4/25/22 07:08, Hanna Reitz wrote:
> The following changes since commit 754f756cc4c6d9d14b7230c62b5bb20f9d655888:
> 
>    Merge tag 'pull-target-arm-20220422-1' of https://git.linaro.org/people/pmaydell/qemu-arm into staging (2022-04-22 08:03:18 -0700)
> 
> are available in the Git repository at:
> 
>    https://gitlab.com/hreitz/qemu.git tags/pull-block-2022-04-25
> 
> for you to fetch changes up to 348a0740afc5b313599533eb69bbb2b95d2f1bba:
> 
>    iotests/108: Fix when missing user_allow_other (2022-04-25 14:46:45 +0200)
> 
> ----------------------------------------------------------------
> Block patches:
> - New @force parameter for blockdev-change-medium
> - Improvements to the iotests to help with debugging
> - Fix iotest 108 on systems without user_allow_other in fuse.conf

Applied, thanks.  Please update https://wiki.qemu.org/ChangeLog/7.1 as appropriate.


r~


> 
> ----------------------------------------------------------------
> Denis V. Lunev (1):
>    block: add 'force' parameter to 'blockdev-change-medium' command
> 
> Hanna Reitz (1):
>    iotests/108: Fix when missing user_allow_other
> 
> John Snow (12):
>    iotests: replace calls to log(qemu_io(...)) with qemu_io_log()
>    iotests/163: Fix broken qemu-io invocation
>    iotests: Don't check qemu_io() output for specific error strings
>    iotests/040: Don't check image pattern on zero-length image
>    iotests/040: Fix TestCommitWithFilters test
>    iotests: create generic qemu_tool() function
>    iotests: rebase qemu_io() on top of qemu_tool()
>    iotests/migration-permissions: use assertRaises() for qemu_io()
>      negative test
>    iotests/image-fleecing: switch to qemu_io()
>    iotests: remove qemu_io_pipe_and_status()
>    iotests: remove qemu_io_silent() and qemu_io_silent_check().
>    iotests: make qemu_io_log() check return codes by default
> 
>   qapi/block.json                               |  6 ++
>   block/qapi-sysemu.c                           |  3 +-
>   monitor/hmp-cmds.c                            |  4 +-
>   hmp-commands.hx                               | 11 ++-
>   tests/qemu-iotests/030                        | 85 +++++++++++--------
>   tests/qemu-iotests/040                        | 53 +++++++-----
>   tests/qemu-iotests/056                        |  2 +-
>   tests/qemu-iotests/108                        |  2 +-
>   tests/qemu-iotests/149                        |  6 +-
>   tests/qemu-iotests/163                        |  5 +-
>   tests/qemu-iotests/205                        |  4 +-
>   tests/qemu-iotests/216                        | 12 +--
>   tests/qemu-iotests/218                        |  5 +-
>   tests/qemu-iotests/224                        |  4 +-
>   tests/qemu-iotests/242                        |  6 +-
>   tests/qemu-iotests/245                        | 17 ++--
>   tests/qemu-iotests/255                        |  4 +-
>   tests/qemu-iotests/258                        | 11 ++-
>   tests/qemu-iotests/298                        | 17 ++--
>   tests/qemu-iotests/303                        |  4 +-
>   tests/qemu-iotests/310                        | 22 ++---
>   tests/qemu-iotests/iotests.py                 | 69 ++++++++-------
>   tests/qemu-iotests/tests/image-fleecing       | 30 ++++---
>   .../qemu-iotests/tests/migration-permissions  | 28 +++---
>   .../tests/mirror-ready-cancel-error           |  2 +-
>   .../qemu-iotests/tests/nbd-reconnect-on-open  |  2 +-
>   .../qemu-iotests/tests/stream-error-on-reset  |  4 +-
>   ui/cocoa.m                                    |  1 +
>   28 files changed, 231 insertions(+), 188 deletions(-)
>