mbox

[PULL,00/14] Block layer patches

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

Pull-request

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

Message

Kevin Wolf June 18, 2019, 3:23 p.m. UTC
The following changes since commit cdfaa2720f4a09e5254868bd1f6e33f3e9eae76f:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-monitor-2019-06-17-v2' into staging (2019-06-18 10:47:00 +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 128b05f7e00765d883164631b974a27af5b4b613:

  block/null: Expose read-zeroes option in QAPI schema (2019-06-18 16:41:10 +0200)

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

- block: Remove bs->job
- block: Ignore loosening perm restrictions failures
- block/null: Expose read-zeroes option in QAPI schema
- iotests: Hide timestamps for skipped tests

----------------------------------------------------------------
Kevin Wolf (1):
      block/null: Expose read-zeroes option in QAPI schema

Max Reitz (9):
      iotests: Hide timestamps for skipped tests
      file-posix: Update open_flags in raw_set_perm()
      block: Add bdrv_child_refresh_perms()
      block/mirror: Fix child permissions
      block/commit: Drop bdrv_child_try_set_perm()
      block: Fix order in bdrv_replace_child()
      block: Add *tighten_restrictions to *check*_perm()
      block: Ignore loosening perm restrictions failures
      iotests: Test failure to loosen restrictions

Vladimir Sementsov-Ogievskiy (4):
      block/replication: drop usage of bs->job
      block/block-backend: blk_iostatus_reset: drop usage of bs->job
      blockdev: blockdev_mark_auto_del: drop usage of bs->job
      block: drop bs->job

 qapi/block-core.json       |   4 +-
 include/block/block_int.h  |  30 ++++++---
 include/block/blockjob.h   |   9 +++
 block.c                    | 155 +++++++++++++++++++++++++++++++++++++--------
 block/block-backend.c      |   4 --
 block/commit.c             |   2 -
 block/file-posix.c         |   4 ++
 block/mirror.c             |  70 ++++++++++++--------
 block/replication.c        |  21 +++---
 blockdev.c                 |  19 +++---
 blockjob.c                 |  22 ++++---
 monitor/qmp-cmds.c         |   5 ++
 tests/test-blockjob.c      |   5 +-
 block/trace-events         |   2 +-
 tests/qemu-iotests/182     |  21 ++++++
 tests/qemu-iotests/182.out |   6 ++
 tests/qemu-iotests/check   |   1 +
 17 files changed, 283 insertions(+), 97 deletions(-)

Comments

Peter Maydell June 18, 2019, 4:32 p.m. UTC | #1
On Tue, 18 Jun 2019 at 16:59, Kevin Wolf <kwolf@redhat.com> wrote:
>
> The following changes since commit cdfaa2720f4a09e5254868bd1f6e33f3e9eae76f:
>
>   Merge remote-tracking branch 'remotes/armbru/tags/pull-monitor-2019-06-17-v2' into staging (2019-06-18 10:47:00 +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 128b05f7e00765d883164631b974a27af5b4b613:
>
>   block/null: Expose read-zeroes option in QAPI schema (2019-06-18 16:41:10 +0200)
>
> ----------------------------------------------------------------
> Block layer patches:
>
> - block: Remove bs->job
> - block: Ignore loosening perm restrictions failures
> - block/null: Expose read-zeroes option in QAPI schema
> - iotests: Hide timestamps for skipped tests
>


Applied, thanks.

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

-- PMM