qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PULL 00/34] Block patches


From: Max Reitz
Subject: [PULL 00/34] Block patches
Date: Mon, 6 Jan 2020 15:41:32 +0100

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 via email to

[Prev in Thread] Current Thread [Next in Thread]