mbox

[PULL,0/6] Block jobs patches for 2024-04-29

Message ID 20240429115157.2260885-1-vsementsov@yandex-team.ru (mailing list archive)
State New
Headers show

Pull-request

https://gitlab.com/vsementsov/qemu.git tags/pull-block-jobs-2024-04-29

Message

Vladimir Sementsov-Ogievskiy April 29, 2024, 11:51 a.m. UTC
The following changes since commit fd87be1dada5672f877e03c2ca8504458292c479:

  Merge tag 'accel-20240426' of https://github.com/philmd/qemu into staging (2024-04-26 15:28:13 -0700)

are available in the Git repository at:

  https://gitlab.com/vsementsov/qemu.git tags/pull-block-jobs-2024-04-29

for you to fetch changes up to 2ca7608c6b8d57fd6347b11af12a0f035263efef:

  iotests: add backup-discard-source (2024-04-29 13:35:30 +0300)

----------------------------------------------------------------
Block jobs patches for 2024-04-29

- backup: discard-source parameter
- blockcommit: Reopen base image as RO after abort

----------------------------------------------------------------
Alexander Ivanov (1):
      blockcommit: Reopen base image as RO after abort

Vladimir Sementsov-Ogievskiy (5):
      block/copy-before-write: fix permission
      block/copy-before-write: support unligned snapshot-discard
      block/copy-before-write: create block_copy bitmap in filter node
      qapi: blockdev-backup: add discard-source parameter
      iotests: add backup-discard-source

 block/backup.c                                     |   5 +-
 block/block-copy.c                                 |  12 +-
 block/copy-before-write.c                          |  39 +++++--
 block/copy-before-write.h                          |   1 +
 block/mirror.c                                     |  11 +-
 block/replication.c                                |   4 +-
 blockdev.c                                         |   2 +-
 include/block/block-common.h                       |   2 +
 include/block/block-copy.h                         |   2 +
 include/block/block_int-global-state.h             |   2 +-
 qapi/block-core.json                               |   4 +
 tests/qemu-iotests/257.out                         | 112 +++++++++---------
 tests/qemu-iotests/tests/backup-discard-source     | 152 +++++++++++++++++++++++++
 tests/qemu-iotests/tests/backup-discard-source.out |   5 +
 14 files changed, 281 insertions(+), 72 deletions(-)
 create mode 100755 tests/qemu-iotests/tests/backup-discard-source
 create mode 100644 tests/qemu-iotests/tests/backup-discard-source.out

Alexander Ivanov (1):
  blockcommit: Reopen base image as RO after abort

Vladimir Sementsov-Ogievskiy (5):
  block/copy-before-write: fix permission
  block/copy-before-write: support unligned snapshot-discard
  block/copy-before-write: create block_copy bitmap in filter node
  qapi: blockdev-backup: add discard-source parameter
  iotests: add backup-discard-source

 block/backup.c                                |   5 +-
 block/block-copy.c                            |  12 +-
 block/copy-before-write.c                     |  39 ++++-
 block/copy-before-write.h                     |   1 +
 block/mirror.c                                |  11 +-
 block/replication.c                           |   4 +-
 blockdev.c                                    |   2 +-
 include/block/block-common.h                  |   2 +
 include/block/block-copy.h                    |   2 +
 include/block/block_int-global-state.h        |   2 +-
 qapi/block-core.json                          |   4 +
 tests/qemu-iotests/257.out                    | 112 ++++++-------
 .../qemu-iotests/tests/backup-discard-source  | 152 ++++++++++++++++++
 .../tests/backup-discard-source.out           |   5 +
 14 files changed, 281 insertions(+), 72 deletions(-)
 create mode 100755 tests/qemu-iotests/tests/backup-discard-source
 create mode 100644 tests/qemu-iotests/tests/backup-discard-source.out

Comments

Vladimir Sementsov-Ogievskiy April 29, 2024, 11:53 a.m. UTC | #1
Sorry for too much CC-ing, I've mistakenly added --cc-cmd=./scripts/get_maintainer.pl


On 29.04.24 14:51, Vladimir Sementsov-Ogievskiy wrote:
> The following changes since commit fd87be1dada5672f877e03c2ca8504458292c479:
> 
>    Merge tag 'accel-20240426' of https://github.com/philmd/qemu into staging (2024-04-26 15:28:13 -0700)
> 
> are available in the Git repository at:
> 
>    https://gitlab.com/vsementsov/qemu.git tags/pull-block-jobs-2024-04-29
> 
> for you to fetch changes up to 2ca7608c6b8d57fd6347b11af12a0f035263efef:
> 
>    iotests: add backup-discard-source (2024-04-29 13:35:30 +0300)
> 
> ----------------------------------------------------------------
> Block jobs patches for 2024-04-29
> 
> - backup: discard-source parameter
> - blockcommit: Reopen base image as RO after abort
> 
> ----------------------------------------------------------------
> Alexander Ivanov (1):
>        blockcommit: Reopen base image as RO after abort
> 
> Vladimir Sementsov-Ogievskiy (5):
>        block/copy-before-write: fix permission
>        block/copy-before-write: support unligned snapshot-discard
>        block/copy-before-write: create block_copy bitmap in filter node
>        qapi: blockdev-backup: add discard-source parameter
>        iotests: add backup-discard-source
> 
>   block/backup.c                                     |   5 +-
>   block/block-copy.c                                 |  12 +-
>   block/copy-before-write.c                          |  39 +++++--
>   block/copy-before-write.h                          |   1 +
>   block/mirror.c                                     |  11 +-
>   block/replication.c                                |   4 +-
>   blockdev.c                                         |   2 +-
>   include/block/block-common.h                       |   2 +
>   include/block/block-copy.h                         |   2 +
>   include/block/block_int-global-state.h             |   2 +-
>   qapi/block-core.json                               |   4 +
>   tests/qemu-iotests/257.out                         | 112 +++++++++---------
>   tests/qemu-iotests/tests/backup-discard-source     | 152 +++++++++++++++++++++++++
>   tests/qemu-iotests/tests/backup-discard-source.out |   5 +
>   14 files changed, 281 insertions(+), 72 deletions(-)
>   create mode 100755 tests/qemu-iotests/tests/backup-discard-source
>   create mode 100644 tests/qemu-iotests/tests/backup-discard-source.out
> 
> Alexander Ivanov (1):
>    blockcommit: Reopen base image as RO after abort
> 
> Vladimir Sementsov-Ogievskiy (5):
>    block/copy-before-write: fix permission
>    block/copy-before-write: support unligned snapshot-discard
>    block/copy-before-write: create block_copy bitmap in filter node
>    qapi: blockdev-backup: add discard-source parameter
>    iotests: add backup-discard-source
> 
>   block/backup.c                                |   5 +-
>   block/block-copy.c                            |  12 +-
>   block/copy-before-write.c                     |  39 ++++-
>   block/copy-before-write.h                     |   1 +
>   block/mirror.c                                |  11 +-
>   block/replication.c                           |   4 +-
>   blockdev.c                                    |   2 +-
>   include/block/block-common.h                  |   2 +
>   include/block/block-copy.h                    |   2 +
>   include/block/block_int-global-state.h        |   2 +-
>   qapi/block-core.json                          |   4 +
>   tests/qemu-iotests/257.out                    | 112 ++++++-------
>   .../qemu-iotests/tests/backup-discard-source  | 152 ++++++++++++++++++
>   .../tests/backup-discard-source.out           |   5 +
>   14 files changed, 281 insertions(+), 72 deletions(-)
>   create mode 100755 tests/qemu-iotests/tests/backup-discard-source
>   create mode 100644 tests/qemu-iotests/tests/backup-discard-source.out
>