qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/36] Block layer patches
@ 2020-02-18 14:06 Kevin Wolf
  2020-02-18 14:06 ` [PULL 01/36] mirror: Store MirrorOp.co for debuggability Kevin Wolf
                   ` (36 more replies)
  0 siblings, 37 replies; 38+ messages in thread
From: Kevin Wolf @ 2020-02-18 14:06 UTC (permalink / raw)
  To: qemu-block; +Cc: kwolf, peter.maydell, qemu-devel

The following changes since commit 6c599282f8ab382fe59f03a6cae755b89561a7b3:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-monitor-2020-02-15-v2' into staging (2020-02-17 13:32:25 +0000)

are available in the Git repository at:

  git://repo.or.cz/qemu/kevin.git tags/for-upstream

for you to fetch changes up to c45a88f4429d7a8f384b75f3fd3fed5138a6edca:

  iotests: Check that @replaces can replace filters (2020-02-18 14:52:16 +0100)

----------------------------------------------------------------
Block layer patches:

- Fix check_to_replace_node()
- commit: Expose on-error option in QMP
- qcow2: Fix qcow2_alloc_cluster_abort() for external data file
- mirror: Fix deadlock
- vvfat: Fix segfault while closing read-write node
- Code cleanups

----------------------------------------------------------------
Alberto Garcia (1):
      qcow2: Fix alignment checks in encrypted images

Hikaru Nishida (1):
      block/vvfat: Do not unref qcow on closing backing bdrv

Kevin Wolf (12):
      mirror: Store MirrorOp.co for debuggability
      mirror: Don't let an operation wait for itself
      qcow2: update_refcount(): Reset old_table_index after qcow2_cache_put()
      qcow2: Fix qcow2_alloc_cluster_abort() for external data file
      iotests: Test copy offloading with external data file
      qapi: Document meaning of 'ignore' BlockdevOnError for jobs
      commit: Remove unused bytes_written
      commit: Fix argument order for block_job_error_action()
      commit: Inline commit_populate()
      commit: Fix is_read for block_job_error_action()
      commit: Expose on-error option in QMP
      iotests: Test error handling policies with block-commit

Max Reitz (19):
      blockdev: Allow external snapshots everywhere
      blockdev: Allow resizing everywhere
      block: Drop bdrv_is_first_non_filter()
      iotests: Let 041 use -blockdev for quorum children
      quorum: Fix child permissions
      block: Add bdrv_recurse_can_replace()
      blkverify: Implement .bdrv_recurse_can_replace()
      quorum: Implement .bdrv_recurse_can_replace()
      block: Use bdrv_recurse_can_replace()
      block: Remove bdrv_recurse_is_first_non_filter()
      mirror: Double-check immediately before replacing
      quorum: Stop marking it as a filter
      iotests: Use complete_and_wait() in 155
      iotests: Add VM.assert_block_path()
      iotests/041: Drop superfluous shutdowns
      iotests: Resolve TODOs in 041
      iotests: Use self.image_len in TestRepairQuorum
      iotests: Add tests for invalid Quorum @replaces
      iotests: Check that @replaces can replace filters

Philippe Mathieu-Daudé (3):
      block/qcow2-bitmap: Remove unneeded variable assignment
      block: Remove superfluous semicolons
      block/io_uring: Remove superfluous semicolon

 qapi/block-core.json          |   9 +-
 include/block/block.h         |   5 -
 include/block/block_int.h     |  16 +--
 block.c                       |  89 ++++++-------
 block/blkverify.c             |  20 +--
 block/commit.c                |  37 ++----
 block/copy-on-read.c          |   9 --
 block/filter-compress.c       |   9 --
 block/io_uring.c              |   2 +-
 block/mirror.c                |  37 ++++--
 block/qcow2-bitmap.c          |   1 -
 block/qcow2-cluster.c         |   7 +-
 block/qcow2-refcount.c        |   1 +
 block/qcow2-threads.c         |  12 +-
 block/qcow2.c                 |   2 -
 block/quorum.c                |  70 +++++++++--
 block/replication.c           |   7 --
 block/throttle.c              |   8 --
 block/vvfat.c                 |   7 --
 blockdev.c                    |  18 +--
 tests/qemu-iotests/iotests.py |  59 +++++++++
 tests/qemu-iotests/040        | 283 ++++++++++++++++++++++++++++++++++++++++++
 tests/qemu-iotests/040.out    |   4 +-
 tests/qemu-iotests/041        | 138 +++++++++++++++++---
 tests/qemu-iotests/041.out    |   4 +-
 tests/qemu-iotests/155        |   7 +-
 tests/qemu-iotests/244        |  14 +++
 tests/qemu-iotests/244.out    |   6 +
 28 files changed, 675 insertions(+), 206 deletions(-)



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

end of thread, other threads:[~2020-02-20 14:05 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-18 14:06 [PULL 00/36] Block layer patches Kevin Wolf
2020-02-18 14:06 ` [PULL 01/36] mirror: Store MirrorOp.co for debuggability Kevin Wolf
2020-02-18 14:06 ` [PULL 02/36] mirror: Don't let an operation wait for itself Kevin Wolf
2020-02-18 14:06 ` [PULL 03/36] qcow2: Fix alignment checks in encrypted images Kevin Wolf
2020-02-18 14:06 ` [PULL 04/36] block/vvfat: Do not unref qcow on closing backing bdrv Kevin Wolf
2020-02-18 14:06 ` [PULL 05/36] qcow2: update_refcount(): Reset old_table_index after qcow2_cache_put() Kevin Wolf
2020-02-18 14:06 ` [PULL 06/36] qcow2: Fix qcow2_alloc_cluster_abort() for external data file Kevin Wolf
2020-02-18 14:06 ` [PULL 07/36] iotests: Test copy offloading with " Kevin Wolf
2020-02-18 14:06 ` [PULL 08/36] block/qcow2-bitmap: Remove unneeded variable assignment Kevin Wolf
2020-02-18 14:06 ` [PULL 09/36] qapi: Document meaning of 'ignore' BlockdevOnError for jobs Kevin Wolf
2020-02-18 14:06 ` [PULL 10/36] commit: Remove unused bytes_written Kevin Wolf
2020-02-18 14:06 ` [PULL 11/36] commit: Fix argument order for block_job_error_action() Kevin Wolf
2020-02-18 14:06 ` [PULL 12/36] commit: Inline commit_populate() Kevin Wolf
2020-02-18 14:06 ` [PULL 13/36] commit: Fix is_read for block_job_error_action() Kevin Wolf
2020-02-18 14:07 ` [PULL 14/36] commit: Expose on-error option in QMP Kevin Wolf
2020-02-18 14:07 ` [PULL 15/36] iotests: Test error handling policies with block-commit Kevin Wolf
2020-02-18 14:07 ` [PULL 16/36] block: Remove superfluous semicolons Kevin Wolf
2020-02-18 14:07 ` [PULL 17/36] block/io_uring: Remove superfluous semicolon Kevin Wolf
2020-02-18 14:07 ` [PULL 18/36] blockdev: Allow external snapshots everywhere Kevin Wolf
2020-02-18 14:07 ` [PULL 19/36] blockdev: Allow resizing everywhere Kevin Wolf
2020-02-18 14:07 ` [PULL 20/36] block: Drop bdrv_is_first_non_filter() Kevin Wolf
2020-02-18 14:07 ` [PULL 21/36] iotests: Let 041 use -blockdev for quorum children Kevin Wolf
2020-02-18 14:07 ` [PULL 22/36] quorum: Fix child permissions Kevin Wolf
2020-02-18 14:07 ` [PULL 23/36] block: Add bdrv_recurse_can_replace() Kevin Wolf
2020-02-18 14:07 ` [PULL 24/36] blkverify: Implement .bdrv_recurse_can_replace() Kevin Wolf
2020-02-18 14:07 ` [PULL 25/36] quorum: " Kevin Wolf
2020-02-18 14:07 ` [PULL 26/36] block: Use bdrv_recurse_can_replace() Kevin Wolf
2020-02-18 14:07 ` [PULL 27/36] block: Remove bdrv_recurse_is_first_non_filter() Kevin Wolf
2020-02-18 14:07 ` [PULL 28/36] mirror: Double-check immediately before replacing Kevin Wolf
2020-02-18 14:07 ` [PULL 29/36] quorum: Stop marking it as a filter Kevin Wolf
2020-02-18 14:07 ` [PULL 30/36] iotests: Use complete_and_wait() in 155 Kevin Wolf
2020-02-18 14:07 ` [PULL 31/36] iotests: Add VM.assert_block_path() Kevin Wolf
2020-02-18 14:07 ` [PULL 32/36] iotests/041: Drop superfluous shutdowns Kevin Wolf
2020-02-18 14:07 ` [PULL 33/36] iotests: Resolve TODOs in 041 Kevin Wolf
2020-02-18 14:07 ` [PULL 34/36] iotests: Use self.image_len in TestRepairQuorum Kevin Wolf
2020-02-18 14:07 ` [PULL 35/36] iotests: Add tests for invalid Quorum @replaces Kevin Wolf
2020-02-18 14:07 ` [PULL 36/36] iotests: Check that @replaces can replace filters Kevin Wolf
2020-02-20 14:04 ` [PULL 00/36] Block layer patches Peter Maydell

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