[PULL 00/10] Block patches for 5.0-rc1

Max Reitz posted 10 patches 5 years, 7 months ago
Test docker-mingw@fedora passed
Test docker-quick@centos7 passed
Test checkpatch passed
Test FreeBSD passed
Test asan passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20200326142933.625037-1-mreitz@redhat.com
Maintainers: Jeff Cody <codyprime@gmail.com>, Paolo Bonzini <pbonzini@redhat.com>, Stefan Hajnoczi <stefanha@redhat.com>, "Denis V. Lunev" <den@openvz.org>, Stefan Weil <sw@weilnetz.de>, Fam Zheng <fam@euphon.net>, Eric Blake <eblake@redhat.com>, Max Reitz <mreitz@redhat.com>, "Richard W.M. Jones" <rjones@redhat.com>, Liu Yuan <namei.unix@gmail.com>, Kevin Wolf <kwolf@redhat.com>, Jason Dillaman <dillaman@redhat.com>, Peter Lieven <pl@kamp.de>, John Snow <jsnow@redhat.com>, Ronnie Sahlberg <ronniesahlberg@gmail.com>
docs/interop/qcow2.txt       |  3 ++-
include/block/block.h        |  1 +
include/block/block_int.h    | 14 +++++++++++-
block.c                      | 38 +++++++++++++++++++--------------
block/crypto.c               |  3 ++-
block/file-posix.c           | 11 ++++++++--
block/file-win32.c           |  4 +++-
block/gluster.c              |  3 ++-
block/iscsi.c                | 16 ++++----------
block/mirror.c               |  1 +
block/nbd.c                  |  6 ++++++
block/nfs.c                  |  4 +++-
block/nvme.c                 |  3 +++
block/parallels.c            |  3 ++-
block/qcow.c                 |  3 ++-
block/qcow2.c                | 33 +++++++++++++++++++++++------
block/qed.c                  |  3 ++-
block/raw-format.c           |  4 +++-
block/rbd.c                  |  3 ++-
block/sheepdog.c             |  6 +++++-
block/ssh.c                  |  4 +++-
block/vdi.c                  |  4 +++-
block/vhdx.c                 |  3 ++-
block/vmdk.c                 |  4 +++-
block/vpc.c                  |  6 ++++--
qemu-img.c                   |  9 ++++++--
tests/qemu-iotests/031.out   |  8 +++----
tests/qemu-iotests/036       |  6 ++++--
tests/qemu-iotests/036.out   |  4 ++--
tests/qemu-iotests/061       |  6 ++++--
tests/qemu-iotests/061.out   | 14 ++++++------
tests/qemu-iotests/138       | 41 ++++++++++++++++++++++++++++++++++--
tests/qemu-iotests/138.out   | 14 ++++++++++++
tests/qemu-iotests/common.rc | 24 +++++++++++++++++++++
34 files changed, 233 insertions(+), 76 deletions(-)
[PULL 00/10] Block patches for 5.0-rc1
Posted by Max Reitz 5 years, 7 months ago
The following changes since commit 01e38186ecb1fc6275720c5425332eed280ea93d:

  Merge remote-tracking branch 'remotes/dgilbert/tags/pull-migration-20200325b' into staging (2020-03-26 09:28:11 +0000)

are available in the Git repository at:

  https://github.com/XanClic/qemu.git tags/pull-block-2020-03-26

for you to fetch changes up to a507c51790fa955c1fccd4deca3c50476a862b83:

  iotests/138: Test leaks/corruptions fixed report (2020-03-26 14:52:43 +0100)

----------------------------------------------------------------
Block patches for 5.0-rc1:
- Fix qemu-img convert with a host device or iscsi target
- Use-after-free fix in mirror
- Some minor qcow2 fixes
- Minor sheepdog fix
- Minor qemu-img check report fix

----------------------------------------------------------------
Eric Blake (4):
  qcow2: Comment typo fixes
  qcow2: List autoclear bit names in header
  qcow2: Avoid feature name extension on small cluster size
  sheepdog: Consistently set bdrv_has_zero_init_truncate

Max Reitz (3):
  qemu-img: Fix check's leak/corruption fix report
  iotests: Add poke_file_[bl]e functions
  iotests/138: Test leaks/corruptions fixed report

Maxim Levitsky (2):
  block: pass BlockDriver reference to the .bdrv_co_create
  block: trickle down the fallback image creation function use to the
    block drivers

Vladimir Sementsov-Ogievskiy (1):
  block/mirror: fix use after free of local_err

 docs/interop/qcow2.txt       |  3 ++-
 include/block/block.h        |  1 +
 include/block/block_int.h    | 14 +++++++++++-
 block.c                      | 38 +++++++++++++++++++--------------
 block/crypto.c               |  3 ++-
 block/file-posix.c           | 11 ++++++++--
 block/file-win32.c           |  4 +++-
 block/gluster.c              |  3 ++-
 block/iscsi.c                | 16 ++++----------
 block/mirror.c               |  1 +
 block/nbd.c                  |  6 ++++++
 block/nfs.c                  |  4 +++-
 block/nvme.c                 |  3 +++
 block/parallels.c            |  3 ++-
 block/qcow.c                 |  3 ++-
 block/qcow2.c                | 33 +++++++++++++++++++++++------
 block/qed.c                  |  3 ++-
 block/raw-format.c           |  4 +++-
 block/rbd.c                  |  3 ++-
 block/sheepdog.c             |  6 +++++-
 block/ssh.c                  |  4 +++-
 block/vdi.c                  |  4 +++-
 block/vhdx.c                 |  3 ++-
 block/vmdk.c                 |  4 +++-
 block/vpc.c                  |  6 ++++--
 qemu-img.c                   |  9 ++++++--
 tests/qemu-iotests/031.out   |  8 +++----
 tests/qemu-iotests/036       |  6 ++++--
 tests/qemu-iotests/036.out   |  4 ++--
 tests/qemu-iotests/061       |  6 ++++--
 tests/qemu-iotests/061.out   | 14 ++++++------
 tests/qemu-iotests/138       | 41 ++++++++++++++++++++++++++++++++++--
 tests/qemu-iotests/138.out   | 14 ++++++++++++
 tests/qemu-iotests/common.rc | 24 +++++++++++++++++++++
 34 files changed, 233 insertions(+), 76 deletions(-)

-- 
2.25.1


Re: [PULL 00/10] Block patches for 5.0-rc1
Posted by Peter Maydell 5 years, 7 months ago
On Thu, 26 Mar 2020 at 14:29, Max Reitz <mreitz@redhat.com> wrote:
>
> The following changes since commit 01e38186ecb1fc6275720c5425332eed280ea93d:
>
>   Merge remote-tracking branch 'remotes/dgilbert/tags/pull-migration-20200325b' into staging (2020-03-26 09:28:11 +0000)
>
> are available in the Git repository at:
>
>   https://github.com/XanClic/qemu.git tags/pull-block-2020-03-26
>
> for you to fetch changes up to a507c51790fa955c1fccd4deca3c50476a862b83:
>
>   iotests/138: Test leaks/corruptions fixed report (2020-03-26 14:52:43 +0100)
>
> ----------------------------------------------------------------
> Block patches for 5.0-rc1:
> - Fix qemu-img convert with a host device or iscsi target
> - Use-after-free fix in mirror
> - Some minor qcow2 fixes
> - Minor sheepdog fix
> - Minor qemu-img check report fix
>
> ----------------------------------------------------------------


Applied, thanks.

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

-- PMM