mbox

[PULL,0/9] Block patches for 6.0-rc1

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

Pull-request

https://github.com/XanClic/qemu.git tags/pull-block-2021-03-30

Message

Max Reitz March 30, 2021, 12:39 p.m. UTC
The following changes since commit ec2e6e016d24bd429792d08cf607e4c5350dcdaa:

  Merge remote-tracking branch 'remotes/vivier2/tags/linux-user-for-6.0-pull-request' into staging (2021-03-28 19:49:57 +0100)

are available in the Git repository at:

  https://github.com/XanClic/qemu.git tags/pull-block-2021-03-30

for you to fetch changes up to 2ec7e8a94668efccf7f45634584cfa19a83fc553:

  iotests/244: Test preallocation for data-file-raw (2021-03-30 13:02:11 +0200)

----------------------------------------------------------------
Block patches for 6.0-rc1:
- Mark the qcow2 cache clean timer as external to fix record/replay
- Fix the mirror filter node's permissions so that an external process
  cannot grab an image while it is used as the mirror source
- Add documentation about FUSE exports to the storage daemon
- When creating a qcow2 image with the data-file-raw option, all
  metadata structures should be preallocated
- iotest fixes

----------------------------------------------------------------
Connor Kuehl (1):
  iotests: fix 051.out expected output after error text touchups

Max Reitz (6):
  iotests/116: Fix reference output
  iotests/046: Filter request length
  block/mirror: Fix mirror_top's permissions
  qsd: Document FUSE exports
  qcow2: Force preallocation with data-file-raw
  iotests/244: Test preallocation for data-file-raw

Pavel Dovgalyuk (1):
  qcow2: use external virtual timers

Tao Xu (1):
  iotests: Fix typo in iotest 051

 docs/tools/qemu-storage-daemon.rst   |  19 +++++
 block/mirror.c                       |  32 +++++++--
 block/qcow2.c                        |  41 ++++++++++-
 storage-daemon/qemu-storage-daemon.c |   4 ++
 tests/qemu-iotests/046               |   3 +-
 tests/qemu-iotests/046.out           | 104 +++++++++++++--------------
 tests/qemu-iotests/051               |   2 +-
 tests/qemu-iotests/051.out           |   6 +-
 tests/qemu-iotests/051.pc.out        |   4 +-
 tests/qemu-iotests/116.out           |  12 ++--
 tests/qemu-iotests/244               | 104 +++++++++++++++++++++++++++
 tests/qemu-iotests/244.out           |  68 ++++++++++++++++--
 12 files changed, 319 insertions(+), 80 deletions(-)

Comments

Peter Maydell March 30, 2021, 3:34 p.m. UTC | #1
On Tue, 30 Mar 2021 at 13:40, Max Reitz <mreitz@redhat.com> wrote:
>
> The following changes since commit ec2e6e016d24bd429792d08cf607e4c5350dcdaa:
>
>   Merge remote-tracking branch 'remotes/vivier2/tags/linux-user-for-6.0-pull-request' into staging (2021-03-28 19:49:57 +0100)
>
> are available in the Git repository at:
>
>   https://github.com/XanClic/qemu.git tags/pull-block-2021-03-30
>
> for you to fetch changes up to 2ec7e8a94668efccf7f45634584cfa19a83fc553:
>
>   iotests/244: Test preallocation for data-file-raw (2021-03-30 13:02:11 +0200)
>
> ----------------------------------------------------------------
> Block patches for 6.0-rc1:
> - Mark the qcow2 cache clean timer as external to fix record/replay
> - Fix the mirror filter node's permissions so that an external process
>   cannot grab an image while it is used as the mirror source
> - Add documentation about FUSE exports to the storage daemon
> - When creating a qcow2 image with the data-file-raw option, all
>   metadata structures should be preallocated
> - iotest fixes
>
> ----------------------------------------------------------------


Applied, thanks.

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

-- PMM