From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:41054) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ScRMF-0005YU-Lb for qemu-devel@nongnu.org; Wed, 06 Jun 2012 21:17:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ScRMD-00072Z-Rx for qemu-devel@nongnu.org; Wed, 06 Jun 2012 21:17:51 -0400 Received: from mail-ob0-f173.google.com ([209.85.214.173]:62223) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ScRMD-0006xq-MZ for qemu-devel@nongnu.org; Wed, 06 Jun 2012 21:17:49 -0400 Received: by mail-ob0-f173.google.com with SMTP id wd20so141854obb.4 for ; Wed, 06 Jun 2012 18:17:49 -0700 (PDT) Message-ID: <4FD00135.5020606@codemonkey.ws> Date: Thu, 07 Jun 2012 09:17:41 +0800 From: Anthony Liguori MIME-Version: 1.0 References: <1338808409-19501-1-git-send-email-kwolf@redhat.com> In-Reply-To: <1338808409-19501-1-git-send-email-kwolf@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL 00/12] Block patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kevin Wolf Cc: qemu-devel@nongnu.org On 06/04/2012 07:13 PM, Kevin Wolf wrote: > 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 Pulled. Thanks. Regards, Anthony Liguori > > 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 > >