qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Max Reitz <mreitz@redhat.com>
To: qemu-block@nongnu.org
Cc: Kevin Wolf <kwolf@redhat.com>,
	Peter Maydell <peter.maydell@linaro.org>,
	qemu-devel@nongnu.org, Max Reitz <mreitz@redhat.com>
Subject: [PULL 00/34] Block patches
Date: Mon,  6 Jan 2020 15:41:32 +0100	[thread overview]
Message-ID: <20200106144206.698920-1-mreitz@redhat.com> (raw)

The following changes since commit f17783e706ab9c7b3a2b69cf48e4f0ba40664f54:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20191220' into staging (2020-01-03 18:50:33 +0000)

are available in the Git repository at:

  https://github.com/XanClic/qemu.git tags/pull-block-2020-01-06

for you to fetch changes up to 503ca1262bab2c11c533a4816d1ff4297d4f58a6:

  backup-top: Begin drain earlier (2020-01-06 14:26:23 +0100)

----------------------------------------------------------------
Block patches:
- Minor fixes and tests from the freeze period (too minor to be included
  in 4.2)
- Allow many bash iotests to test qcow2's external data file feature
- Add compress filter driver
- Fix Python iotests after 6f6e1698a6
- Fix for the backup job

----------------------------------------------------------------
Andrey Shinkevich (3):
  block: introduce compress filter driver
  qcow2: Allow writing compressed data of multiple clusters
  tests/qemu-iotests: add case to write compressed data of multiple
    clusters

Max Reitz (28):
  block: Add bdrv_qapi_perm_to_blk_perm()
  block: Use bdrv_qapi_perm_to_blk_perm()
  blkdebug: Allow taking/unsharing permissions
  iotests: Add @error to wait_until_completed
  iotests: Add test for failing mirror complete
  iotests: s/qocw2/qcow2/
  iotests/qcow2.py: Add dump-header-exts
  iotests/qcow2.py: Split feature fields into bits
  iotests: Add _filter_json_filename
  iotests: Filter refcount_order in 036
  iotests: Replace IMGOPTS by _unsupported_imgopts
  iotests: Drop compat=1.1 in 050
  iotests: Let _make_test_img parse its parameters
  iotests: Add -o and --no-opts to _make_test_img
  iotests: Inject space into -ocompat=0.10 in 051
  iotests: Replace IMGOPTS= by -o
  iotests: Replace IMGOPTS='' by --no-opts
  iotests: Drop IMGOPTS use in 267
  iotests: Avoid qemu-img create
  iotests: Use _rm_test_img for deleting test images
  iotests: Avoid cp/mv of test images
  iotests: Make 091 work with data_file
  iotests: Make 110 work with data_file
  iotests: Make 137 work with data_file
  iotests: Make 198 work with data_file
  iotests: Disable data_file where it cannot be used
  iotests: Allow check -o data_file
  backup-top: Begin drain earlier

PanNengyuan (1):
  throttle-groups: fix memory leak in throttle_group_set_limit:

Philippe Mathieu-Daudé (1):
  tests/qemu-iotests: Update tests to recent desugarized -accel option

Vladimir Sementsov-Ogievskiy (1):
  qcow2-bitmaps: fix qcow2_can_store_new_dirty_bitmap

 block.c                          |  47 +++++----
 block/Makefile.objs              |   1 +
 block/backup-top.c               |   4 +-
 block/blkdebug.c                 |  93 ++++++++++++++++-
 block/filter-compress.c          | 168 +++++++++++++++++++++++++++++++
 block/qcow2-bitmap.c             |  41 ++++----
 block/qcow2.c                    | 102 ++++++++++++++-----
 block/throttle-groups.c          |   4 +-
 include/block/block.h            |   1 +
 qapi/block-core.json             |  24 ++++-
 tests/qemu-iotests/007           |   5 +-
 tests/qemu-iotests/014           |   2 +
 tests/qemu-iotests/015           |   5 +-
 tests/qemu-iotests/019           |   6 +-
 tests/qemu-iotests/020           |   6 +-
 tests/qemu-iotests/024           |  10 +-
 tests/qemu-iotests/026           |   5 +-
 tests/qemu-iotests/028           |   2 +-
 tests/qemu-iotests/029           |   7 +-
 tests/qemu-iotests/031           |   9 +-
 tests/qemu-iotests/031.out       |  36 +++----
 tests/qemu-iotests/036           |  15 +--
 tests/qemu-iotests/036.out       |  66 ++----------
 tests/qemu-iotests/039           |  27 ++---
 tests/qemu-iotests/039.out       |  22 ++--
 tests/qemu-iotests/041           |  44 ++++++++
 tests/qemu-iotests/041.out       |   4 +-
 tests/qemu-iotests/043           |   4 +-
 tests/qemu-iotests/046           |   2 +
 tests/qemu-iotests/048           |   4 +-
 tests/qemu-iotests/050           |   8 +-
 tests/qemu-iotests/051           |   7 +-
 tests/qemu-iotests/053           |   4 +-
 tests/qemu-iotests/058           |   7 +-
 tests/qemu-iotests/059           |  20 ++--
 tests/qemu-iotests/060           |  14 +--
 tests/qemu-iotests/060.out       |  20 ++--
 tests/qemu-iotests/061           |  63 ++++++------
 tests/qemu-iotests/061.out       |  72 ++++++-------
 tests/qemu-iotests/062           |   5 +-
 tests/qemu-iotests/063           |  18 ++--
 tests/qemu-iotests/063.out       |   3 +-
 tests/qemu-iotests/066           |   7 +-
 tests/qemu-iotests/067           |   6 +-
 tests/qemu-iotests/068           |   6 +-
 tests/qemu-iotests/069           |   2 +-
 tests/qemu-iotests/071           |   7 +-
 tests/qemu-iotests/073           |   4 +
 tests/qemu-iotests/074           |   4 +-
 tests/qemu-iotests/079           |   3 +-
 tests/qemu-iotests/080           |   7 +-
 tests/qemu-iotests/081           |   6 +-
 tests/qemu-iotests/085           |  18 ++--
 tests/qemu-iotests/085.out       |   8 +-
 tests/qemu-iotests/088           |   2 +-
 tests/qemu-iotests/090           |   2 +
 tests/qemu-iotests/091           |   2 +-
 tests/qemu-iotests/091.out       |   2 -
 tests/qemu-iotests/092           |   2 +-
 tests/qemu-iotests/094           |   4 +-
 tests/qemu-iotests/095           |   5 +-
 tests/qemu-iotests/098           |   6 +-
 tests/qemu-iotests/099           |  10 +-
 tests/qemu-iotests/103           |   5 +-
 tests/qemu-iotests/106           |   2 +-
 tests/qemu-iotests/108           |  10 +-
 tests/qemu-iotests/109           |   4 +-
 tests/qemu-iotests/110           |  11 +-
 tests/qemu-iotests/110.out       |   4 +-
 tests/qemu-iotests/111           |   3 +-
 tests/qemu-iotests/112           |  37 +++----
 tests/qemu-iotests/114           |   2 +
 tests/qemu-iotests/115           |   3 +-
 tests/qemu-iotests/121           |   9 +-
 tests/qemu-iotests/122           |   6 +-
 tests/qemu-iotests/123           |   4 +-
 tests/qemu-iotests/125           |   2 +-
 tests/qemu-iotests/137           |  17 +++-
 tests/qemu-iotests/137.out       |   6 +-
 tests/qemu-iotests/138           |   8 +-
 tests/qemu-iotests/141           |   4 +-
 tests/qemu-iotests/142           |   2 +-
 tests/qemu-iotests/144           |   4 +-
 tests/qemu-iotests/153           |  12 +--
 tests/qemu-iotests/156           |  10 +-
 tests/qemu-iotests/159           |   2 +-
 tests/qemu-iotests/160           |   3 +-
 tests/qemu-iotests/161           |   4 +-
 tests/qemu-iotests/170           |   2 +-
 tests/qemu-iotests/172           |   6 +-
 tests/qemu-iotests/173           |   3 +-
 tests/qemu-iotests/174           |   2 +-
 tests/qemu-iotests/175           |   2 +-
 tests/qemu-iotests/176           |   7 +-
 tests/qemu-iotests/178           |   6 +-
 tests/qemu-iotests/182           |   2 +-
 tests/qemu-iotests/183           |   2 +-
 tests/qemu-iotests/185           |   4 +-
 tests/qemu-iotests/187           |   6 +-
 tests/qemu-iotests/190           |   4 +-
 tests/qemu-iotests/191           |  11 +-
 tests/qemu-iotests/195           |   2 +-
 tests/qemu-iotests/197           |   6 +-
 tests/qemu-iotests/198           |   6 +-
 tests/qemu-iotests/198.out       |   4 +-
 tests/qemu-iotests/200           |   7 +-
 tests/qemu-iotests/201           |   6 +-
 tests/qemu-iotests/214           |  46 ++++++++-
 tests/qemu-iotests/214.out       |  14 +++
 tests/qemu-iotests/215           |   6 +-
 tests/qemu-iotests/217           |   3 +-
 tests/qemu-iotests/220           |   5 +-
 tests/qemu-iotests/225           |   2 +-
 tests/qemu-iotests/229           |   3 +-
 tests/qemu-iotests/232           |   4 +-
 tests/qemu-iotests/235           |   2 +-
 tests/qemu-iotests/243           |  10 +-
 tests/qemu-iotests/244           |  15 +--
 tests/qemu-iotests/247           |   4 +-
 tests/qemu-iotests/249           |   4 +-
 tests/qemu-iotests/250           |   5 +-
 tests/qemu-iotests/252           |   2 +-
 tests/qemu-iotests/261           |   5 +-
 tests/qemu-iotests/265           |   2 +-
 tests/qemu-iotests/267           |  17 ++--
 tests/qemu-iotests/273           |   3 +
 tests/qemu-iotests/check         |   6 +-
 tests/qemu-iotests/common.filter |  47 ++++++++-
 tests/qemu-iotests/common.rc     |  63 ++++++++++--
 tests/qemu-iotests/iotests.py    |  18 ++--
 tests/qemu-iotests/qcow2.py      |  23 ++++-
 131 files changed, 1139 insertions(+), 552 deletions(-)
 create mode 100644 block/filter-compress.c

-- 
2.24.1



             reply	other threads:[~2020-01-06 14:44 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-06 14:41 Max Reitz [this message]
2020-01-06 14:41 ` [PULL 01/34] block: Add bdrv_qapi_perm_to_blk_perm() Max Reitz
2020-01-06 14:41 ` [PULL 02/34] block: Use bdrv_qapi_perm_to_blk_perm() Max Reitz
2020-01-06 14:41 ` [PULL 03/34] blkdebug: Allow taking/unsharing permissions Max Reitz
2020-01-06 14:41 ` [PULL 04/34] iotests: Add @error to wait_until_completed Max Reitz
2020-01-06 14:41 ` [PULL 05/34] iotests: Add test for failing mirror complete Max Reitz
2020-01-06 14:41 ` [PULL 06/34] throttle-groups: fix memory leak in throttle_group_set_limit: Max Reitz
2020-01-06 14:41 ` [PULL 07/34] qcow2-bitmaps: fix qcow2_can_store_new_dirty_bitmap Max Reitz
2020-01-06 14:41 ` [PULL 08/34] iotests: s/qocw2/qcow2/ Max Reitz
2020-01-06 14:41 ` [PULL 09/34] iotests/qcow2.py: Add dump-header-exts Max Reitz
2020-01-06 14:41 ` [PULL 10/34] iotests/qcow2.py: Split feature fields into bits Max Reitz
2020-01-06 14:41 ` [PULL 11/34] iotests: Add _filter_json_filename Max Reitz
2020-01-06 14:41 ` [PULL 12/34] iotests: Filter refcount_order in 036 Max Reitz
2020-01-06 14:41 ` [PULL 13/34] iotests: Replace IMGOPTS by _unsupported_imgopts Max Reitz
2020-01-06 14:41 ` [PULL 14/34] iotests: Drop compat=1.1 in 050 Max Reitz
2020-01-06 14:41 ` [PULL 15/34] iotests: Let _make_test_img parse its parameters Max Reitz
2020-01-06 14:41 ` [PULL 16/34] iotests: Add -o and --no-opts to _make_test_img Max Reitz
2020-01-06 14:41 ` [PULL 17/34] iotests: Inject space into -ocompat=0.10 in 051 Max Reitz
2020-01-06 14:41 ` [PULL 18/34] iotests: Replace IMGOPTS= by -o Max Reitz
2020-01-06 14:41 ` [PULL 19/34] iotests: Replace IMGOPTS='' by --no-opts Max Reitz
2020-01-06 14:41 ` [PULL 20/34] iotests: Drop IMGOPTS use in 267 Max Reitz
2020-01-06 14:41 ` [PULL 21/34] iotests: Avoid qemu-img create Max Reitz
2020-01-06 14:41 ` [PULL 22/34] iotests: Use _rm_test_img for deleting test images Max Reitz
2020-01-06 14:41 ` [PULL 23/34] iotests: Avoid cp/mv of " Max Reitz
2020-01-06 14:41 ` [PULL 24/34] iotests: Make 091 work with data_file Max Reitz
2020-01-06 14:41 ` [PULL 25/34] iotests: Make 110 " Max Reitz
2020-01-06 14:41 ` [PULL 26/34] iotests: Make 137 " Max Reitz
2020-01-06 14:41 ` [PULL 27/34] iotests: Make 198 " Max Reitz
2020-01-06 14:42 ` [PULL 28/34] iotests: Disable data_file where it cannot be used Max Reitz
2020-01-06 14:42 ` [PULL 29/34] iotests: Allow check -o data_file Max Reitz
2020-01-06 14:42 ` [PULL 30/34] block: introduce compress filter driver Max Reitz
2020-01-06 14:42 ` [PULL 31/34] qcow2: Allow writing compressed data of multiple clusters Max Reitz
2020-01-06 14:42 ` [PULL 32/34] tests/qemu-iotests: add case to write " Max Reitz
2020-01-06 14:42 ` [PULL 33/34] tests/qemu-iotests: Update tests to recent desugarized -accel option Max Reitz
2020-01-06 14:42 ` [PULL 34/34] backup-top: Begin drain earlier Max Reitz
2020-01-06 18:22 ` [PULL 00/34] Block patches Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2020-08-25  8:32 Max Reitz
2020-08-25 14:01 ` Peter Maydell
2020-08-25 14:22   ` Alberto Garcia
2020-08-25 15:13     ` Max Reitz

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200106144206.698920-1-mreitz@redhat.com \
    --to=mreitz@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-block@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).