From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:56025) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SbVE8-0004F1-9j for qemu-devel@nongnu.org; Mon, 04 Jun 2012 07:13:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SbVE6-0005xw-DW for qemu-devel@nongnu.org; Mon, 04 Jun 2012 07:13:35 -0400 Received: from mx1.redhat.com ([209.132.183.28]:38111) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SbVE6-0005xb-5T for qemu-devel@nongnu.org; Mon, 04 Jun 2012 07:13:34 -0400 From: Kevin Wolf Date: Mon, 4 Jun 2012 13:13:17 +0200 Message-Id: <1338808409-19501-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PULL 00/12] 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 8cc9b43f7c5f826b39af4b012ad89bb55faac29c: target-microblaze: lwx/swx: first implementation (2012-06-04 10:19:46 +0200) are available in the git repository at: git://repo.or.cz/qemu/kevin.git for-anthony Josh Durgin (1): rbd: hook up cache options Kevin Wolf (3): qemu-img check -r for repairing images qemu-img check: Print fixed clusters and recheck qcow2: Support for fixing refcount inconsistencies MORITA Kazutaka (1): sheepdog: add coroutine_fn markers to coroutine functions Markus Armbruster (1): Un-inline fdctrl_init_isa() Paolo Bonzini (4): block: implement is_allocated for raw stream: tweak usage of bdrv_co_is_allocated stream: move is_allocated_above to block.c stream: move rate limiting to a separate header file Zhi Yong Wu (2): qcow2: remove a line of unnecessary code qcow2: fix the byte endian convertion block.c | 53 +++++++++++++++++++++- block.h | 13 +++++- block/qcow2-cluster.c | 1 - block/qcow2-refcount.c | 33 ++++++++++++-- block/qcow2.c | 5 +- block/qcow2.h | 3 +- block/qed-check.c | 2 + block/qed.c | 5 +- block/raw-posix.c | 98 +++++++++++++++++++++++++++++++++++++++++ block/raw.c | 8 +++ block/rbd.c | 19 ++++++++ block/sheepdog.c | 9 ++-- block/stream.c | 109 +++++++--------------------------------------- block/vdi.c | 7 +++- block_int.h | 3 +- hw/fdc.c | 20 ++++++++ hw/fdc.h | 24 +--------- hw/ide/piix.c | 3 +- hw/isa.h | 2 - hw/pc_sysfw.c | 1 + include/qemu/ratelimit.h | 48 ++++++++++++++++++++ qemu-common.h | 1 + qemu-img-cmds.hx | 4 +- qemu-img.c | 35 +++++++++++++- qemu-img.texi | 7 +++- 25 files changed, 369 insertions(+), 144 deletions(-) create mode 100644 include/qemu/ratelimit.h