mbox

[PULL,0/9] Block layer fixes for 8.2.0-rc1

Message ID 20231121115302.52214-1-kwolf@redhat.com (mailing list archive)
State New, archived
Headers show

Pull-request

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

Message

Kevin Wolf Nov. 21, 2023, 11:52 a.m. UTC
The following changes since commit af9264da80073435fd78944bc5a46e695897d7e5:

  Merge tag '20231119-xtensa-1' of https://github.com/OSLL/qemu-xtensa into staging (2023-11-20 05:25:19 -0500)

are available in the Git repository at:

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

for you to fetch changes up to debb4911667b1f8213ca8760ae83afcf3b3579e0:

  hw/ide/via: implement legacy/native mode switching (2023-11-21 12:45:21 +0100)

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

- Fix graph lock related deadlocks with the stream job
- ahci: Fix legacy software reset
- ide/via: Fix switch between compatibility and native mode

----------------------------------------------------------------
Kevin Wolf (4):
      block: Fix bdrv_graph_wrlock() call in blk_remove_bs()
      block: Fix deadlocks in bdrv_graph_wrunlock()
      stream: Fix AioContext locking during bdrv_graph_wrlock()
      iotests: Test two stream jobs in a single iothread

Mark Cave-Ayland (4):
      ide/ioport: move ide_portio_list[] and ide_portio_list2[] definitions to IDE core
      ide/pci: introduce pci_ide_update_mode() function
      ide/via: don't attempt to set default BAR addresses
      hw/ide/via: implement legacy/native mode switching

Niklas Cassel (1):
      hw/ide/ahci: fix legacy software reset

 include/block/graph-lock.h                    | 15 ++++-
 include/hw/ide/internal.h                     |  3 +
 include/hw/ide/pci.h                          |  1 +
 block.c                                       | 39 ++++++++-----
 block/backup.c                                |  2 +-
 block/blklogwrites.c                          |  4 +-
 block/blkverify.c                             |  2 +-
 block/block-backend.c                         | 12 +++-
 block/commit.c                                | 10 ++--
 block/graph-lock.c                            | 23 +++++++-
 block/mirror.c                                | 14 ++---
 block/qcow2.c                                 |  2 +-
 block/quorum.c                                |  4 +-
 block/replication.c                           | 10 ++--
 block/snapshot.c                              |  2 +-
 block/stream.c                                | 10 ++--
 block/vmdk.c                                  | 10 ++--
 blockdev.c                                    |  4 +-
 blockjob.c                                    |  8 +--
 hw/ide/ahci.c                                 | 27 ++++++++-
 hw/ide/core.c                                 | 12 ++++
 hw/ide/ioport.c                               | 12 ----
 hw/ide/pci.c                                  | 84 +++++++++++++++++++++++++++
 hw/ide/via.c                                  | 44 +++++++++++---
 tests/unit/test-bdrv-drain.c                  | 20 +++----
 tests/unit/test-bdrv-graph-mod.c              | 10 ++--
 scripts/block-coroutine-wrapper.py            |  2 +-
 tests/qemu-iotests/tests/iothreads-stream     | 74 +++++++++++++++++++++++
 tests/qemu-iotests/tests/iothreads-stream.out | 11 ++++
 29 files changed, 374 insertions(+), 97 deletions(-)
 create mode 100755 tests/qemu-iotests/tests/iothreads-stream
 create mode 100644 tests/qemu-iotests/tests/iothreads-stream.out

Comments

Stefan Hajnoczi Nov. 21, 2023, 4:54 p.m. UTC | #1
Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/8.2 for any user-visible changes.