qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/18] Block layer patches for 2.10.0-rc2
@ 2017-08-08 13:58 Kevin Wolf
  2017-08-08 13:58 ` [Qemu-devel] [PULL 01/18] qemu-iotests/109: Fix lock race condition Kevin Wolf
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: Kevin Wolf @ 2017-08-08 13:58 UTC (permalink / raw)
  To: qemu-block; +Cc: kwolf, qemu-devel, peter.maydell

The following changes since commit b4174c4b08a719e7df7e4f35c29f44b7c2517237:

  Merge remote-tracking branch 'remotes/mst/tags/for_upstream' into staging (2017-08-08 10:01:49 +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 113fe792fd4931dd0538f03859278b8719ee4fa2:

  block/nfs: fix mutex assertion in nfs_file_close() (2017-08-08 15:19:16 +0200)

----------------------------------------------------------------
Block layer patches for 2.10.0-rc2

----------------------------------------------------------------
Alberto Garcia (1):
      quorum: Set sectors-count to 0 when reporting a flush error

Cleber Rosa (1):
      qemu-iotests/109: Fix lock race condition

Denis V. Lunev (3):
      block: respect error code from bdrv_getlength in handle_aiocb_write_zeroes
      parallels: respect error code of bdrv_getlength() in allocate_clusters()
      parallels: drop check that bdrv_truncate() is working

Fam Zheng (1):
      vmdk: Fix error handling/reporting of vmdk_check

Jeff Cody (5):
      block/vhdx: check error return of bdrv_getlength()
      block/vhdx: check for offset overflow to bdrv_truncate()
      block/vhdx: check error return of bdrv_flush()
      block/vhdx: check error return of bdrv_truncate()
      block/nfs: fix mutex assertion in nfs_file_close()

Kevin Wolf (6):
      block/null: Remove 'filename' option
      block: Fix order in bdrv_replace_child()
      block: Allow reopen rw without BDRV_O_ALLOW_RDWR
      block: Set BDRV_O_ALLOW_RDWR during rw reopen
      qemu-io: Allow reopen read-write
      qemu-iotests: Test reopen between read-only and read-write

Paolo Bonzini (1):
      block: drop bdrv_set_key from BlockDriver

 include/block/block.h      |  3 +-
 include/block/block_int.h  |  1 -
 block.c                    | 20 +++++++++-----
 block/file-posix.c         |  8 +++++-
 block/nfs.c                | 11 ++++++--
 block/null.c               | 31 +++++++++++++++++----
 block/parallels.c          | 12 ++++----
 block/quorum.c             |  3 +-
 block/vhdx-log.c           | 52 +++++++++++++++++++++++++++-------
 block/vhdx.c               | 12 +++++++-
 block/vmdk.c               | 26 +++++++++++------
 qemu-io-cmds.c             | 19 +++++++++++--
 tests/qemu-iotests/109     |  3 +-
 tests/qemu-iotests/109.out | 56 +++++++++++++++++++++++++++++++++++++
 tests/qemu-iotests/136     |  2 +-
 tests/qemu-iotests/187     | 69 ++++++++++++++++++++++++++++++++++++++++++++++
 tests/qemu-iotests/187.out | 18 ++++++++++++
 tests/qemu-iotests/group   |  1 +
 18 files changed, 299 insertions(+), 48 deletions(-)
 create mode 100755 tests/qemu-iotests/187
 create mode 100644 tests/qemu-iotests/187.out

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

end of thread, other threads:[~2017-08-08 15:30 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-08 13:58 [Qemu-devel] [PULL 00/18] Block layer patches for 2.10.0-rc2 Kevin Wolf
2017-08-08 13:58 ` [Qemu-devel] [PULL 01/18] qemu-iotests/109: Fix lock race condition Kevin Wolf
2017-08-08 13:58 ` [Qemu-devel] [PULL 02/18] quorum: Set sectors-count to 0 when reporting a flush error Kevin Wolf
2017-08-08 13:58 ` [Qemu-devel] [PULL 03/18] block/vhdx: check error return of bdrv_getlength() Kevin Wolf
2017-08-08 13:58 ` [Qemu-devel] [PULL 04/18] block/vhdx: check for offset overflow to bdrv_truncate() Kevin Wolf
2017-08-08 13:58 ` [Qemu-devel] [PULL 05/18] block/vhdx: check error return of bdrv_flush() Kevin Wolf
2017-08-08 13:58 ` [Qemu-devel] [PULL 06/18] block/vhdx: check error return of bdrv_truncate() Kevin Wolf
2017-08-08 13:58 ` [Qemu-devel] [PULL 07/18] block: drop bdrv_set_key from BlockDriver Kevin Wolf
2017-08-08 13:58 ` [Qemu-devel] [PULL 08/18] block/null: Remove 'filename' option Kevin Wolf
2017-08-08 13:58 ` [Qemu-devel] [PULL 09/18] vmdk: Fix error handling/reporting of vmdk_check Kevin Wolf
2017-08-08 13:58 ` [Qemu-devel] [PULL 10/18] block: respect error code from bdrv_getlength in handle_aiocb_write_zeroes Kevin Wolf
2017-08-08 13:58 ` [Qemu-devel] [PULL 11/18] parallels: respect error code of bdrv_getlength() in allocate_clusters() Kevin Wolf
2017-08-08 13:58 ` [Qemu-devel] [PULL 12/18] parallels: drop check that bdrv_truncate() is working Kevin Wolf
2017-08-08 13:58 ` [Qemu-devel] [PULL 13/18] block: Fix order in bdrv_replace_child() Kevin Wolf
2017-08-08 13:58 ` [Qemu-devel] [PULL 14/18] block: Allow reopen rw without BDRV_O_ALLOW_RDWR Kevin Wolf
2017-08-08 13:58 ` [Qemu-devel] [PULL 15/18] block: Set BDRV_O_ALLOW_RDWR during rw reopen Kevin Wolf
2017-08-08 13:58 ` [Qemu-devel] [PULL 16/18] qemu-io: Allow reopen read-write Kevin Wolf
2017-08-08 13:58 ` [Qemu-devel] [PULL 17/18] qemu-iotests: Test reopen between read-only and read-write Kevin Wolf
2017-08-08 13:58 ` [Qemu-devel] [PULL 18/18] block/nfs: fix mutex assertion in nfs_file_close() Kevin Wolf
2017-08-08 15:30 ` [Qemu-devel] [PULL 00/18] Block layer patches for 2.10.0-rc2 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).