[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 00/15] Block layer patches
From: |
Kevin Wolf |
Subject: |
[PULL 00/15] Block layer patches |
Date: |
Mon, 18 Mar 2024 14:01:03 +0100 |
The following changes since commit ba49d760eb04630e7b15f423ebecf6c871b8f77b:
Merge tag 'pull-maintainer-final-130324-1' of https://gitlab.com/stsquad/qemu
into staging (2024-03-13 15:12:14 +0000)
are available in the Git repository at:
https://repo.or.cz/qemu/kevin.git tags/for-upstream
for you to fetch changes up to 39a94d7c34ce9d222fa9c0c99a14e20a567456d7:
iotests: adapt to output change for recently introduced 'detached header'
field (2024-03-18 13:33:54 +0100)
----------------------------------------------------------------
Block layer patches
- mirror: Fix deadlock
- nbd/server: Fix race in draining the export
- qemu-img snapshot: Fix formatting with large values
- Fix blockdev-snapshot-sync error reporting for no medium
- iotests fixes
----------------------------------------------------------------
Abhiram Tilak (1):
qemu-img: Fix Column Width and Improve Formatting in snapshot list
Fiona Ebner (1):
iotests: adapt to output change for recently introduced 'detached header'
field
Kevin Wolf (3):
mirror: Don't call job_pause_point() under graph lock
nbd/server: Fix race in draining the export
iotests: Add test for reset/AioContext switches with NBD exports
Markus Armbruster (1):
blockdev: Fix blockdev-snapshot-sync error reporting for no medium
Thomas Huth (9):
tests/qemu-iotests: Fix test 033 for running with non-file protocols
tests/qemu-iotests: Restrict test 066 to the 'file' protocol
tests/qemu-iotests: Restrict test 114 to the 'file' protocol
tests/qemu-iotests: Restrict test 130 to the 'file' protocol
tests/qemu-iotests: Restrict test 134 and 158 to the 'file' protocol
tests/qemu-iotests: Restrict test 156 to the 'file' protocol
tests/qemu-iotests: Restrict tests that use --image-opts to the 'file'
protocol
tests/qemu-iotests: Fix some tests that use --image-opts for other
protocols
tests/qemu-iotests: Restrict tests using "--blockdev file" to the file
protocol
include/qemu/job.h | 2 +-
block/mirror.c | 10 ++--
block/qapi.c | 10 ++--
blockdev.c | 3 +-
nbd/server.c | 15 +++--
tests/qemu-iotests/033 | 6 +-
tests/qemu-iotests/066 | 2 +-
tests/qemu-iotests/114 | 2 +-
tests/qemu-iotests/130 | 2 +-
tests/qemu-iotests/134 | 2 +-
tests/qemu-iotests/156 | 2 +-
tests/qemu-iotests/158 | 2 +-
tests/qemu-iotests/176.out | 16 +++---
tests/qemu-iotests/188 | 2 +-
tests/qemu-iotests/189 | 2 +-
tests/qemu-iotests/198 | 2 +-
tests/qemu-iotests/198.out | 2 +
tests/qemu-iotests/206.out | 1 +
tests/qemu-iotests/261 | 4 +-
tests/qemu-iotests/263 | 6 +-
tests/qemu-iotests/267.out | 48 ++++++++--------
tests/qemu-iotests/284 | 7 +--
tests/qemu-iotests/286 | 3 +-
tests/qemu-iotests/286.out | 2 +-
.../tests/detect-zeroes-registered-buf | 4 +-
tests/qemu-iotests/tests/iothreads-nbd-export | 66 ++++++++++++++++++++++
tests/qemu-iotests/tests/iothreads-nbd-export.out | 19 +++++++
tests/qemu-iotests/tests/qcow2-internal-snapshots | 2 +-
.../tests/qcow2-internal-snapshots.out | 14 ++---
tests/qemu-iotests/tests/qsd-jobs | 2 +-
30 files changed, 178 insertions(+), 82 deletions(-)
create mode 100755 tests/qemu-iotests/tests/iothreads-nbd-export
create mode 100644 tests/qemu-iotests/tests/iothreads-nbd-export.out
- [PULL 00/15] Block layer patches,
Kevin Wolf <=
- [PULL 01/15] mirror: Don't call job_pause_point() under graph lock, Kevin Wolf, 2024/03/18
- [PULL 07/15] tests/qemu-iotests: Restrict test 066 to the 'file' protocol, Kevin Wolf, 2024/03/18
- [PULL 03/15] iotests: Add test for reset/AioContext switches with NBD exports, Kevin Wolf, 2024/03/18
- [PULL 09/15] tests/qemu-iotests: Restrict test 130 to the 'file' protocol, Kevin Wolf, 2024/03/18
- [PULL 08/15] tests/qemu-iotests: Restrict test 114 to the 'file' protocol, Kevin Wolf, 2024/03/18
- [PULL 04/15] blockdev: Fix blockdev-snapshot-sync error reporting for no medium, Kevin Wolf, 2024/03/18
- [PULL 02/15] nbd/server: Fix race in draining the export, Kevin Wolf, 2024/03/18
- [PULL 12/15] tests/qemu-iotests: Restrict tests that use --image-opts to the 'file' protocol, Kevin Wolf, 2024/03/18
- [PULL 13/15] tests/qemu-iotests: Fix some tests that use --image-opts for other protocols, Kevin Wolf, 2024/03/18
- [PULL 05/15] qemu-img: Fix Column Width and Improve Formatting in snapshot list, Kevin Wolf, 2024/03/18