mbox

[PULL,00/12] Block layer patches

Message ID 20211102160528.206766-1-kwolf@redhat.com
State New
Headers show

Pull-request

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

Message

Kevin Wolf Nov. 2, 2021, 4:05 p.m. UTC
The following changes since commit 8cb41fda78c7ebde0dd248c6afe1d336efb0de50:

  Merge remote-tracking branch 'remotes/philmd/tags/machine-20211101' into staging (2021-11-02 05:53:45 -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 a8951438946d72d74c9bdbdb38fce95aa2973a88:

  block/nvme: Extract nvme_free_queue() from nvme_free_queue_pair() (2021-11-02 15:49:13 +0100)

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

- Fail gracefully when blockdev-snapshot creates loops
- ide: Fix IDENTIFY DEVICE for disks > 128 GiB
- file-posix: Fix return value translation for AIO discards
- file-posix: add 'aio-max-batch' option
- rbd: implement bdrv_co_block_status
- Code cleanups and build fixes

----------------------------------------------------------------
Ari Sundholm (1):
      block/file-posix: Fix return value translation for AIO discards

Fabrice Fontaine (1):
      block/export/fuse.c: fix musl build

Hanna Reitz (1):
      block-backend: Silence clang -m32 compiler warning

Kevin Wolf (1):
      block: Fail gracefully when blockdev-snapshot creates loops

Peter Lieven (1):
      block/rbd: implement bdrv_co_block_status

Philippe Mathieu-Daudé (3):
      block/nvme: Automatically free qemu_memalign() with QEMU_AUTO_VFREE
      block/nvme: Display CQ/SQ pointer in nvme_free_queue_pair()
      block/nvme: Extract nvme_free_queue() from nvme_free_queue_pair()

Samuel Thibault (1):
      ide: Cap LBA28 capacity announcement to 2^28-1

Stefano Garzarella (3):
      file-posix: add `aio-max-batch` option
      linux-aio: add `dev_max_batch` parameter to laio_co_submit()
      linux-aio: add `dev_max_batch` parameter to laio_io_unplug()

 qapi/block-core.json       |   7 +++
 include/block/raw-aio.h    |   6 ++-
 block.c                    |  10 ++++
 block/block-backend.c      |   2 +-
 block/export/fuse.c        |   4 ++
 block/file-posix.c         |  18 ++++++--
 block/linux-aio.c          |  38 ++++++++++-----
 block/nvme.c               |  22 +++++----
 block/rbd.c                | 112 +++++++++++++++++++++++++++++++++++++++++++++
 hw/ide/core.c              |   8 +++-
 block/trace-events         |   2 +-
 tests/qemu-iotests/085     |  31 ++++++++++++-
 tests/qemu-iotests/085.out |  33 +++++++++++--
 13 files changed, 258 insertions(+), 35 deletions(-)

Comments

Richard Henderson Nov. 3, 2021, 6:27 a.m. UTC | #1
On 11/2/21 12:05 PM, Kevin Wolf wrote:
> The following changes since commit 8cb41fda78c7ebde0dd248c6afe1d336efb0de50:
> 
>    Merge remote-tracking branch 'remotes/philmd/tags/machine-20211101' into staging (2021-11-02 05:53:45 -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 a8951438946d72d74c9bdbdb38fce95aa2973a88:
> 
>    block/nvme: Extract nvme_free_queue() from nvme_free_queue_pair() (2021-11-02 15:49:13 +0100)
> 
> ----------------------------------------------------------------
> Block layer patches
> 
> - Fail gracefully when blockdev-snapshot creates loops
> - ide: Fix IDENTIFY DEVICE for disks > 128 GiB
> - file-posix: Fix return value translation for AIO discards
> - file-posix: add 'aio-max-batch' option
> - rbd: implement bdrv_co_block_status
> - Code cleanups and build fixes
> 
> ----------------------------------------------------------------
> Ari Sundholm (1):
>        block/file-posix: Fix return value translation for AIO discards
> 
> Fabrice Fontaine (1):
>        block/export/fuse.c: fix musl build
> 
> Hanna Reitz (1):
>        block-backend: Silence clang -m32 compiler warning
> 
> Kevin Wolf (1):
>        block: Fail gracefully when blockdev-snapshot creates loops
> 
> Peter Lieven (1):
>        block/rbd: implement bdrv_co_block_status
> 
> Philippe Mathieu-Daudé (3):
>        block/nvme: Automatically free qemu_memalign() with QEMU_AUTO_VFREE
>        block/nvme: Display CQ/SQ pointer in nvme_free_queue_pair()
>        block/nvme: Extract nvme_free_queue() from nvme_free_queue_pair()
> 
> Samuel Thibault (1):
>        ide: Cap LBA28 capacity announcement to 2^28-1
> 
> Stefano Garzarella (3):
>        file-posix: add `aio-max-batch` option
>        linux-aio: add `dev_max_batch` parameter to laio_co_submit()
>        linux-aio: add `dev_max_batch` parameter to laio_io_unplug()
> 
>   qapi/block-core.json       |   7 +++
>   include/block/raw-aio.h    |   6 ++-
>   block.c                    |  10 ++++
>   block/block-backend.c      |   2 +-
>   block/export/fuse.c        |   4 ++
>   block/file-posix.c         |  18 ++++++--
>   block/linux-aio.c          |  38 ++++++++++-----
>   block/nvme.c               |  22 +++++----
>   block/rbd.c                | 112 +++++++++++++++++++++++++++++++++++++++++++++
>   hw/ide/core.c              |   8 +++-
>   block/trace-events         |   2 +-
>   tests/qemu-iotests/085     |  31 ++++++++++++-
>   tests/qemu-iotests/085.out |  33 +++++++++++--
>   13 files changed, 258 insertions(+), 35 deletions(-)

Applied, thanks.

r~