qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/27] Block layer fixes for 2.9.0-rc0
@ 2017-03-07 15:40 Kevin Wolf
  2017-03-07 15:40 ` [Qemu-devel] [PULL 01/27] commit: Fix error handling Kevin Wolf
                   ` (27 more replies)
  0 siblings, 28 replies; 29+ messages in thread
From: Kevin Wolf @ 2017-03-07 15:40 UTC (permalink / raw)
  To: qemu-block; +Cc: kwolf, qemu-devel

The following changes since commit ff79d5e939c38677a575e3493eb9b4d36eb21865:

  Merge remote-tracking branch 'remotes/xtensa/tags/20170306-xtensa' into staging (2017-03-07 09:57:14 +0000)

are available in the git repository at:


  git://repo.or.cz/qemu/kevin.git tags/for-upstream

for you to fetch changes up to b69f00dde490e88d55f5ee731545e690b2dc61f8:

  commit: Don't use error_abort in commit_start (2017-03-07 14:53:29 +0100)

----------------------------------------------------------------
Block layer fixes for 2.9.0-rc0

----------------------------------------------------------------
Fam Zheng (2):
      block: Don't use error_abort in blk_new_open
      commit: Don't use error_abort in commit_start

Kevin Wolf (10):
      commit: Fix error handling
      mirror: Fix permission problem with 'replaces'
      mirror: Fix permissions for removing mirror_top_bs
      mirror: Fix error path for dirty bitmap creation
      block: Fix blockdev-snapshot error handling
      block: Factor out should_update_child()
      block: Factor out bdrv_replace_child_noperm()
      block: Ignore multiple children in bdrv_check_update_perm()
      block: Handle permission errors in change_parent_backing_link()
      block: Fix error handling in bdrv_replace_in_backing_chain()

Markus Armbruster (15):
      sheepdog: Defuse time bomb in sd_open() error handling
      sheepdog: Fix error handling in sd_snapshot_delete()
      sheepdog: Fix error handling sd_create()
      sheepdog: Mark sd_snapshot_delete() lossage FIXME
      sheepdog: Fix snapshot ID parsing in _open(), _create, _goto()
      sheepdog: Don't truncate long VDI name in _open(), _create()
      sheepdog: Report errors in pseudo-filename more usefully
      sheepdog: Use SocketAddress and socket_connect()
      sheepdog: Implement bdrv_parse_filename()
      gluster: Drop assumptions on SocketTransport names
      gluster: Don't duplicate qapi-util.c's qapi_enum_parse()
      gluster: Plug memory leaks in qemu_gluster_parse_json()
      qapi-schema: Rename GlusterServer to SocketAddressFlat
      qapi-schema: Rename SocketAddressFlat's variant tcp to inet
      sheepdog: Support blockdev-add

 block.c                   | 182 ++++++++++++-------
 block/block-backend.c     |   7 +-
 block/commit.c            |  18 +-
 block/gluster.c           | 127 ++++++-------
 block/mirror.c            |  35 ++--
 block/sheepdog.c          | 453 +++++++++++++++++++++++++++++++++-------------
 blockdev.c                |   6 +-
 include/block/block.h     |   4 +-
 include/block/block_int.h |   6 +-
 qapi-schema.json          |  38 ++++
 qapi/block-core.json      |  73 +++-----
 11 files changed, 623 insertions(+), 326 deletions(-)

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

end of thread, other threads:[~2017-03-08 14:49 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-07 15:40 [Qemu-devel] [PULL 00/27] Block layer fixes for 2.9.0-rc0 Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 01/27] commit: Fix error handling Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 02/27] mirror: Fix permission problem with 'replaces' Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 03/27] mirror: Fix permissions for removing mirror_top_bs Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 04/27] mirror: Fix error path for dirty bitmap creation Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 05/27] block: Fix blockdev-snapshot error handling Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 06/27] block: Factor out should_update_child() Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 07/27] block: Factor out bdrv_replace_child_noperm() Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 08/27] block: Ignore multiple children in bdrv_check_update_perm() Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 09/27] block: Handle permission errors in change_parent_backing_link() Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 10/27] block: Fix error handling in bdrv_replace_in_backing_chain() Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 11/27] sheepdog: Defuse time bomb in sd_open() error handling Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 12/27] sheepdog: Fix error handling in sd_snapshot_delete() Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 13/27] sheepdog: Fix error handling sd_create() Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 14/27] sheepdog: Mark sd_snapshot_delete() lossage FIXME Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 15/27] sheepdog: Fix snapshot ID parsing in _open(), _create, _goto() Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 16/27] sheepdog: Don't truncate long VDI name in _open(), _create() Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 17/27] sheepdog: Report errors in pseudo-filename more usefully Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 18/27] sheepdog: Use SocketAddress and socket_connect() Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 19/27] sheepdog: Implement bdrv_parse_filename() Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 20/27] gluster: Drop assumptions on SocketTransport names Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 21/27] gluster: Don't duplicate qapi-util.c's qapi_enum_parse() Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 22/27] gluster: Plug memory leaks in qemu_gluster_parse_json() Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 23/27] qapi-schema: Rename GlusterServer to SocketAddressFlat Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 24/27] qapi-schema: Rename SocketAddressFlat's variant tcp to inet Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 25/27] sheepdog: Support blockdev-add Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 26/27] block: Don't use error_abort in blk_new_open Kevin Wolf
2017-03-07 15:40 ` [Qemu-devel] [PULL 27/27] commit: Don't use error_abort in commit_start Kevin Wolf
2017-03-08 14:49 ` [Qemu-devel] [PULL 00/27] Block layer fixes for 2.9.0-rc0 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).