mbox

[PULL,0/5] Block layer patches

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

Pull-request

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

Message

Kevin Wolf Oct. 27, 2020, 3:15 p.m. UTC
The following changes since commit d55450df995d6223486db11c66491cbf6c131523:

  Merge remote-tracking branch 'remotes/dgilbert/tags/pull-migration-20201026a' into staging (2020-10-27 10:25:42 +0000)

are available in the Git repository at:

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

for you to fetch changes up to 1a6d3bd229d429879a85a9105fb84cae049d083c:

  block: End quiescent sections when a BDS is deleted (2020-10-27 15:26:20 +0100)

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

- qcow2: Skip copy-on-write when allocating a zero cluster
- qemu-img: add support for rate limit in qemu-img convert/commit
- Fix deadlock when deleting a block node during drain_all

----------------------------------------------------------------
Alberto Garcia (2):
      qcow2: Report BDRV_BLOCK_ZERO more accurately in bdrv_co_block_status()
      qcow2: Skip copy-on-write when allocating a zero cluster

Greg Kurz (1):
      block: End quiescent sections when a BDS is deleted

Zhengui Li (2):
      qemu-img: add support for rate limit in qemu-img commit
      qemu-img: add support for rate limit in qemu-img convert

 docs/tools/qemu-img.rst | 10 ++++++++--
 include/block/block.h   |  8 ++++++++
 block.c                 |  9 +++++++++
 block/io.c              | 48 ++++++++++++++++++++++++++++++++++++++++++++----
 block/qcow2.c           | 35 +++++++++++++++++++----------------
 qemu-img.c              | 38 +++++++++++++++++++++++++++++++++++---
 tests/test-bdrv-drain.c |  1 +
 qemu-img-cmds.hx        |  8 ++++----
 8 files changed, 128 insertions(+), 29 deletions(-)

Comments

Peter Maydell Oct. 30, 2020, 3:49 p.m. UTC | #1
On Tue, 27 Oct 2020 at 15:15, Kevin Wolf <kwolf@redhat.com> wrote:
>
> The following changes since commit d55450df995d6223486db11c66491cbf6c131523:
>
>   Merge remote-tracking branch 'remotes/dgilbert/tags/pull-migration-20201026a' into staging (2020-10-27 10:25:42 +0000)
>
> are available in the Git repository at:
>
>   git://repo.or.cz/qemu/kevin.git tags/for-upstream
>
> for you to fetch changes up to 1a6d3bd229d429879a85a9105fb84cae049d083c:
>
>   block: End quiescent sections when a BDS is deleted (2020-10-27 15:26:20 +0100)
>
> ----------------------------------------------------------------
> Block layer patches:
>
> - qcow2: Skip copy-on-write when allocating a zero cluster
> - qemu-img: add support for rate limit in qemu-img convert/commit
> - Fix deadlock when deleting a block node during drain_all


Applied, thanks.

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

-- PMM