All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL v2 00/33] Block layer patches
@ 2016-09-23 12:01 Kevin Wolf
  2016-09-23 16:45 ` Peter Maydell
  0 siblings, 1 reply; 2+ messages in thread
From: Kevin Wolf @ 2016-09-23 12:01 UTC (permalink / raw)
  To: qemu-block; +Cc: kwolf, peter.maydell, qemu-devel

The following changes since commit e678c56f169bb576b607cda2a39c0b626ebfb221:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20160922' into staging (2016-09-22 18:23:14 +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 9ec8873e684c2dae6fadb3a801057c613ccd2a6b:

  block: Remove BB interface from blockdev-add/del (2016-09-23 13:45:36 +0200)

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

----------------------------------------------------------------
Alberto Garcia (7):
      block: Remove bdrv_is_snapshot
      block: Set BDRV_O_ALLOW_RDWR and snapshot_options before storing the flags
      block: Update bs->open_flags earlier in bdrv_open_common()
      block: Add "read-only" to the options QDict
      block: Don't queue the same BDS twice in bdrv_reopen_queue_child()
      commit: Add 'base' to the reopen queue before 'overlay_bs'
      block: rename "read-only" to BDRV_OPT_READ_ONLY

Daniel P. Berrange (1):
      qcow2: fix encryption during cow of sectors

Denis V. Lunev (1):
      tests: allow to specify list of formats to test for check-block.sh

Kevin Wolf (24):
      hmp: Remove dead code in hmp_qemu_io()
      block: Fix 'since' for compressed Drive/BlockdevBackup
      block: Add blk_by_dev()
      qdev-monitor: Factor out find_device_state()
      qdev-monitor: Add blk_by_qdev_id()
      block: Accept device model name for blockdev-open/close-tray
      block: Accept device model name for x-blockdev-insert-medium
      block: Accept device model name for x-blockdev-remove-medium
      block: Accept device model name for eject
      block: Accept device model name for blockdev-change-medium
      block: Accept device model name for block_set_io_throttle
      qemu-iotests/118: Test media change with qdev name
      qemu-iotests/041: Avoid blockdev-add with id
      qemu-iotests/067: Avoid blockdev-add with id
      qemu-iotests/071: Avoid blockdev-add with id
      qemu-iotests/081: Avoid blockdev-add with id
      qemu-iotests/087: Avoid blockdev-add with id
      qemu-iotests/117: Avoid blockdev-add with id
      qemu-iotests/118: Avoid blockdev-add with id
      qemu-iotests/124: Avoid blockdev-add with id
      qemu-iotests/139: Avoid blockdev-add with id
      block: Avoid printing NULL string in error messages
      qemu-iotests/141: Avoid blockdev-add with id
      block: Remove BB interface from blockdev-add/del

 block.c                        |  89 ++++++++----
 block/block-backend.c          |  19 +++
 block/commit.c                 |   8 +-
 block/qcow2-cluster.c          |   2 +-
 block/vvfat.c                  |   3 +-
 blockdev.c                     | 309 ++++++++++++++++++++---------------------
 docs/qmp-commands.txt          |  78 ++++++-----
 hmp.c                          |  21 ++-
 include/block/block.h          |   2 +-
 include/sysemu/block-backend.h |   2 +
 qapi/block-core.json           |  78 +++++------
 qapi/block.json                |   9 +-
 qdev-monitor.c                 |  34 ++++-
 qmp.c                          |   4 +-
 tests/check-block.sh           |  13 +-
 tests/qemu-iotests/041         |  71 +++++-----
 tests/qemu-iotests/067         |   6 +-
 tests/qemu-iotests/067.out     | 211 +++++++++++++++++-----------
 tests/qemu-iotests/071         |   8 +-
 tests/qemu-iotests/081         |   2 +-
 tests/qemu-iotests/085.out     |   6 +-
 tests/qemu-iotests/087         |  62 +--------
 tests/qemu-iotests/087.out     |   8 +-
 tests/qemu-iotests/117         |   4 +-
 tests/qemu-iotests/118         |  91 +++++++++---
 tests/qemu-iotests/124         |  17 ++-
 tests/qemu-iotests/139         | 178 ++++++++----------------
 tests/qemu-iotests/139.out     |   4 +-
 tests/qemu-iotests/141         |  24 ++--
 tests/qemu-iotests/141.out     |  24 ++--
 tests/qemu-iotests/158         |  80 +++++++++++
 tests/qemu-iotests/158.out     |  36 +++++
 tests/qemu-iotests/group       |   1 +
 tests/qemu-iotests/iotests.py  |   5 +
 ui/cocoa.m                     |   7 +-
 35 files changed, 848 insertions(+), 668 deletions(-)
 create mode 100755 tests/qemu-iotests/158
 create mode 100644 tests/qemu-iotests/158.out

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

* Re: [Qemu-devel] [PULL v2 00/33] Block layer patches
  2016-09-23 12:01 [Qemu-devel] [PULL v2 00/33] Block layer patches Kevin Wolf
@ 2016-09-23 16:45 ` Peter Maydell
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Maydell @ 2016-09-23 16:45 UTC (permalink / raw)
  To: Kevin Wolf; +Cc: Qemu-block, QEMU Developers

On 23 September 2016 at 13:01, Kevin Wolf <kwolf@redhat.com> wrote:
> The following changes since commit e678c56f169bb576b607cda2a39c0b626ebfb221:
>
>   Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20160922' into staging (2016-09-22 18:23:14 +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 9ec8873e684c2dae6fadb3a801057c613ccd2a6b:
>
>   block: Remove BB interface from blockdev-add/del (2016-09-23 13:45:36 +0200)
>
> ----------------------------------------------------------------
> Block layer patches
>

Applied, thanks.

-- PMM

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

end of thread, other threads:[~2016-09-23 16:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-23 12:01 [Qemu-devel] [PULL v2 00/33] Block layer patches Kevin Wolf
2016-09-23 16:45 ` 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.