[PULL 00/15] bitmaps patches for 2020-06-09

Eric Blake posted 15 patches 3 years, 10 months ago
Test asan passed
Test docker-mingw@fedora passed
Test checkpatch passed
Test docker-quick@centos7 passed
Test FreeBSD passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20200609205245.3548257-1-eblake@redhat.com
Maintainers: Max Reitz <mreitz@redhat.com>, Kevin Wolf <kwolf@redhat.com>
docs/tools/qemu-img.rst            |   2 +-
tests/qemu-iotests/031.out         |  22 +--
tests/qemu-iotests/036.out         |   4 +-
tests/qemu-iotests/061.out         |  14 +-
tests/qemu-iotests/291             |   8 +-
tests/qemu-iotests/291.out         |  37 ++++-
tests/qemu-iotests/qcow2.py        | 218 +++++++---------------------
tests/qemu-iotests/qcow2_format.py | 286 +++++++++++++++++++++++++++++++++++++
8 files changed, 398 insertions(+), 193 deletions(-)
create mode 100644 tests/qemu-iotests/qcow2_format.py
[PULL 00/15] bitmaps patches for 2020-06-09
Posted by Eric Blake 3 years, 10 months ago
The following changes since commit 31d321c2b3574dcc74e9f6411af06bca6b5d10f4:

  Merge remote-tracking branch 'remotes/philmd-gitlab/tags/sparc-next-20200609' into staging (2020-06-09 17:29:47 +0100)

are available in the Git repository at:

  https://repo.or.cz/qemu/ericb.git tags/pull-bitmaps-2020-06-09

for you to fetch changes up to adf92f4645ba46726368735916fed763d3e5a09b:

  iotests: Fix 291 across more file systems (2020-06-09 15:48:00 -0500)

----------------------------------------------------------------
bitmaps patches for 2020-06-09

- documenation fix
- various improvements to qcow2.py program used in iotests

----------------------------------------------------------------
Eric Blake (2):
      qemu-img: Fix doc typo for 'bitmap' subcommand
      iotests: Fix 291 across more file systems

Vladimir Sementsov-Ogievskiy (13):
      qcow2.py: python style fixes
      qcow2.py: add licensing blurb
      qcow2.py: move qcow2 format classes to separate module
      qcow2_format.py: drop new line printing at end of dump()
      qcow2_format.py: use tuples instead of lists for fields
      qcow2_format.py: use modern string formatting
      qcow2_format.py: use strings to specify c-type of struct fields
      qcow2_format.py: separate generic functionality of structure classes
      qcow2_format.py: add field-formatting class
      qcow2_format.py: QcowHeaderExtension: add dump method
      qcow2_format: refactor QcowHeaderExtension as a subclass of Qcow2Struct
      qcow2: QcowHeaderExtension print names for extension magics
      qcow2_format.py: dump bitmaps header extension

 docs/tools/qemu-img.rst            |   2 +-
 tests/qemu-iotests/031.out         |  22 +--
 tests/qemu-iotests/036.out         |   4 +-
 tests/qemu-iotests/061.out         |  14 +-
 tests/qemu-iotests/291             |   8 +-
 tests/qemu-iotests/291.out         |  37 ++++-
 tests/qemu-iotests/qcow2.py        | 218 +++++++---------------------
 tests/qemu-iotests/qcow2_format.py | 286 +++++++++++++++++++++++++++++++++++++
 8 files changed, 398 insertions(+), 193 deletions(-)
 create mode 100644 tests/qemu-iotests/qcow2_format.py

-- 
2.27.0


Re: [PULL 00/15] bitmaps patches for 2020-06-09
Posted by Peter Maydell 3 years, 10 months ago
On Tue, 9 Jun 2020 at 21:53, Eric Blake <eblake@redhat.com> wrote:
>
> The following changes since commit 31d321c2b3574dcc74e9f6411af06bca6b5d10f4:
>
>   Merge remote-tracking branch 'remotes/philmd-gitlab/tags/sparc-next-20200609' into staging (2020-06-09 17:29:47 +0100)
>
> are available in the Git repository at:
>
>   https://repo.or.cz/qemu/ericb.git tags/pull-bitmaps-2020-06-09
>
> for you to fetch changes up to adf92f4645ba46726368735916fed763d3e5a09b:
>
>   iotests: Fix 291 across more file systems (2020-06-09 15:48:00 -0500)
>
> ----------------------------------------------------------------
> bitmaps patches for 2020-06-09
>
> - documenation fix
> - various improvements to qcow2.py program used in iotests
>


Applied, thanks.

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

-- PMM