All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL v3] Block layer patches
@ 2020-09-10  9:15 Kevin Wolf
  2020-09-11 17:58 ` Peter Maydell
  0 siblings, 1 reply; 5+ messages in thread
From: Kevin Wolf @ 2020-09-10  9:15 UTC (permalink / raw)
  To: qemu-block; +Cc: kwolf, peter.maydell, qemu-devel

The following changes since commit 7c37270b3fbe3d034ba80e488761461676e21eb4:

  Merge remote-tracking branch 'remotes/kraxel/tags/ui-20200904-pull-request' into staging (2020-09-06 16:23:55 +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 b9be6faed1a069526efdc80df7318b16afc6e116:

  block/qcow2-cluster: Add missing "fallthrough" annotation (2020-09-10 11:11:13 +0200)

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

- qemu-img create: Fail gracefully when backing file is an empty string
- Fixes related to filter block nodes ("Deal with filters" series)
- block/nvme: Various cleanups required to use multiple queues
- block/nvme: Use NvmeBar structure from "block/nvme.h"
- file-win32: Fix "locking" option
- iotests: Allow running from different directory

----------------------------------------------------------------
Connor Kuehl (1):
      block: Raise an error when backing file parameter is an empty string

Kevin Wolf (2):
      iotests: Allow running from different directory
      file-win32: Fix "locking" option

Max Reitz (43):
      block: Add child access functions
      block: Add chain helper functions
      block: bdrv_cow_child() for bdrv_has_zero_init()
      block: bdrv_set_backing_hd() is about bs->backing
      block: Include filters when freezing backing chain
      block: Drop bdrv_is_encrypted()
      block: Add bdrv_supports_compressed_writes()
      throttle: Support compressed writes
      copy-on-read: Support compressed writes
      block: Use bdrv_filter_(bs|child) where obvious
      block: Use CAFs in block status functions
      stream: Deal with filters
      block: Use CAFs when working with backing chains
      block: Use bdrv_cow_child() in bdrv_co_truncate()
      block: Re-evaluate backing file handling in reopen
      block: Flush all children in generic code
      vmdk: Drop vmdk_co_flush()
      block: Iterate over children in refresh_limits
      block: Use CAFs in bdrv_refresh_filename()
      block: Use CAF in bdrv_co_rw_vmstate()
      block/snapshot: Fix fallback
      block: Use CAFs for debug breakpoints
      block: Improve get_allocated_file_size's default
      block/null: Implement bdrv_get_allocated_file_size
      blockdev: Use CAF in external_snapshot_prepare()
      block: Report data child for query-blockstats
      block: Use child access functions for QAPI queries
      block-copy: Use CAF to find sync=top base
      mirror: Deal with filters
      backup: Deal with filters
      commit: Deal with filters
      nbd: Use CAF when looking for dirty bitmap
      qemu-img: Use child access functions
      block: Drop backing_bs()
      blockdev: Fix active commit choice
      block: Inline bdrv_co_block_status_from_*()
      block: Leave BDS.backing_{file,format} constant
      iotests: Test that qcow2's data-file is flushed
      iotests: Let complete_and_wait() work with commit
      iotests: Add filter commit test cases
      iotests: Add filter mirror test cases
      iotests: Add test for commit in sub directory
      iotests: Test committing to overridden backing

Philippe Mathieu-Daudé (18):
      block/nvme: Replace magic value by SCALE_MS definition
      block/nvme: Avoid further processing if trace event not enabled
      block/nvme: Let nvme_create_queue_pair() fail gracefully
      block/nvme: Define INDEX macros to ease code review
      block/nvme: Improve error message when IO queue creation failed
      block/nvme: Use common error path in nvme_add_io_queue()
      block/nvme: Rename local variable
      block/nvme: Use union of NvmeIdCtrl / NvmeIdNs structures
      block/nvme: Replace qemu_try_blockalign0 by qemu_try_blockalign/memset
      block/nvme: Replace qemu_try_blockalign(bs) by qemu_try_memalign(pg_sz)
      block/nvme: Simplify nvme_init_queue() arguments
      block/nvme: Replace BDRV_POLL_WHILE by AIO_WAIT_WHILE
      block/nvme: Simplify nvme_create_queue_pair() arguments
      block/nvme: Extract nvme_poll_queue()
      block/nvme: Use an array of EventNotifier
      block/nvme: Group controller registers in NVMeRegs structure
      block/nvme: Use generic NvmeBar structure
      block/nvme: Pair doorbell registers

Thomas Huth (1):
      block/qcow2-cluster: Add missing "fallthrough" annotation

 qapi/block-core.json           |  58 +++--
 include/block/block.h          |   2 +-
 include/block/block_int.h      |  95 +++++---
 block.c                        | 492 +++++++++++++++++++++++++++++++++--------
 block/backup-top.c             |   4 +-
 block/backup.c                 |   9 +-
 block/blkdebug.c               |   7 +-
 block/blklogwrites.c           |   1 -
 block/block-backend.c          |   7 +-
 block/block-copy.c             |   4 +-
 block/commit.c                 |  95 +++++---
 block/copy-on-read.c           |  13 +-
 block/file-win32.c             |  22 +-
 block/filter-compress.c        |   2 -
 block/io.c                     | 142 ++++++------
 block/mirror.c                 | 119 +++++++---
 block/monitor/block-hmp-cmds.c |   2 +-
 block/null.c                   |   7 +
 block/nvme.c                   | 248 +++++++++++----------
 block/qapi.c                   |  74 +++++--
 block/qcow2-cluster.c          |   1 +
 block/snapshot.c               | 104 +++++++--
 block/stream.c                 |  63 ++++--
 block/throttle.c               |  11 +-
 block/vmdk.c                   |  16 --
 blockdev.c                     | 101 +++++++--
 migration/block-dirty-bitmap.c |   8 +-
 nbd/server.c                   |   6 +-
 qemu-img.c                     |  43 ++--
 tests/qemu-iotests/iotests.py  |  10 +-
 tests/qemu-iotests/020         |  44 ++++
 tests/qemu-iotests/020.out     |  10 +
 tests/qemu-iotests/040         | 238 ++++++++++++++++++++
 tests/qemu-iotests/040.out     |   4 +-
 tests/qemu-iotests/041         | 146 +++++++++++-
 tests/qemu-iotests/041.out     |   4 +-
 tests/qemu-iotests/049         |   4 +
 tests/qemu-iotests/049.out     |   5 +
 tests/qemu-iotests/153.out     |   2 +-
 tests/qemu-iotests/184         |   3 +-
 tests/qemu-iotests/184.out     |  14 +-
 tests/qemu-iotests/204.out     |   1 +
 tests/qemu-iotests/228         |   6 +-
 tests/qemu-iotests/228.out     |   6 +-
 tests/qemu-iotests/244         |  49 ++++
 tests/qemu-iotests/244.out     |   7 +
 tests/qemu-iotests/245         |   4 +-
 tests/qemu-iotests/273.out     |   4 +-
 tests/qemu-iotests/check       |   2 +-
 49 files changed, 1764 insertions(+), 555 deletions(-)



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PULL v3] Block layer patches
  2020-09-10  9:15 [PULL v3] Block layer patches Kevin Wolf
@ 2020-09-11 17:58 ` Peter Maydell
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Maydell @ 2020-09-11 17:58 UTC (permalink / raw)
  To: Kevin Wolf; +Cc: QEMU Developers, Qemu-block

On Thu, 10 Sep 2020 at 10:15, Kevin Wolf <kwolf@redhat.com> wrote:
>
> The following changes since commit 7c37270b3fbe3d034ba80e488761461676e21eb4:
>
>   Merge remote-tracking branch 'remotes/kraxel/tags/ui-20200904-pull-request' into staging (2020-09-06 16:23:55 +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 b9be6faed1a069526efdc80df7318b16afc6e116:
>
>   block/qcow2-cluster: Add missing "fallthrough" annotation (2020-09-10 11:11:13 +0200)
>
> ----------------------------------------------------------------
> Block layer patches:
>
> - qemu-img create: Fail gracefully when backing file is an empty string
> - Fixes related to filter block nodes ("Deal with filters" series)
> - block/nvme: Various cleanups required to use multiple queues
> - block/nvme: Use NvmeBar structure from "block/nvme.h"
> - file-win32: Fix "locking" option
> - iotests: Allow running from different directory
>
> ----------------------------------------------------------------


Applied, thanks.

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

-- PMM


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PULL v3] Block layer patches
  2020-07-13 14:33 Kevin Wolf
  2020-07-14 12:51 ` Peter Maydell
@ 2020-07-14 19:23 ` Peter Maydell
  1 sibling, 0 replies; 5+ messages in thread
From: Peter Maydell @ 2020-07-14 19:23 UTC (permalink / raw)
  To: Kevin Wolf; +Cc: QEMU Developers, Qemu-block

On Mon, 13 Jul 2020 at 15:33, Kevin Wolf <kwolf@redhat.com> wrote:
>
> The following changes since commit 6c87d9f311dba0641bdc2df556056938a8bf2a12:
>
>   Merge remote-tracking branch 'remotes/elmarco/tags/chardev-pull-request' into staging (2020-07-13 09:34:24 +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 7637b225a8d59a3b9b0e31bbc4eb8a0788792ac5:
>
>   block: Avoid stale pointer dereference in blk_get_aio_context() (2020-07-13 15:57:13 +0200)
>
> ----------------------------------------------------------------
> Block layer patches:
>
> - file-posix: Mitigate file fragmentation with extent size hints
> - Tighten qemu-img rules on missing backing format
> - qemu-img map: Don't limit block status request size
> - Fix crash with virtio-scsi and iothreads
>

Applied (fixed version), thanks.

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

-- PMM


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PULL v3] Block layer patches
  2020-07-13 14:33 Kevin Wolf
@ 2020-07-14 12:51 ` Peter Maydell
  2020-07-14 19:23 ` Peter Maydell
  1 sibling, 0 replies; 5+ messages in thread
From: Peter Maydell @ 2020-07-14 12:51 UTC (permalink / raw)
  To: Kevin Wolf; +Cc: QEMU Developers, Qemu-block

On Mon, 13 Jul 2020 at 15:33, Kevin Wolf <kwolf@redhat.com> wrote:
>
> The following changes since commit 6c87d9f311dba0641bdc2df556056938a8bf2a12:
>
>   Merge remote-tracking branch 'remotes/elmarco/tags/chardev-pull-request' into staging (2020-07-13 09:34:24 +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 7637b225a8d59a3b9b0e31bbc4eb8a0788792ac5:
>
>   block: Avoid stale pointer dereference in blk_get_aio_context() (2020-07-13 15:57:13 +0200)
>
> ----------------------------------------------------------------
> Block layer patches:
>
> - file-posix: Mitigate file fragmentation with extent size hints
> - Tighten qemu-img rules on missing backing format
> - qemu-img map: Don't limit block status request size
> - Fix crash with virtio-scsi and iothreads
>
> ----------------------------------------------------------------

Fails on OpenBSD:

  TEST    iotest-qcow2: 114 [fail]
QEMU          --
"/home/qemu/qemu-test.yVOWVF/build/tests/qemu-iotests/../../aarch64-softmmu/qemu-system-aarch64"
-nodefaults -display none -machine virt -accel qtest
QEMU_IMG      --
"/home/qemu/qemu-test.yVOWVF/build/tests/qemu-iotests/../../qemu-img"
QEMU_IO       --
"/home/qemu/qemu-test.yVOWVF/build/tests/qemu-iotests/../../qemu-io"
--cache writeback --aio threads -f qcow2
QEMU_NBD      --
"/home/qemu/qemu-test.yVOWVF/build/tests/qemu-iotests/../../qemu-nbd"
IMGFMT        -- qcow2 (compat=1.1)
IMGPROTO      -- file
PLATFORM      -- OpenBSD/amd64 openbsd 6.6
TEST_DIR      -- /home/qemu/qemu-test.yVOWVF/build/tests/qemu-iotests/scratch
SOCK_DIR      -- /tmp/tmp.fiTIG5IIBg
SOCKET_SCM_HELPER --

--- /home/qemu/qemu-test.yVOWVF/src/tests/qemu-iotests/114.out  Mon
Jul 13 17:59:07 2020
+++ /home/qemu/qemu-test.yVOWVF/build/tests/qemu-iotests/114.out.bad
 Tue Jul 14 12:39:01 2020
@@ -1,8 +1,9 @@
 QA output created by 114
-qemu-img: warning: Deprecated use of backing file without explicit
backing format (detected format of raw)
-Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864
backing_file=TEST_DIR/t.IMGFMT.orig
+./114: line 48: truncate: command not found
+qemu-img: TEST_DIR/t.IMGFMT: Could not open 'TEST_DIR/t.IMGFMT.orig':
No such file or directory
+Could not open backing image.
 Formatting 'TEST_DIR/t.IMGFMT.base', fmt=IMGFMT size=67108864
-qemu-img: warning: Deprecated use of backing file without explicit
backing format
+qemu-img: Could not open
'/home/qemu/qemu-test.yVOWVF/build/tests/qemu-iotests/scratch/t.qcow2.orig':
Could not open '/home/qemu/qemu-test.yVOWVF/build/tests/qemu-iotests/scratch/t.qcow2.orig':
No such file or directory
 qemu-img: warning: Deprecated use of backing file without explicit
backing format (detected format of IMGFMT)
 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864
backing_file=TEST_DIR/t.IMGFMT.base backing_fmt=IMGFMT
 qemu-img: warning: Deprecated use of unopened backing file without
explicit backing format, use of this image requires potentially unsafe
format probing
  TEST    iotest-qcow2: 117

thanks
-- PMM


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PULL v3] Block layer patches
@ 2020-07-13 14:33 Kevin Wolf
  2020-07-14 12:51 ` Peter Maydell
  2020-07-14 19:23 ` Peter Maydell
  0 siblings, 2 replies; 5+ messages in thread
From: Kevin Wolf @ 2020-07-13 14:33 UTC (permalink / raw)
  To: qemu-block; +Cc: kwolf, peter.maydell, qemu-devel

The following changes since commit 6c87d9f311dba0641bdc2df556056938a8bf2a12:

  Merge remote-tracking branch 'remotes/elmarco/tags/chardev-pull-request' into staging (2020-07-13 09:34:24 +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 7637b225a8d59a3b9b0e31bbc4eb8a0788792ac5:

  block: Avoid stale pointer dereference in blk_get_aio_context() (2020-07-13 15:57:13 +0200)

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

- file-posix: Mitigate file fragmentation with extent size hints
- Tighten qemu-img rules on missing backing format
- qemu-img map: Don't limit block status request size
- Fix crash with virtio-scsi and iothreads

----------------------------------------------------------------
Eric Blake (10):
      qemu-img: Flush stdout before before potential stderr messages
      block: Finish deprecation of 'qemu-img convert -n -o'
      sheepdog: Add trivial backing_fmt support
      vmdk: Add trivial backing_fmt support
      qcow: Tolerate backing_fmt=
      block: Error if backing file fails during creation without -u
      qcow2: Deprecate use of qemu-img amend to change backing file
      iotests: Specify explicit backing format where sensible
      block: Add support to warn on backing file change without format
      qemu-img: Deprecate use of -b without -F

Greg Kurz (1):
      block: Avoid stale pointer dereference in blk_get_aio_context()

Kevin Wolf (3):
      qemu-img map: Don't limit block status request size
      iotests/059: Filter out disk size with more standard filter
      file-posix: Mitigate file fragmentation with extent size hints

Max Reitz (1):
      iotests: Simplify _filter_img_create() a bit

 qapi/block-core.json             |   11 +-
 docs/system/deprecated.rst       |   58 ++-
 docs/tools/qemu-img.rst          |    4 +
 include/block/block.h            |    4 +-
 include/block/block_int.h        |    1 +
 block.c                          |   53 +-
 block/block-backend.c            |    4 +-
 block/file-posix.c               |   44 ++
 block/qcow.c                     |   20 +-
 block/qcow2.c                    |    7 +-
 block/sheepdog.c                 |   18 +-
 block/stream.c                   |    2 +-
 block/vmdk.c                     |   14 +
 blockdev.c                       |    3 +-
 qemu-img.c                       |   20 +-
 tests/qemu-iotests/017           |    2 +-
 tests/qemu-iotests/017.out       |    2 +-
 tests/qemu-iotests/018           |    2 +-
 tests/qemu-iotests/018.out       |    2 +-
 tests/qemu-iotests/019           |    5 +-
 tests/qemu-iotests/019.out       |    2 +-
 tests/qemu-iotests/020           |   31 +-
 tests/qemu-iotests/020.out       |   15 +-
 tests/qemu-iotests/024           |   10 +-
 tests/qemu-iotests/024.out       |    4 +-
 tests/qemu-iotests/028           |    4 +-
 tests/qemu-iotests/028.out       |    2 +-
 tests/qemu-iotests/030           |   26 +-
 tests/qemu-iotests/034           |    2 +-
 tests/qemu-iotests/034.out       |    2 +-
 tests/qemu-iotests/037           |    2 +-
 tests/qemu-iotests/037.out       |    2 +-
 tests/qemu-iotests/038           |    2 +-
 tests/qemu-iotests/038.out       |    2 +-
 tests/qemu-iotests/039           |    3 +-
 tests/qemu-iotests/039.out       |    2 +-
 tests/qemu-iotests/040           |   47 +-
 tests/qemu-iotests/041           |   37 +-
 tests/qemu-iotests/042           |    4 +-
 tests/qemu-iotests/043           |   23 +-
 tests/qemu-iotests/043.out       |   12 +-
 tests/qemu-iotests/046           |    2 +-
 tests/qemu-iotests/046.out       |    2 +-
 tests/qemu-iotests/049.out       |    8 +-
 tests/qemu-iotests/050           |    4 +-
 tests/qemu-iotests/050.out       |    2 +-
 tests/qemu-iotests/051           |    2 +-
 tests/qemu-iotests/051.out       |    2 +-
 tests/qemu-iotests/051.pc.out    |    2 +-
 tests/qemu-iotests/054.out       |    2 +-
 tests/qemu-iotests/056           |    3 +-
 tests/qemu-iotests/059           |    2 +-
 tests/qemu-iotests/059.out       | 1009 +++++++++++++++++++-------------------
 tests/qemu-iotests/060           |    2 +-
 tests/qemu-iotests/060.out       |    2 +-
 tests/qemu-iotests/061           |   10 +-
 tests/qemu-iotests/061.out       |   11 +-
 tests/qemu-iotests/069           |    2 +-
 tests/qemu-iotests/069.out       |    2 +-
 tests/qemu-iotests/073           |    2 +-
 tests/qemu-iotests/073.out       |    2 +-
 tests/qemu-iotests/079.out       |    2 +-
 tests/qemu-iotests/082           |   10 +-
 tests/qemu-iotests/082.out       |   30 +-
 tests/qemu-iotests/085           |    4 +-
 tests/qemu-iotests/085.out       |    6 +-
 tests/qemu-iotests/089           |    2 +-
 tests/qemu-iotests/089.out       |    2 +-
 tests/qemu-iotests/095           |    4 +-
 tests/qemu-iotests/095.out       |    4 +-
 tests/qemu-iotests/097           |    4 +-
 tests/qemu-iotests/097.out       |   16 +-
 tests/qemu-iotests/098           |    2 +-
 tests/qemu-iotests/098.out       |    8 +-
 tests/qemu-iotests/106           |    7 +-
 tests/qemu-iotests/110           |    4 +-
 tests/qemu-iotests/110.out       |    4 +-
 tests/qemu-iotests/111.out       |    2 +-
 tests/qemu-iotests/112.out       |    4 +-
 tests/qemu-iotests/114           |   12 +
 tests/qemu-iotests/114.out       |    9 +
 tests/qemu-iotests/122           |   34 +-
 tests/qemu-iotests/122.out       |   12 +-
 tests/qemu-iotests/126           |    4 +-
 tests/qemu-iotests/126.out       |    4 +-
 tests/qemu-iotests/127           |    4 +-
 tests/qemu-iotests/127.out       |    4 +-
 tests/qemu-iotests/129           |    3 +-
 tests/qemu-iotests/133           |    2 +-
 tests/qemu-iotests/133.out       |    2 +-
 tests/qemu-iotests/139           |    2 +-
 tests/qemu-iotests/141           |    6 +-
 tests/qemu-iotests/141.out       |    4 +-
 tests/qemu-iotests/142           |    2 +-
 tests/qemu-iotests/142.out       |    2 +-
 tests/qemu-iotests/153           |   14 +-
 tests/qemu-iotests/153.out       |   35 +-
 tests/qemu-iotests/154           |   42 +-
 tests/qemu-iotests/154.out       |   42 +-
 tests/qemu-iotests/155           |   12 +-
 tests/qemu-iotests/156           |    9 +-
 tests/qemu-iotests/156.out       |    6 +-
 tests/qemu-iotests/158           |    2 +-
 tests/qemu-iotests/158.out       |    2 +-
 tests/qemu-iotests/161           |    8 +-
 tests/qemu-iotests/161.out       |    8 +-
 tests/qemu-iotests/175           |    6 +-
 tests/qemu-iotests/176           |    4 +-
 tests/qemu-iotests/176.out       |   32 +-
 tests/qemu-iotests/177           |    2 +-
 tests/qemu-iotests/177.out       |    2 +-
 tests/qemu-iotests/179           |    2 +-
 tests/qemu-iotests/179.out       |    2 +-
 tests/qemu-iotests/189           |    2 +-
 tests/qemu-iotests/189.out       |    2 +-
 tests/qemu-iotests/191           |   12 +-
 tests/qemu-iotests/191.out       |   12 +-
 tests/qemu-iotests/195           |    6 +-
 tests/qemu-iotests/195.out       |    6 +-
 tests/qemu-iotests/198           |    2 +-
 tests/qemu-iotests/198.out       |    3 +-
 tests/qemu-iotests/204           |    2 +-
 tests/qemu-iotests/204.out       |    2 +-
 tests/qemu-iotests/216           |    2 +-
 tests/qemu-iotests/224           |    4 +-
 tests/qemu-iotests/225           |    2 +-
 tests/qemu-iotests/225.out       |    2 +-
 tests/qemu-iotests/228           |    5 +-
 tests/qemu-iotests/243           |    7 +-
 tests/qemu-iotests/245           |    3 +-
 tests/qemu-iotests/249           |    4 +-
 tests/qemu-iotests/249.out       |    4 +-
 tests/qemu-iotests/252           |    2 +-
 tests/qemu-iotests/257           |    3 +-
 tests/qemu-iotests/259.out       |    2 +-
 tests/qemu-iotests/267           |    4 +-
 tests/qemu-iotests/267.out       |    6 +-
 tests/qemu-iotests/270           |    2 +-
 tests/qemu-iotests/270.out       |    2 +-
 tests/qemu-iotests/273           |    4 +-
 tests/qemu-iotests/273.out       |    4 +-
 tests/qemu-iotests/274           |   12 +-
 tests/qemu-iotests/274.out       |   29 +-
 tests/qemu-iotests/279           |    4 +-
 tests/qemu-iotests/279.out       |    4 +-
 tests/qemu-iotests/282.out       |    6 +-
 tests/qemu-iotests/290           |    2 +-
 tests/qemu-iotests/290.out       |    4 +-
 tests/qemu-iotests/301           |   88 ++++
 tests/qemu-iotests/301.out       |   59 +++
 tests/qemu-iotests/common.filter |   62 +--
 tests/qemu-iotests/group         |    1 +
 152 files changed, 1426 insertions(+), 990 deletions(-)
 create mode 100755 tests/qemu-iotests/301
 create mode 100644 tests/qemu-iotests/301.out



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-09-11 17:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-10  9:15 [PULL v3] Block layer patches Kevin Wolf
2020-09-11 17:58 ` Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2020-07-13 14:33 Kevin Wolf
2020-07-14 12:51 ` Peter Maydell
2020-07-14 19:23 ` Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.