[Qemu-devel] [PULL 0/9] Block layer patches

Test docker-mingw@fedora passed
Test docker-clang@ubuntu passed
Test checkpatch passed
Test asan passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20190402124907.24421-1-kwolf@redhat.com
Maintainers: John Snow <jsnow@redhat.com>, Cornelia Huck <cohuck@redhat.com>, Kevin Wolf <kwolf@redhat.com>, Max Reitz <mreitz@redhat.com>
There is a newer version of this series
block.c                    |  21 ++-
block/file-posix.c         |  12 ++
block/gluster.c            |  16 +++
block/stream.c             |  13 +-
qemu-img.c                 |   3 +-
tests/qemu-iotests/030     |  17 +++
tests/qemu-iotests/030.out |   4 +-
tests/qemu-iotests/200     |  14 +-
tests/qemu-iotests/235     |   2 +-
tests/qemu-iotests/COPYING | 339 ---------------------------------------------
10 files changed, 82 insertions(+), 359 deletions(-)
delete mode 100644 tests/qemu-iotests/COPYING
[Qemu-devel] [PULL 0/9] Block layer patches
Posted by Kevin Wolf 5 years ago
The following changes since commit d61d1a1fb2f1db6c54651844a28389c523f3f8c7:

  Merge remote-tracking branch 'remotes/kraxel/tags/fixes-20190402-pull-request' into staging (2019-04-02 08:18:24 +0100)

are available in the Git repository at:

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

for you to fetch changes up to f18957b854495129f2e8d6838df3bf47d1c1479c:

  tests/qemu-iotests/235: Allow fallback to tcg (2019-04-02 12:04:56 +0200)

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

- file-posix: Ignore unlock failure instead of crashing
- gluster: Limit the transfer size to 512 MiB
- stream: Fix backing chain freezing
- qemu-img: Enable BDRV_REQ_MAY_UNMAP for zero writes in convert
- iotests fixes

----------------------------------------------------------------
Alberto Garcia (3):
      block: continue until base is found in bdrv_freeze_backing_chain() et al
      block: freeze the backing chain earlier in stream_start()
      block: test block-stream with a base node that is used by block-commit

Nir Soffer (1):
      qemu-img: Enable BDRV_REQ_MAY_UNMAP in convert

Stefano Garzarella (1):
      block/gluster: limit the transfer size to 512 MiB

Thomas Huth (3):
      iotests: Fix test 200 on s390x without virtio-pci
      tests/qemu-iotests: Remove redundant COPYING file
      tests/qemu-iotests/235: Allow fallback to tcg

Vladimir Sementsov-Ogievskiy (1):
      block/file-posix: do not fail on unlock bytes

 block.c                    |  21 ++-
 block/file-posix.c         |  12 ++
 block/gluster.c            |  16 +++
 block/stream.c             |  13 +-
 qemu-img.c                 |   3 +-
 tests/qemu-iotests/030     |  17 +++
 tests/qemu-iotests/030.out |   4 +-
 tests/qemu-iotests/200     |  14 +-
 tests/qemu-iotests/235     |   2 +-
 tests/qemu-iotests/COPYING | 339 ---------------------------------------------
 10 files changed, 82 insertions(+), 359 deletions(-)
 delete mode 100644 tests/qemu-iotests/COPYING

Re: [Qemu-devel] [PULL 0/9] Block layer patches
Posted by Peter Maydell 5 years ago
On Tue, 2 Apr 2019 at 19:49, Kevin Wolf <kwolf@redhat.com> wrote:
>
> The following changes since commit d61d1a1fb2f1db6c54651844a28389c523f3f8c7:
>
>   Merge remote-tracking branch 'remotes/kraxel/tags/fixes-20190402-pull-request' into staging (2019-04-02 08:18:24 +0100)
>
> are available in the Git repository at:
>
>   git://repo.or.cz/qemu/kevin.git tags/for-upstream
>
> for you to fetch changes up to f18957b854495129f2e8d6838df3bf47d1c1479c:
>
>   tests/qemu-iotests/235: Allow fallback to tcg (2019-04-02 12:04:56 +0200)
>
> ----------------------------------------------------------------
> Block layer patches:
>
> - file-posix: Ignore unlock failure instead of crashing
> - gluster: Limit the transfer size to 512 MiB
> - stream: Fix backing chain freezing
> - qemu-img: Enable BDRV_REQ_MAY_UNMAP for zero writes in convert
> - iotests fixes

Applied, thanks.

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

-- PMM