From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:59474) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UFQOQ-00013i-L4 for qemu-devel@nongnu.org; Tue, 12 Mar 2013 10:41:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UFQOL-0002LK-8X for qemu-devel@nongnu.org; Tue, 12 Mar 2013 10:41:30 -0400 Received: from mx1.redhat.com ([209.132.183.28]:58115) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UFQOK-0002LD-VA for qemu-devel@nongnu.org; Tue, 12 Mar 2013 10:41:25 -0400 From: Kevin Wolf Date: Tue, 12 Mar 2013 15:41:06 +0100 Message-Id: <1363099279-403-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PULL 00/13] 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 fe3cc14fd83e0c8f376d849ccd0fc3433388442d: Merge remote-tracking branch 'quintela/migration.next' into staging (2013-03-11 08:30:34 -0500) are available in the git repository at: git://repo.or.cz/qemu/kevin.git for-anthony for you to fetch changes up to 6da3e7432b88b39faf8613bf9a4c6ded413a43e7: qcow2: drop unnecessary flush in qcow2_update_snapshot_refcount() (2013-03-12 15:13:53 +0100) ---------------------------------------------------------------- Kevin Wolf (7): block: Add options QDict to .bdrv_open() block: Add options QDict to bdrv_open() prototype Add qdict_clone_shallow() block: Add options QDict to bdrv_open_common() qemu-option: Add qemu_opts_absorb_qdict() block: Support driver specific options in drive_init() qcow2: Allow lazy refcounts to be enabled on the command line Stefan Hajnoczi (6): qcow2: flush refcount cache correctly in alloc_refcount_block() qcow2: flush refcount cache correctly in qcow2_write_snapshots() qcow2: set L2 cache dependency in qcow2_alloc_bytes() qcow2: flush in qcow2_update_snapshot_refcount() qcow2: drop flush in update_cluster_refcount() qcow2: drop unnecessary flush in qcow2_update_snapshot_refcount() block.c | 81 ++++++++++++++++++++++++++++++++++++----------- block/blkverify.c | 2 +- block/bochs.c | 2 +- block/cloop.c | 2 +- block/cow.c | 2 +- block/dmg.c | 2 +- block/parallels.c | 2 +- block/qcow.c | 2 +- block/qcow2-cluster.c | 2 +- block/qcow2-refcount.c | 24 ++++++++------ block/qcow2-snapshot.c | 10 +++--- block/qcow2.c | 43 +++++++++++++++++++++++-- block/qcow2.h | 1 + block/qed.c | 4 +-- block/raw.c | 2 +- block/vdi.c | 2 +- block/vmdk.c | 4 +-- block/vpc.c | 2 +- block/vvfat.c | 2 +- blockdev.c | 77 ++++++++++++++++++++++++++++++++++++-------- hw/xen_disk.c | 2 +- include/block/block.h | 4 +-- include/block/block_int.h | 3 +- include/qapi/qmp/qdict.h | 2 ++ include/qemu/option.h | 1 + qemu-img.c | 6 ++-- qemu-io.c | 2 +- qemu-nbd.c | 2 +- qobject/qdict.c | 22 +++++++++++++ util/qemu-option.c | 34 ++++++++++++++++++++ 30 files changed, 270 insertions(+), 76 deletions(-)