From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NiZst-0006rO-Gv for qemu-devel@nongnu.org; Fri, 19 Feb 2010 15:55:35 -0500 Received: from [199.232.76.173] (port=51454 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NiZst-0006rB-1N for qemu-devel@nongnu.org; Fri, 19 Feb 2010 15:55:35 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1NiZsr-0003Zg-9y for qemu-devel@nongnu.org; Fri, 19 Feb 2010 15:55:34 -0500 Received: from mail-ew0-f209.google.com ([209.85.219.209]:42728) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NiZsq-0003ZK-Mb for qemu-devel@nongnu.org; Fri, 19 Feb 2010 15:55:33 -0500 Received: by ewy1 with SMTP id 1so564901ewy.16 for ; Fri, 19 Feb 2010 12:55:26 -0800 (PST) Message-ID: <4B7EFAB3.90009@codemonkey.ws> Date: Fri, 19 Feb 2010 14:55:15 -0600 From: Anthony Liguori MIME-Version: 1.0 References: <20100214142916.GA32134@redhat.com> In-Reply-To: <20100214142916.GA32134@redhat.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] Re: [PULL] qemu: pci fixes and cleanups List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Michael S. Tsirkin" Cc: qemu-devel@nongnu.org On 02/14/2010 08:29 AM, Michael S. Tsirkin wrote: > The following changes since commit bc798c77e54f73b637e02bdc02bd799660adb7b7: > Blue Swirl (1): > Remove conditional rom loading support > > are available in the git repository at: > > git://git.kernel.org/pub/scm/linux/kernel/git/mst/qemu.git for_anthony > Pulled. Thanks. Regards, Anthony Liguori > Alexander Graf (10): > PPC: Uninorth config space accessor > PPC: Use Mac99_U3 type on ppc64 > PPC: Include dump of lspci -nn on real G5 > PPC: Make interrupts work > PPC: tell the guest about the time base frequency > PPC: Use macio IDE controller for Newworld > PPC: Get rid of segfaults in DBDMA emulation > PPC: Add USB per default on U3 > PPC: Fix large pages > PPC: Add timer when running KVM > > Michael S. Tsirkin (6): > pci: move pcibus_t to qemu-common > bwap: add qemu_bswap helper > rwhandler: simplified way to register for mem/io > pci_host: rewrite using rwhandler > versatile_pci: convert to symbolic names > versatile_pci: cleanup > > Makefile.target | 1 + > bswap.h | 6 ++ > hw/mac_dbdma.c | 10 ++- > hw/pci.h | 1 - > hw/pci_host.c | 172 +++++++++++++++++++---------------------------- > hw/pci_host.h | 4 + > hw/pci_host_template.h | 109 ------------------------------ > hw/pci_ids.h | 1 + > hw/ppc.h | 2 + > hw/ppc_mac.h | 1 + > hw/ppc_newworld.c | 73 ++++++++++++++++++-- > hw/ppc_oldworld.c | 9 +++ > hw/unin_pci.c | 151 +++++++++++++++++++++++++++++++++++++++++- > hw/versatile_pci.c | 10 +-- > qemu-common.h | 2 + > rwhandler.c | 91 +++++++++++++++++++++++++ > rwhandler.h | 27 ++++++++ > target-ppc/helper.c | 9 +-- > target-ppc/kvm.c | 69 +++++++++++++++++++ > target-ppc/kvm_ppc.h | 2 + > 20 files changed, 511 insertions(+), 239 deletions(-) > delete mode 100644 hw/pci_host_template.h > create mode 100644 rwhandler.c > create mode 100644 rwhandler.h > >