qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/58] Block layer patches
@ 2022-10-27 18:30 Kevin Wolf
  2022-10-27 18:30 ` [PULL 01/58] MAINTAINERS: Fold "Block QAPI, monitor, ..." into "Block layer core" Kevin Wolf
                   ` (59 more replies)
  0 siblings, 60 replies; 61+ messages in thread
From: Kevin Wolf @ 2022-10-27 18:30 UTC (permalink / raw)
  To: qemu-block; +Cc: kwolf, stefanha, qemu-devel

The following changes since commit 344744e148e6e865f5a57e745b02a87e5ea534ad:

  Merge tag 'dump-pull-request' of https://gitlab.com/marcandre.lureau/qemu into staging (2022-10-26 10:53:49 -0400)

are available in the Git repository at:

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

for you to fetch changes up to be8da05b5ed8fb546731b9edb997f303f272bad8:

  block/block-backend: blk_set_enable_write_cache is IO_CODE (2022-10-27 20:27:37 +0200)

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

- Cleanup bs->backing and bs->file handling
- Refactor bdrv_try_set_aio_context using transactions
- Changes for improved coroutine_fn consistency
- vhost-user-blk: fix the resize crash
- io_uring: Use of io_uring_register_ring_fd() led to breakage, revert
- vvfat: Fix some problems with r/w mode
- Code cleanup
- MAINTAINERS: Fold "Block QAPI, monitor, ..." into "Block layer core"

----------------------------------------------------------------
Alberto Faria (20):
      backup: remove incorrect coroutine_fn annotation
      block: remove incorrect coroutine_fn annotation
      monitor: add missing coroutine_fn annotation
      ssh: add missing coroutine_fn annotation
      block: add missing coroutine_fn annotation to prototypes
      coroutine-lock: add missing coroutine_fn annotation to prototypes
      coroutine-io: add missing coroutine_fn annotation to prototypes
      block: add missing coroutine_fn annotation to BlockDriverState callbacks
      qcow2: add coroutine_fn annotation for indirect-called functions
      commit: switch to *_co_* functions
      block: switch to *_co_* functions
      mirror: switch to *_co_* functions
      parallels: switch to *_co_* functions
      qcow: switch to *_co_* functions
      qcow2: switch to *_co_* functions
      qed: switch to *_co_* functions
      vdi: switch to *_co_* functions
      vhdx: switch to *_co_* functions
      vmdk: switch to *_co_* functions
      monitor: switch to *_co_* functions

Bin Meng (3):
      block: Ignore close() failure in get_tmp_filename()
      block: Refactor get_tmp_filename()
      block/nfs: Fix 32-bit Windows build

Emanuele Giuseppe Esposito (11):
      block.c: assert bs->aio_context is written under BQL and drains
      block: use transactions as a replacement of ->{can_}set_aio_context()
      bdrv_change_aio_context: use hash table instead of list of visited nodes
      blockjob: implement .change_aio_ctx in child_job
      block: implement .change_aio_ctx in child_of_bds
      block-backend: implement .change_aio_ctx in child_root
      block: use the new _change_ API instead of _can_set_ and _set_
      block: remove all unused ->can_set_aio_ctx and ->set_aio_ctx callbacks
      block: rename bdrv_child_try_change_aio_context in bdrv_try_change_aio_context
      block: remove bdrv_try_set_aio_context and replace it with bdrv_try_change_aio_context
      block/block-backend: blk_set_enable_write_cache is IO_CODE

Hervé Poussineau (2):
      vvfat: allow some writes to bootsector
      vvfat: allow spaces in file names

Li Feng (1):
      vhost-user-blk: fix the resize crash

Markus Armbruster (1):
      MAINTAINERS: Fold "Block QAPI, monitor, ..." into "Block layer core"

Paolo Bonzini (4):
      blkdebug: add missing coroutine_fn annotation for indirect-called functions
      qcow: manually add more coroutine_fn annotations
      qcow2: manually add more coroutine_fn annotations
      vmdk: manually add more coroutine_fn annotations

Sam Li (1):
      block/io_uring: revert "Use io_uring_register_ring_fd() to skip fd operations"

Vladimir Sementsov-Ogievskiy (15):
      block: BlockDriver: add .filtered_child_is_backing field
      block: introduce bdrv_open_file_child() helper
      block/blklogwrites: don't care to remove bs->file child on failure
      test-bdrv-graph-mod: update test_parallel_perm_update test case
      tests-bdrv-drain: bdrv_replace_test driver: declare supports_backing
      test-bdrv-graph-mod: fix filters to be filters
      block: document connection between child roles and bs->backing/bs->file
      block/snapshot: stress that we fallback to primary child
      Revert "block: Let replace_child_noperm free children"
      Revert "block: Let replace_child_tran keep indirect pointer"
      Revert "block: Restructure remove_file_or_backing_child()"
      Revert "block: Pass BdrvChild ** to replace_child_noperm"
      block: Manipulate bs->file / bs->backing pointers in .attach/.detach
      block/snapshot: drop indirection around bdrv_snapshot_fallback_ptr
      block: refactor bdrv_remove_file_or_backing_child to bdrv_remove_child

 docs/devel/multiple-iothreads.txt  |   4 +-
 block/qcow2.h                      |  32 +-
 include/block/block-common.h       |  39 ++
 include/block/block-global-state.h |  18 +-
 include/block/block-hmp-cmds.h     |   2 +-
 include/block/block-io.h           |   5 +-
 include/block/block_int-common.h   |  49 ++-
 include/monitor/hmp.h              |   3 +-
 include/qemu/coroutine.h           |  18 +-
 block.c                            | 855 +++++++++++++++++--------------------
 block/backup.c                     |   2 +-
 block/blkdebug.c                   |  11 +-
 block/blklogwrites.c               |  11 +-
 block/blkreplay.c                  |   7 +-
 block/blkverify.c                  |   9 +-
 block/block-backend.c              |  76 ++--
 block/bochs.c                      |   7 +-
 block/cloop.c                      |   7 +-
 block/commit.c                     |   3 +-
 block/copy-before-write.c          |   9 +-
 block/copy-on-read.c               |   9 +-
 block/crypto.c                     |  11 +-
 block/dmg.c                        |   7 +-
 block/export/export.c              |   2 +-
 block/filter-compress.c            |   8 +-
 block/io.c                         |   8 +-
 block/io_uring.c                   |  13 +-
 block/mirror.c                     |   5 +-
 block/monitor/block-hmp-cmds.c     |   2 +-
 block/nfs.c                        |   8 +
 block/parallels.c                  |  35 +-
 block/preallocate.c                |   9 +-
 block/qcow.c                       |  66 +--
 block/qcow2-bitmap.c               |   4 +-
 block/qcow2-cluster.c              |  29 +-
 block/qcow2-refcount.c             |  18 +-
 block/qcow2-snapshot.c             |   6 +-
 block/qcow2.c                      |  40 +-
 block/qed-table.c                  |   2 +-
 block/qed.c                        |  20 +-
 block/raw-format.c                 |   4 +-
 block/replication.c                |   8 +-
 block/snapshot-access.c            |   6 +-
 block/snapshot.c                   |  59 +--
 block/ssh.c                        |   6 +-
 block/throttle.c                   |   8 +-
 block/vdi.c                        |  24 +-
 block/vhdx.c                       |  15 +-
 block/vmdk.c                       |  95 ++---
 block/vpc.c                        |   7 +-
 block/vvfat.c                      |  35 +-
 blockdev.c                         |  24 +-
 blockjob.c                         |  50 ++-
 hw/block/vhost-user-blk.c          |   4 +
 job.c                              |   2 +-
 tests/unit/test-bdrv-drain.c       |  17 +-
 tests/unit/test-bdrv-graph-mod.c   | 104 +++--
 tests/unit/test-block-iothread.c   |  10 +-
 MAINTAINERS                        |  12 +-
 meson.build                        |   1 -
 tests/qemu-iotests/051             |   3 +-
 tests/qemu-iotests/051.out         |   2 +-
 tests/qemu-iotests/051.pc.out      |   2 +-
 63 files changed, 984 insertions(+), 983 deletions(-)



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

end of thread, other threads:[~2022-10-31 13:19 UTC | newest]

Thread overview: 61+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-27 18:30 [PULL 00/58] Block layer patches Kevin Wolf
2022-10-27 18:30 ` [PULL 01/58] MAINTAINERS: Fold "Block QAPI, monitor, ..." into "Block layer core" Kevin Wolf
2022-10-27 18:30 ` [PULL 02/58] block: Ignore close() failure in get_tmp_filename() Kevin Wolf
2022-10-27 18:30 ` [PULL 03/58] block: Refactor get_tmp_filename() Kevin Wolf
2022-10-27 18:30 ` [PULL 04/58] vvfat: allow some writes to bootsector Kevin Wolf
2022-10-27 18:30 ` [PULL 05/58] vvfat: allow spaces in file names Kevin Wolf
2022-10-27 18:30 ` [PULL 06/58] block/io_uring: revert "Use io_uring_register_ring_fd() to skip fd operations" Kevin Wolf
2022-10-27 18:30 ` [PULL 07/58] vhost-user-blk: fix the resize crash Kevin Wolf
2022-10-27 18:30 ` [PULL 08/58] block: BlockDriver: add .filtered_child_is_backing field Kevin Wolf
2022-10-27 18:30 ` [PULL 09/58] block: introduce bdrv_open_file_child() helper Kevin Wolf
2022-10-27 18:30 ` [PULL 10/58] block/blklogwrites: don't care to remove bs->file child on failure Kevin Wolf
2022-10-27 18:30 ` [PULL 11/58] test-bdrv-graph-mod: update test_parallel_perm_update test case Kevin Wolf
2022-10-27 18:31 ` [PULL 12/58] tests-bdrv-drain: bdrv_replace_test driver: declare supports_backing Kevin Wolf
2022-10-27 18:31 ` [PULL 13/58] test-bdrv-graph-mod: fix filters to be filters Kevin Wolf
2022-10-27 18:31 ` [PULL 14/58] block: document connection between child roles and bs->backing/bs->file Kevin Wolf
2022-10-27 18:31 ` [PULL 15/58] block/snapshot: stress that we fallback to primary child Kevin Wolf
2022-10-27 18:31 ` [PULL 16/58] Revert "block: Let replace_child_noperm free children" Kevin Wolf
2022-10-27 18:31 ` [PULL 17/58] Revert "block: Let replace_child_tran keep indirect pointer" Kevin Wolf
2022-10-27 18:31 ` [PULL 18/58] Revert "block: Restructure remove_file_or_backing_child()" Kevin Wolf
2022-10-27 18:31 ` [PULL 19/58] Revert "block: Pass BdrvChild ** to replace_child_noperm" Kevin Wolf
2022-10-27 18:31 ` [PULL 20/58] block: Manipulate bs->file / bs->backing pointers in .attach/.detach Kevin Wolf
2022-10-27 18:31 ` [PULL 21/58] block/snapshot: drop indirection around bdrv_snapshot_fallback_ptr Kevin Wolf
2022-10-27 18:31 ` [PULL 22/58] block: refactor bdrv_remove_file_or_backing_child to bdrv_remove_child Kevin Wolf
2022-10-27 18:31 ` [PULL 23/58] block.c: assert bs->aio_context is written under BQL and drains Kevin Wolf
2022-10-27 18:31 ` [PULL 24/58] block: use transactions as a replacement of ->{can_}set_aio_context() Kevin Wolf
2022-10-27 18:31 ` [PULL 25/58] bdrv_change_aio_context: use hash table instead of list of visited nodes Kevin Wolf
2022-10-27 18:31 ` [PULL 26/58] blockjob: implement .change_aio_ctx in child_job Kevin Wolf
2022-10-27 18:31 ` [PULL 27/58] block: implement .change_aio_ctx in child_of_bds Kevin Wolf
2022-10-27 18:31 ` [PULL 28/58] block-backend: implement .change_aio_ctx in child_root Kevin Wolf
2022-10-27 18:31 ` [PULL 29/58] block: use the new _change_ API instead of _can_set_ and _set_ Kevin Wolf
2022-10-27 18:31 ` [PULL 30/58] block: remove all unused ->can_set_aio_ctx and ->set_aio_ctx callbacks Kevin Wolf
2022-10-27 18:31 ` [PULL 31/58] block: rename bdrv_child_try_change_aio_context in bdrv_try_change_aio_context Kevin Wolf
2022-10-27 18:31 ` [PULL 32/58] block: remove bdrv_try_set_aio_context and replace it with bdrv_try_change_aio_context Kevin Wolf
2022-10-27 18:31 ` [PULL 33/58] block/nfs: Fix 32-bit Windows build Kevin Wolf
2022-10-27 18:31 ` [PULL 34/58] backup: remove incorrect coroutine_fn annotation Kevin Wolf
2022-10-27 18:31 ` [PULL 35/58] block: " Kevin Wolf
2022-10-27 18:31 ` [PULL 36/58] monitor: add missing " Kevin Wolf
2022-10-27 18:31 ` [PULL 37/58] ssh: " Kevin Wolf
2022-10-27 18:31 ` [PULL 38/58] block: add missing coroutine_fn annotation to prototypes Kevin Wolf
2022-10-27 18:31 ` [PULL 39/58] coroutine-lock: " Kevin Wolf
2022-10-27 18:31 ` [PULL 40/58] coroutine-io: " Kevin Wolf
2022-10-27 18:31 ` [PULL 41/58] block: add missing coroutine_fn annotation to BlockDriverState callbacks Kevin Wolf
2022-10-27 18:31 ` [PULL 42/58] qcow2: add coroutine_fn annotation for indirect-called functions Kevin Wolf
2022-10-27 18:31 ` [PULL 43/58] blkdebug: add missing " Kevin Wolf
2022-10-27 18:31 ` [PULL 44/58] qcow: manually add more coroutine_fn annotations Kevin Wolf
2022-10-27 18:31 ` [PULL 45/58] qcow2: " Kevin Wolf
2022-10-27 18:31 ` [PULL 46/58] vmdk: " Kevin Wolf
2022-10-27 18:31 ` [PULL 47/58] commit: switch to *_co_* functions Kevin Wolf
2022-10-27 18:31 ` [PULL 48/58] block: " Kevin Wolf
2022-10-27 18:31 ` [PULL 49/58] mirror: " Kevin Wolf
2022-10-27 18:31 ` [PULL 50/58] parallels: " Kevin Wolf
2022-10-27 18:31 ` [PULL 51/58] qcow: " Kevin Wolf
2022-10-27 18:31 ` [PULL 52/58] qcow2: " Kevin Wolf
2022-10-27 18:31 ` [PULL 53/58] qed: " Kevin Wolf
2022-10-27 18:31 ` [PULL 54/58] vdi: " Kevin Wolf
2022-10-27 18:31 ` [PULL 55/58] vhdx: " Kevin Wolf
2022-10-27 18:31 ` [PULL 56/58] vmdk: " Kevin Wolf
2022-10-27 18:31 ` [PULL 57/58] monitor: " Kevin Wolf
2022-10-27 18:31 ` [PULL 58/58] block/block-backend: blk_set_enable_write_cache is IO_CODE Kevin Wolf
2022-10-30 19:16 ` [PULL 00/58] Block layer patches Stefan Hajnoczi
2022-10-31 10:13 ` Stefan Hajnoczi

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