qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/17] Block layer patches
@ 2018-05-30 15:56 Kevin Wolf
  2018-05-30 15:56 ` [Qemu-devel] [PULL 01/17] qcow2: Fix Coverity warning when calculating the refcount cache size Kevin Wolf
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: Kevin Wolf @ 2018-05-30 15:56 UTC (permalink / raw)
  To: qemu-block; +Cc: kwolf, qemu-devel

  Merge remote-tracking branch 'remotes/edgar/tags/edgar/xilinx-next-2018-05-29-v1.for-upstream' into staging (2018-05-29 13:01:11 +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 3fb588a0f2c006122c34e1960a15c87ae2b927eb:

  block/create: Mark blockdev-create stable (2018-05-30 13:31:18 +0200)

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

- Add blockdev-create job
- qcow2: Silence Coverity false positive

----------------------------------------------------------------
Alberto Garcia (1):
      qcow2: Fix Coverity warning when calculating the refcount cache size

Kevin Wolf (16):
      vdi: Fix vdi_co_do_create() return value
      vhdx: Fix vhdx_co_create() return value
      job: Add error message for failing jobs
      block/create: Make x-blockdev-create a job
      qemu-iotests: Add VM.get_qmp_events_filtered()
      qemu-iotests: Add VM.qmp_log()
      qemu-iotests: Add iotests.img_info_log()
      qemu-iotests: Add VM.run_job()
      qemu-iotests: iotests.py helper for non-file protocols
      qemu-iotests: Rewrite 206 for blockdev-create job
      qemu-iotests: Rewrite 207 for blockdev-create job
      qemu-iotests: Rewrite 210 for blockdev-create job
      qemu-iotests: Rewrite 211 for blockdev-create job
      qemu-iotests: Rewrite 212 for blockdev-create job
      qemu-iotests: Rewrite 213 for blockdev-create job
      block/create: Mark blockdev-create stable

 qapi/block-core.json          |  18 +-
 qapi/job.json                 |   4 +-
 include/qemu/job.h            |   7 +-
 block/backup.c                |   2 +-
 block/commit.c                |   2 +-
 block/create.c                |  67 +++--
 block/mirror.c                |   2 +-
 block/qcow2.c                 |   5 +-
 block/stream.c                |   2 +-
 block/vdi.c                   |   1 +
 block/vhdx.c                  |   2 +-
 job-qmp.c                     |   9 +-
 job.c                         |  16 +-
 tests/test-bdrv-drain.c       |   2 +-
 tests/test-blockjob-txn.c     |   2 +-
 tests/test-blockjob.c         |   2 +-
 tests/qemu-iotests/206        | 680 ++++++++++++++++--------------------------
 tests/qemu-iotests/206.out    | 253 +++++++++-------
 tests/qemu-iotests/207        | 440 ++++++++++++---------------
 tests/qemu-iotests/207.out    | 107 +++----
 tests/qemu-iotests/210        | 393 ++++++++++--------------
 tests/qemu-iotests/210.out    | 197 ++++++++----
 tests/qemu-iotests/211        | 381 ++++++++++-------------
 tests/qemu-iotests/211.out    | 133 +++++----
 tests/qemu-iotests/212        | 483 +++++++++++-------------------
 tests/qemu-iotests/212.out    | 191 +++++++-----
 tests/qemu-iotests/213        | 520 ++++++++++++--------------------
 tests/qemu-iotests/213.out    | 208 ++++++++-----
 tests/qemu-iotests/iotests.py |  78 +++++
 29 files changed, 1981 insertions(+), 2226 deletions(-)

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

end of thread, other threads:[~2018-05-31 10:12 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-30 15:56 [Qemu-devel] [PULL 00/17] Block layer patches Kevin Wolf
2018-05-30 15:56 ` [Qemu-devel] [PULL 01/17] qcow2: Fix Coverity warning when calculating the refcount cache size Kevin Wolf
2018-05-30 15:56 ` [Qemu-devel] [PULL 02/17] vdi: Fix vdi_co_do_create() return value Kevin Wolf
2018-05-30 15:56 ` [Qemu-devel] [PULL 03/17] vhdx: Fix vhdx_co_create() " Kevin Wolf
2018-05-30 15:56 ` [Qemu-devel] [PULL 04/17] job: Add error message for failing jobs Kevin Wolf
2018-05-30 15:56 ` [Qemu-devel] [PULL 05/17] block/create: Make x-blockdev-create a job Kevin Wolf
2018-05-30 15:56 ` [Qemu-devel] [PULL 06/17] qemu-iotests: Add VM.get_qmp_events_filtered() Kevin Wolf
2018-05-30 15:56 ` [Qemu-devel] [PULL 07/17] qemu-iotests: Add VM.qmp_log() Kevin Wolf
2018-05-30 15:56 ` [Qemu-devel] [PULL 08/17] qemu-iotests: Add iotests.img_info_log() Kevin Wolf
2018-05-30 15:56 ` [Qemu-devel] [PULL 09/17] qemu-iotests: Add VM.run_job() Kevin Wolf
2018-05-30 15:56 ` [Qemu-devel] [PULL 10/17] qemu-iotests: iotests.py helper for non-file protocols Kevin Wolf
2018-05-30 15:56 ` [Qemu-devel] [PULL 11/17] qemu-iotests: Rewrite 206 for blockdev-create job Kevin Wolf
2018-05-30 15:56 ` [Qemu-devel] [PULL 12/17] qemu-iotests: Rewrite 207 " Kevin Wolf
2018-05-30 15:56 ` [Qemu-devel] [PULL 13/17] qemu-iotests: Rewrite 210 " Kevin Wolf
2018-05-30 15:56 ` [Qemu-devel] [PULL 14/17] qemu-iotests: Rewrite 211 " Kevin Wolf
2018-05-30 15:56 ` [Qemu-devel] [PULL 15/17] qemu-iotests: Rewrite 212 " Kevin Wolf
2018-05-30 15:56 ` [Qemu-devel] [PULL 16/17] qemu-iotests: Rewrite 213 " Kevin Wolf
2018-05-30 15:56 ` [Qemu-devel] [PULL 17/17] block/create: Mark blockdev-create stable Kevin Wolf
2018-05-30 16:18 ` [Qemu-devel] [PULL 00/17] Block layer patches no-reply
2018-05-31 10:12 ` Peter Maydell

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).