mbox

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

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

Pull-request

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

Message

Max Reitz March 26, 2020, 2:29 p.m. UTC
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(-)

Comments

Peter Maydell March 26, 2020, 4:54 p.m. UTC | #1
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