The following changes since commit 171392406d8e230d62e5ebf4805f71460854b8ec:
gtk: don't use g_object_unref on GdkCursor (2013-06-03 16:14:05 -0500)
are available in the git repository at:
git://repo.or.cz/qemu/kevin.git for-anthony
for you to fetch changes up to 5b91704469c0f801e0219f26458356872c4145ab:
block: dump snapshot and image info to specified output (2013-06-04 13:56:30
+0200)
----------------------------------------------------------------
Fam Zheng (1):
block: add block driver read only whitelist
Stefan Hajnoczi (6):
qemu-iotests: fix 054 cluster size help output
qemu-iotests: make assert_no_active_block_jobs() common
qemu-iotests: make cancel_and_wait() common
qemu-iotests: make compare_images() common
qemu-iotests: make create_image() common
block: drop bs_snapshots global variable
Wenchao Xia (3):
block: move snapshot code in block.c to block/snapshot.c
block: move qmp and info dump related code to block/qapi.c
block: dump snapshot and image info to specified output
block.c | 356 ++++------------------------------------
block/Makefile.objs | 1 +
block/qapi.c | 366 ++++++++++++++++++++++++++++++++++++++++++
block/snapshot.c | 157 ++++++++++++++++++
blockdev.c | 4 +-
configure | 20 ++-
hw/block/xen_disk.c | 8 +-
include/block/block.h | 31 +---
include/block/block_int.h | 1 +
include/block/qapi.h | 43 +++++
include/block/snapshot.h | 53 ++++++
qemu-img.c | 163 +------------------
savevm.c | 40 ++---
scripts/create_config | 11 +-
tests/qemu-iotests/030 | 99 ++++--------
tests/qemu-iotests/041 | 181 ++++++++-------------
tests/qemu-iotests/054.out | 2 +-
tests/qemu-iotests/iotests.py | 38 +++++
18 files changed, 843 insertions(+), 731 deletions(-)
create mode 100644 block/qapi.c
create mode 100644 block/snapshot.c
create mode 100644 include/block/qapi.h
create mode 100644 include/block/snapshot.h