[PULL 00/10] Block layer patches

Kevin Wolf posted 10 patches 2 years, 3 months ago
Test checkpatch failed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20220201152108.171898-1-kwolf@redhat.com
Maintainers: Hanna Reitz <hreitz@redhat.com>, Ilya Dryomov <idryomov@gmail.com>, Kevin Wolf <kwolf@redhat.com>, Coiby Xu <Coiby.Xu@gmail.com>, Peter Lieven <pl@kamp.de>
There is a newer version of this series
docs/tools/qemu-img.rst              |  2 +-
docs/tools/qemu-storage-daemon.rst   |  9 +++++--
include/block/block.h                |  1 -
include/qemu/vhost-user-server.h     |  5 ++++
block.c                              |  4 +++
block/export/fuse.c                  | 45 +++++++++++++++++--------------
block/export/vhost-user-blk-server.c |  5 ++++
block/rbd.c                          | 52 +++++++++++++++++++++++++++++++-----
storage-daemon/qemu-storage-daemon.c |  4 +--
util/vhost-user-server.c             | 22 +++++++++++++++
qemu-img-cmds.hx                     |  4 +--
11 files changed, 118 insertions(+), 35 deletions(-)
[PULL 00/10] Block layer patches
Posted by Kevin Wolf 2 years, 3 months ago
The following changes since commit 804b30d25f8d70dc2dea951883ea92235274a50c:

  Merge remote-tracking branch 'remotes/legoater/tags/pull-ppc-20220130' into staging (2022-01-31 11:10:08 +0000)

are available in the Git repository at:

  https://gitlab.com/kmwolf/qemu.git tags/for-upstream

for you to fetch changes up to fc176116cdea816ceb8dd969080b2b95f58edbc0:

  block/rbd: workaround for ceph issue #53784 (2022-02-01 15:16:32 +0100)

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

- rbd: fix handling of holes in .bdrv_co_block_status
- Fix potential crash in bdrv_set_backing_hd()
- vhost-user-blk export: Fix shutdown with requests in flight
- FUSE export: Fix build failure on FreeBSD
- Documentation improvements

----------------------------------------------------------------
Emanuele Giuseppe Esposito (1):
      block.h: remove outdated comment

Hanna Reitz (2):
      qsd: Document fuse's allow-other option
      qemu-img: Unify [-b [-F]] documentation

Kevin Wolf (2):
      qemu-storage-daemon: Fix typo in vhost-user-blk help
      block/export: Fix vhost-user-blk shutdown with requests in flight

Peter Lieven (2):
      block/rbd: fix handling of holes in .bdrv_co_block_status
      block/rbd: workaround for ceph issue #53784

Philippe Mathieu-Daudé (2):
      block/export/fuse: Rearrange if-else-if ladder in fuse_fallocate()
      block/export/fuse: Fix build failure on FreeBSD

Vladimir Sementsov-Ogievskiy (1):
      block: bdrv_set_backing_hd(): use drained section

 docs/tools/qemu-img.rst              |  2 +-
 docs/tools/qemu-storage-daemon.rst   |  9 +++++--
 include/block/block.h                |  1 -
 include/qemu/vhost-user-server.h     |  5 ++++
 block.c                              |  4 +++
 block/export/fuse.c                  | 45 +++++++++++++++++--------------
 block/export/vhost-user-blk-server.c |  5 ++++
 block/rbd.c                          | 52 +++++++++++++++++++++++++++++++-----
 storage-daemon/qemu-storage-daemon.c |  4 +--
 util/vhost-user-server.c             | 22 +++++++++++++++
 qemu-img-cmds.hx                     |  4 +--
 11 files changed, 118 insertions(+), 35 deletions(-)


Re: [PULL 00/10] Block layer patches
Posted by Peter Maydell 2 years, 3 months ago
On Tue, 1 Feb 2022 at 15:21, Kevin Wolf <kwolf@redhat.com> wrote:
>
> The following changes since commit 804b30d25f8d70dc2dea951883ea92235274a50c:
>
>   Merge remote-tracking branch 'remotes/legoater/tags/pull-ppc-20220130' into staging (2022-01-31 11:10:08 +0000)
>
> are available in the Git repository at:
>
>   https://gitlab.com/kmwolf/qemu.git tags/for-upstream
>
> for you to fetch changes up to fc176116cdea816ceb8dd969080b2b95f58edbc0:
>
>   block/rbd: workaround for ceph issue #53784 (2022-02-01 15:16:32 +0100)
>
> ----------------------------------------------------------------
> Block layer patches
>
> - rbd: fix handling of holes in .bdrv_co_block_status
> - Fix potential crash in bdrv_set_backing_hd()
> - vhost-user-blk export: Fix shutdown with requests in flight
> - FUSE export: Fix build failure on FreeBSD
> - Documentation improvements
>


Applied, thanks.

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

-- PMM