From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=33474 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q7rOW-0004ZF-S9 for qemu-devel@nongnu.org; Thu, 07 Apr 2011 11:45:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q7rOS-0004Nt-1r for qemu-devel@nongnu.org; Thu, 07 Apr 2011 11:45:16 -0400 Received: from mail-iw0-f173.google.com ([209.85.214.173]:48003) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q7rOR-0004Nm-TB for qemu-devel@nongnu.org; Thu, 07 Apr 2011 11:45:11 -0400 Received: by iwl42 with SMTP id 42so3160745iwl.4 for ; Thu, 07 Apr 2011 08:45:11 -0700 (PDT) Message-ID: <4D9DDBF5.80502@codemonkey.ws> Date: Thu, 07 Apr 2011 10:44:53 -0500 From: Anthony Liguori MIME-Version: 1.0 Subject: Re: [Qemu-devel] [PULL 00/15] Block patches References: <1302187764-16421-1-git-send-email-kwolf@redhat.com> In-Reply-To: <1302187764-16421-1-git-send-email-kwolf@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kevin Wolf Cc: qemu-devel@nongnu.org On 04/07/2011 09:49 AM, Kevin Wolf wrote: > The following changes since commit 3b8e6a2db1946b5f21e69fde31b39f43367f1928: > > exec: Handle registrations of the entire address space (2011-04-07 10:53:41 +0200) Pulled. Thanks. Regards, Anthony Liguori > are available in the git repository at: > git://repo.or.cz/qemu/kevin.git for-anthony > > Avishay Traeger (1): > Fix integer overflow in block migration bandwidth calculation > > Christoph Hellwig (1): > virtio-blk: fail unaligned requests > > Feiran Zheng (1): > hw/xen_disk: ioreq not finished on error > > Isaku Yamahata (1): > ide: consolidate drive_get(IF_IDE) > > Jason Wang (1): > floppy: save and restore DIR register > > Jes Sorensen (1): > qemu-img: Initial progress printing support > > Kevin Wolf (1): > qemu-img rebase: Fix segfault if backing file can't be opened > > Michael Tokarev (1): > exit if -drive specified is invalid instead of ignoring the "wrong" -drive > > Nick Thomas (4): > NBD library: whitespace changes > Set errno=ENOTSUP for attempts to use UNIX sockets on Windows platforms > NBD: Use qemu_socket functions to open TCP and UNIX sockets > NBD device: Separate out parsing configuration and opening sockets. > > Ryan Harper (1): > Do not delete BlockDriverState when deleting the drive > > Stefan Hajnoczi (2): > trace: Trace bdrv_set_locked() > block: Do not cache device size for removable media > > Makefile.objs | 4 +- > block-migration.c | 2 +- > block.c | 28 +- > block.h | 1 + > block/nbd.c | 157 ++++++--- > blockdev.c | 25 +- > hw/fdc.c | 51 +++- > hw/ide.h | 3 + > hw/ide/core.c | 14 + > hw/mips_fulong2e.c | 9 +- > hw/mips_malta.c | 10 +- > hw/mips_r4k.c | 10 +- > hw/pc_piix.c | 10 +- > hw/ppc_newworld.c | 11 +- > hw/ppc_oldworld.c | 11 +- > hw/ppc_prep.c | 10 +- > hw/sun4u.c | 9 +- > hw/virtio-blk.c | 8 + > hw/xen_disk.c | 10 +- > nbd.c | 993 +++++++++++++++++++++++----------------------------- > nbd.h | 9 +- > qemu-common.h | 4 + > qemu-img-cmds.hx | 4 +- > qemu-img.c | 46 +++- > qemu-progress.c | 89 +++++ > qemu-sockets.c | 4 + > trace-events | 1 + > vl.c | 4 +- > 28 files changed, 825 insertions(+), 712 deletions(-) > create mode 100644 qemu-progress.c >