qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL v2 00/12] Block patches
@ 2017-04-24 19:19 Jeff Cody
  2017-04-24 19:19 ` [Qemu-devel] [PULL v2 01/12] block/vxhs.c: Add support for a new block device type called "vxhs" Jeff Cody
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: Jeff Cody @ 2017-04-24 19:19 UTC (permalink / raw)
  To: qemu-block; +Cc: peter.maydell, jcody, qemu-devel

The following changes since commit 4c55b1d0bad8a703f0499fe62e3761a0cd288da3:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-error-2017-04-24' into staging (2017-04-24 14:49:48 +0100)

are available in the git repository at:

  git://github.com/codyprime/qemu-kvm-jtc.git tags/block-pull-request

for you to fetch changes up to ecfa185400ade2abc9915efa924cbad1e15a21a4:

  qemu-iotests: _cleanup_qemu must be called on exit (2017-04-24 15:09:33 -0400)

----------------------------------------------------------------
Pull v2, with 32-bit errors fixed.  I don't have OS X to test compile on,
but I think it is safe to assume the cause of the compile error was the same.
----------------------------------------------------------------

Ashish Mittal (2):
  block/vxhs.c: Add support for a new block device type called "vxhs"
  block/vxhs.c: Add qemu-iotests for new block device type "vxhs"

Jeff Cody (10):
  qemu-iotests: exclude vxhs from image creation via protocol
  block: add bdrv_set_read_only() helper function
  block: do not set BDS read_only if copy_on_read enabled
  block: honor BDRV_O_ALLOW_RDWR when clearing bs->read_only
  block: code movement
  block: introduce bdrv_can_set_read_only()
  block: use bdrv_can_set_read_only() during reopen
  block/rbd - update variable names to more apt names
  block/rbd: Add support for reopen()
  qemu-iotests: _cleanup_qemu must be called on exit

 block.c                          |  56 +++-
 block/Makefile.objs              |   2 +
 block/bochs.c                    |   5 +-
 block/cloop.c                    |   5 +-
 block/dmg.c                      |   6 +-
 block/rbd.c                      |  65 +++--
 block/trace-events               |  17 ++
 block/vvfat.c                    |  19 +-
 block/vxhs.c                     | 575 +++++++++++++++++++++++++++++++++++++++
 configure                        |  39 +++
 include/block/block.h            |   2 +
 qapi/block-core.json             |  23 +-
 tests/qemu-iotests/017           |   1 +
 tests/qemu-iotests/020           |   1 +
 tests/qemu-iotests/028           |   1 +
 tests/qemu-iotests/029           |   1 +
 tests/qemu-iotests/073           |   1 +
 tests/qemu-iotests/094           |  11 +-
 tests/qemu-iotests/102           |   5 +-
 tests/qemu-iotests/109           |   1 +
 tests/qemu-iotests/114           |   1 +
 tests/qemu-iotests/117           |   1 +
 tests/qemu-iotests/130           |   2 +
 tests/qemu-iotests/134           |   1 +
 tests/qemu-iotests/140           |   1 +
 tests/qemu-iotests/141           |   1 +
 tests/qemu-iotests/143           |   1 +
 tests/qemu-iotests/156           |   2 +
 tests/qemu-iotests/158           |   1 +
 tests/qemu-iotests/common        |   6 +
 tests/qemu-iotests/common.config |  13 +
 tests/qemu-iotests/common.filter |   1 +
 tests/qemu-iotests/common.rc     |  19 ++
 33 files changed, 844 insertions(+), 42 deletions(-)
 create mode 100644 block/vxhs.c

-- 
2.9.3

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

end of thread, other threads:[~2017-04-25 10:16 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-24 19:19 [Qemu-devel] [PULL v2 00/12] Block patches Jeff Cody
2017-04-24 19:19 ` [Qemu-devel] [PULL v2 01/12] block/vxhs.c: Add support for a new block device type called "vxhs" Jeff Cody
2017-04-24 19:19 ` [Qemu-devel] [PULL v2 02/12] block/vxhs.c: Add qemu-iotests for new block device type "vxhs" Jeff Cody
2017-04-24 19:19 ` [Qemu-devel] [PULL v2 03/12] qemu-iotests: exclude vxhs from image creation via protocol Jeff Cody
2017-04-24 19:19 ` [Qemu-devel] [PULL v2 04/12] block: add bdrv_set_read_only() helper function Jeff Cody
2017-04-24 19:19 ` [Qemu-devel] [PULL v2 05/12] block: do not set BDS read_only if copy_on_read enabled Jeff Cody
2017-04-24 19:19 ` [Qemu-devel] [PULL v2 06/12] block: honor BDRV_O_ALLOW_RDWR when clearing bs->read_only Jeff Cody
2017-04-24 19:19 ` [Qemu-devel] [PULL v2 07/12] block: code movement Jeff Cody
2017-04-24 19:19 ` [Qemu-devel] [PULL v2 08/12] block: introduce bdrv_can_set_read_only() Jeff Cody
2017-04-24 19:19 ` [Qemu-devel] [PULL v2 09/12] block: use bdrv_can_set_read_only() during reopen Jeff Cody
2017-04-24 19:20 ` [Qemu-devel] [PULL v2 10/12] block/rbd - update variable names to more apt names Jeff Cody
2017-04-24 19:20 ` [Qemu-devel] [PULL v2 11/12] block/rbd: Add support for reopen() Jeff Cody
2017-04-24 19:20 ` [Qemu-devel] [PULL v2 12/12] qemu-iotests: _cleanup_qemu must be called on exit Jeff Cody
2017-04-25 10:15 ` [Qemu-devel] [PULL v2 00/12] Block patches 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).