From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=35527 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PmR8I-0000Hr-TS for qemu-devel@nongnu.org; Mon, 07 Feb 2011 08:28:01 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PmR77-0005u5-Se for qemu-devel@nongnu.org; Mon, 07 Feb 2011 08:26:47 -0500 Received: from mail-ww0-f53.google.com ([74.125.82.53]:42713) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PmR77-0005tt-OS for qemu-devel@nongnu.org; Mon, 07 Feb 2011 08:26:45 -0500 Received: by wwi18 with SMTP id 18so4478031wwi.10 for ; Mon, 07 Feb 2011 05:26:44 -0800 (PST) Message-ID: <4D4FF311.7040900@codemonkey.ws> Date: Mon, 07 Feb 2011 07:26:41 -0600 From: Anthony Liguori MIME-Version: 1.0 References: <1297082430-628-1-git-send-email-kwolf@redhat.com> In-Reply-To: <1297082430-628-1-git-send-email-kwolf@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] Re: [PULL 00/14] Block patches for master 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 02/07/2011 06:40 AM, Kevin Wolf wrote: > The following changes since commit ad36ce8ba95a756ef558579c6e9ecedfae4dfd0b: > > checkpatch.pl: don't complain about old lines with tabs (2011-02-05 13:18:20 +0000) > Pulled. Thanks. Regards, Anthony Liguori > are available in the git repository at: > git://repo.or.cz/qemu/kevin.git block > > Alexander Graf (5): > ahci: add license header in ahci.h > ahci: split ICH and AHCI even more > ahci: send init d2h fis on fis enable > ahci: Implement HBA reset > ahci: make number of ports runtime determined > > Kevin Wolf (1): > qcow2: Really use cache=unsafe for image creation > > MORITA Kazutaka (1): > Documentation: add Sheepdog disk images > > Marcelo Tosatti (5): > block-migration: actually disable dirty tracking on cleanup > blockdev: add refcount to DriveInfo > block-migration: add reference to target DriveInfo > Add flag to indicate external users to block device > block: enable in_use flag > > Sebastian Herbszt (1): > ahci: split ICH9 from core > > Stefan Weil (1): > block/vdi: Fix wrong size in conditionally used memset, memcmp > > Makefile.objs | 1 + > block-migration.c | 9 +- > block.c | 13 ++ > block.h | 2 + > block/qcow2.c | 3 +- > block/vdi.c | 4 +- > block_int.h | 1 + > blockdev.c | 22 +++- > blockdev.h | 4 +- > hw/ide/ahci.c | 485 +++++++---------------------------------------------- > hw/ide/ahci.h | 333 ++++++++++++++++++++++++++++++++++++ > hw/ide/ich.c | 148 ++++++++++++++++ > hw/pci-hotplug.c | 2 +- > qemu-doc.texi | 52 ++++++ > 14 files changed, 642 insertions(+), 437 deletions(-) > create mode 100644 hw/ide/ahci.h > create mode 100644 hw/ide/ich.c >