[PULL 00/10] Block layer fixes for 6.0-rc3

Kevin Wolf posted 10 patches 3 years ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20210409161548.341297-1-kwolf@redhat.com
Maintainers: Max Reitz <mreitz@redhat.com>, John Snow <jsnow@redhat.com>, Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>, Kevin Wolf <kwolf@redhat.com>, Jason Dillaman <dillaman@redhat.com>
block/mirror.c                                     |  28 +++--
block/rbd.c                                        |  10 +-
hw/block/fdc.c                                     |   4 +-
job.c                                              |   4 +-
tests/unit/test-blockjob.c                         | 121 +++++++++++++++++++++
tests/qemu-iotests/tests/mirror-top-perms          | 121 +++++++++++++++++++++
tests/qemu-iotests/tests/mirror-top-perms.out      |   5 +
tests/qemu-iotests/tests/qsd-jobs                  |   5 +-
tests/qemu-iotests/tests/qsd-jobs.out              |  10 --
.../qemu-iotests/tests/remove-bitmap-from-backing  |  69 ++++++++++++
.../tests/remove-bitmap-from-backing.out           |   6 +
11 files changed, 349 insertions(+), 34 deletions(-)
create mode 100755 tests/qemu-iotests/tests/mirror-top-perms
create mode 100644 tests/qemu-iotests/tests/mirror-top-perms.out
create mode 100755 tests/qemu-iotests/tests/remove-bitmap-from-backing
create mode 100644 tests/qemu-iotests/tests/remove-bitmap-from-backing.out
[PULL 00/10] Block layer fixes for 6.0-rc3
Posted by Kevin Wolf 3 years ago
The following changes since commit ce69aa92d71e13db9c3702a8e8305e8d2463aeb8:

  Merge remote-tracking branch 'remotes/jasowang/tags/net-pull-request' into staging (2021-04-08 16:45:31 +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 c2c731a4d35062295cd3260e66b3754588a2fad4:

  test-blockjob: Test job_wait_unpaused() (2021-04-09 18:00:29 +0200)

----------------------------------------------------------------
Block layer fixes

- mirror: Fix job-complete race condition causing unexpected errors
- fdc: Fix 'fallback' property on sysbus floppy disk controllers
- rbd: Fix memory leaks
- iotest improvements

----------------------------------------------------------------
Max Reitz (6):
      iotests/qsd-jobs: Filter events in the first test
      iotests: Test mirror-top filter permissions
      mirror: Move open_backing_file to exit_common
      mirror: Do not enter a paused job on completion
      job: Allow complete for jobs on standby
      test-blockjob: Test job_wait_unpaused()

Philippe Mathieu-Daudé (1):
      hw/block/fdc: Fix 'fallback' property on sysbus floppy disk controllers

Stefano Garzarella (2):
      block/rbd: fix memory leak in qemu_rbd_connect()
      block/rbd: fix memory leak in qemu_rbd_co_create_opts()

Vladimir Sementsov-Ogievskiy (1):
      iotests: add test for removing persistent bitmap from backing file

 block/mirror.c                                     |  28 +++--
 block/rbd.c                                        |  10 +-
 hw/block/fdc.c                                     |   4 +-
 job.c                                              |   4 +-
 tests/unit/test-blockjob.c                         | 121 +++++++++++++++++++++
 tests/qemu-iotests/tests/mirror-top-perms          | 121 +++++++++++++++++++++
 tests/qemu-iotests/tests/mirror-top-perms.out      |   5 +
 tests/qemu-iotests/tests/qsd-jobs                  |   5 +-
 tests/qemu-iotests/tests/qsd-jobs.out              |  10 --
 .../qemu-iotests/tests/remove-bitmap-from-backing  |  69 ++++++++++++
 .../tests/remove-bitmap-from-backing.out           |   6 +
 11 files changed, 349 insertions(+), 34 deletions(-)
 create mode 100755 tests/qemu-iotests/tests/mirror-top-perms
 create mode 100644 tests/qemu-iotests/tests/mirror-top-perms.out
 create mode 100755 tests/qemu-iotests/tests/remove-bitmap-from-backing
 create mode 100644 tests/qemu-iotests/tests/remove-bitmap-from-backing.out


Re: [PULL 00/10] Block layer fixes for 6.0-rc3
Posted by Peter Maydell 3 years ago
On Fri, 9 Apr 2021 at 17:16, Kevin Wolf <kwolf@redhat.com> wrote:
>
> The following changes since commit ce69aa92d71e13db9c3702a8e8305e8d2463aeb8:
>
>   Merge remote-tracking branch 'remotes/jasowang/tags/net-pull-request' into staging (2021-04-08 16:45:31 +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 c2c731a4d35062295cd3260e66b3754588a2fad4:
>
>   test-blockjob: Test job_wait_unpaused() (2021-04-09 18:00:29 +0200)
>
> ----------------------------------------------------------------
> Block layer fixes
>
> - mirror: Fix job-complete race condition causing unexpected errors
> - fdc: Fix 'fallback' property on sysbus floppy disk controllers
> - rbd: Fix memory leaks
> - iotest improvements


Applied, thanks.

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

-- PMM