qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/15] Block layer patches
@ 2017-05-29 15:06 Kevin Wolf
  2017-05-29 15:06 ` [Qemu-devel] [PULL 01/15] stream: fix crash in stream_start() when block_job_create() fails Kevin Wolf
                   ` (15 more replies)
  0 siblings, 16 replies; 19+ messages in thread
From: Kevin Wolf @ 2017-05-29 15:06 UTC (permalink / raw)
  To: qemu-block; +Cc: kwolf, qemu-devel

The following changes since commit 9964e96dc9999cf7f7c936ee854a795415d19b60:

  Merge remote-tracking branch 'jasowang/tags/net-pull-request' into staging (2017-05-23 15:01:31 +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 42a48128417b3bfade93d1a4721348cc480e9e50:

  Merge remote-tracking branch 'mreitz/tags/pull-block-2017-05-29-v3' into queue-block (2017-05-29 16:34:27 +0200)

----------------------------------------------------------------

Block layer patches

----------------------------------------------------------------
Alberto Garcia (2):
      stream: fix crash in stream_start() when block_job_create() fails
      qcow2: remove extra local_error variable

Daniel P. Berrange (4):
      qemu-img: add support for --object with 'dd' command
      qemu-img: fix --image-opts usage with dd command
      qemu-img: introduce --target-image-opts for 'convert' command
      qemu-img: copy *key-secret opts when opening newly created files

Eric Blake (1):
      block: Tweak error message related to qemu-img amend

Fam Zheng (3):
      iotests: 147: Don't test inet6 if not available
      qemu-img: Fix documentation of convert
      qemu-img: Fix leakage of options on error

Kevin Wolf (3):
      qemu-iotests: Test streaming with missing job ID
      mirror: Drop permissions on s->target on completion
      Merge remote-tracking branch 'mreitz/tags/pull-block-2017-05-29-v3' into queue-block

Max Reitz (2):
      block: Fix backing paths for filenames with colons
      block/file-*: *_parse_filename() and colons

Stephen Bates (1):
      nvme: Add support for Controller Memory Buffers

 block.c                    |  50 +++++++++++++--
 block/file-posix.c         |  17 +-----
 block/file-win32.c         |  12 +---
 block/mirror.c             |   7 ++-
 block/qcow2-cluster.c      |   3 +-
 block/qcow2.c              |   5 +-
 block/stream.c             |   2 +-
 hw/block/nvme.c            |  75 +++++++++++++++++++++--
 hw/block/nvme.h            |  73 ++++++++++++++++++++++
 include/block/block_int.h  |   3 +
 qemu-img-cmds.hx           |   4 +-
 qemu-img.c                 | 148 +++++++++++++++++++++++++++++++++++----------
 qemu-img.texi              |  12 +++-
 tests/qemu-iotests/030     |   4 ++
 tests/qemu-iotests/030.out |   4 +-
 tests/qemu-iotests/060.out |   2 +-
 tests/qemu-iotests/147     |   7 +++
 17 files changed, 351 insertions(+), 77 deletions(-)

^ permalink raw reply	[flat|nested] 19+ messages in thread
* [Qemu-devel] [PULL 00/15] Block layer patches
@ 2019-05-10 16:15 Kevin Wolf
  2019-05-13  9:44 ` Peter Maydell
  0 siblings, 1 reply; 19+ messages in thread
From: Kevin Wolf @ 2019-05-10 16:15 UTC (permalink / raw)
  To: qemu-block; +Cc: kwolf, qemu-devel

The following changes since commit efb4f3b62c69383a7308d7b739a3193e7c0ccae8:

  Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging (2019-05-10 14:49:36 +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 11f6fc50e7501b5f5d04100ea1c21fa8f1cf7b53:

  iotests: Add test for rebase without input base (2019-05-10 16:45:40 +0200)

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

- block: Remove bdrv_read() and bdrv_write()
- qemu-img: Allow rebase with no input base
- blockjob: Fix coroutine thread after AioContext change
- MAINTAINERS updates for pflash, curl and gluster

----------------------------------------------------------------
Alberto Garcia (5):
      qcow2: Replace bdrv_write() with bdrv_pwrite()
      vdi: Replace bdrv_{read,write}() with bdrv_{pread,pwrite}()
      vvfat: Replace bdrv_{read,write}() with bdrv_{pread,pwrite}()
      block: Remove bdrv_read() and bdrv_write()
      qcow2: Remove BDRVQcow2State.cluster_sectors

Anton Kuchin (1):
      block: remove bs from lists before closing

Kevin Wolf (3):
      qemu-iotests: Fix cleanup for 192
      blockjob: Fix coroutine thread after AioContext change
      test-block-iothread: Job coroutine thread after AioContext switch

Max Reitz (3):
      qemu-img: Allow rebase with no input base
      qemu-img: Use zero writes after source backing EOF
      iotests: Add test for rebase without input base

Philippe Mathieu-Daudé (1):
      MAINTAINERS: Add an entry for the Parallel NOR Flash devices

Stefano Garzarella (1):
      qemu-img: Use IEC binary prefixes for size constants

Thomas Huth (1):
      MAINTAINERS: Downgrade status of block sections without "M:" to "Odd Fixes"

 block/qcow2.h               |   1 -
 include/block/block.h       |   4 --
 block.c                     |   4 +-
 block/io.c                  |  43 +++------------
 block/qcow2-refcount.c      |   4 +-
 block/qcow2.c               |   1 -
 block/vdi.c                 |  15 +++---
 block/vvfat.c               |  12 +++--
 job.c                       |   2 +-
 qemu-img.c                  |  77 ++++++++++++++++-----------
 tests/test-block-iothread.c | 107 ++++++++++++++++++++++++++++++++++++++
 MAINTAINERS                 |  12 ++++-
 tests/qemu-iotests/192      |   4 +-
 tests/qemu-iotests/252      | 124 ++++++++++++++++++++++++++++++++++++++++++++
 tests/qemu-iotests/252.out  |  39 ++++++++++++++
 tests/qemu-iotests/group    |   1 +
 16 files changed, 358 insertions(+), 92 deletions(-)
 create mode 100755 tests/qemu-iotests/252
 create mode 100644 tests/qemu-iotests/252.out


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

end of thread, other threads:[~2019-05-13  9:45 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-29 15:06 [Qemu-devel] [PULL 00/15] Block layer patches Kevin Wolf
2017-05-29 15:06 ` [Qemu-devel] [PULL 01/15] stream: fix crash in stream_start() when block_job_create() fails Kevin Wolf
2017-05-29 15:06 ` [Qemu-devel] [PULL 02/15] qemu-iotests: Test streaming with missing job ID Kevin Wolf
2017-05-29 15:06 ` [Qemu-devel] [PULL 03/15] iotests: 147: Don't test inet6 if not available Kevin Wolf
2017-05-29 15:06 ` [Qemu-devel] [PULL 04/15] nvme: Add support for Controller Memory Buffers Kevin Wolf
2017-05-29 15:06 ` [Qemu-devel] [PULL 05/15] mirror: Drop permissions on s->target on completion Kevin Wolf
2017-05-29 15:06 ` [Qemu-devel] [PULL 06/15] qcow2: remove extra local_error variable Kevin Wolf
2017-05-29 15:06 ` [Qemu-devel] [PULL 07/15] qemu-img: Fix documentation of convert Kevin Wolf
2017-05-29 15:06 ` [Qemu-devel] [PULL 08/15] qemu-img: add support for --object with 'dd' command Kevin Wolf
2017-05-29 15:06 ` [Qemu-devel] [PULL 09/15] qemu-img: fix --image-opts usage with dd command Kevin Wolf
2017-05-29 15:06 ` [Qemu-devel] [PULL 10/15] qemu-img: introduce --target-image-opts for 'convert' command Kevin Wolf
2017-05-29 15:06 ` [Qemu-devel] [PULL 11/15] qemu-img: copy *key-secret opts when opening newly created files Kevin Wolf
2017-05-29 15:06 ` [Qemu-devel] [PULL 12/15] qemu-img: Fix leakage of options on error Kevin Wolf
2017-05-29 15:06 ` [Qemu-devel] [PULL 13/15] block: Tweak error message related to qemu-img amend Kevin Wolf
2017-05-29 15:06 ` [Qemu-devel] [PULL 14/15] block: Fix backing paths for filenames with colons Kevin Wolf
2017-05-29 15:06 ` [Qemu-devel] [PULL 15/15] block/file-*: *_parse_filename() and colons Kevin Wolf
2017-05-30  9:44 ` [Qemu-devel] [Qemu-block] [PULL 00/15] Block layer patches Stefan Hajnoczi
  -- strict thread matches above, loose matches on Subject: below --
2019-05-10 16:15 [Qemu-devel] " Kevin Wolf
2019-05-13  9:44 ` 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).