From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47338) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ujqcq-0000ij-Hi for qemu-devel@nongnu.org; Tue, 04 Jun 2013 08:46:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ujqcl-00061W-1H for qemu-devel@nongnu.org; Tue, 04 Jun 2013 08:46:08 -0400 Received: from mx1.redhat.com ([209.132.183.28]:19020) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ujqck-00061I-M9 for qemu-devel@nongnu.org; Tue, 04 Jun 2013 08:46:02 -0400 From: Kevin Wolf Date: Tue, 4 Jun 2013 14:45:30 +0200 Message-Id: <1370349940-4703-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PULL 00/10] Block patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: anthony@codemonkey.ws Cc: kwolf@redhat.com, qemu-devel@nongnu.org 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