From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:56788) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RpNwr-0000X0-Uq for qemu-devel@nongnu.org; Mon, 23 Jan 2012 12:44:58 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RpNwm-0004JB-N1 for qemu-devel@nongnu.org; Mon, 23 Jan 2012 12:44:53 -0500 Received: from e31.co.us.ibm.com ([32.97.110.149]:33527) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RpNwm-0004Ii-HU for qemu-devel@nongnu.org; Mon, 23 Jan 2012 12:44:48 -0500 Received: from /spool/local by e31.co.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 23 Jan 2012 10:44:36 -0700 Received: from d01relay03.pok.ibm.com (d01relay03.pok.ibm.com [9.56.227.235]) by d03dlp03.boulder.ibm.com (Postfix) with ESMTP id 6B88F19D8079 for ; Mon, 23 Jan 2012 10:44:32 -0700 (MST) Received: from d03av06.boulder.ibm.com (d03av06.boulder.ibm.com [9.17.195.245]) by d01relay03.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q0NHiXX7305872 for ; Mon, 23 Jan 2012 12:44:33 -0500 Received: from d03av06.boulder.ibm.com (loopback [127.0.0.1]) by d03av06.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q0NHiTmh022864 for ; Mon, 23 Jan 2012 10:44:30 -0700 Message-ID: <4F1D9C7D.2050506@us.ibm.com> Date: Mon, 23 Jan 2012 11:44:29 -0600 From: Anthony Liguori MIME-Version: 1.0 References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 00/20] [PULL] qemu-kvm.git uq/master queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Marcelo Tosatti Cc: qemu-devel@nongnu.org, kvm@vger.kernel.org On 01/20/2012 11:26 AM, Marcelo Tosatti wrote: > The following changes since commit 8c4ec5c0269bda18bb777a64b2008088d1c632dc: > > pxa2xx_keypad: fix unbalanced parenthesis. (2012-01-17 02:14:42 +0100) > > are available in the git repository at: > git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master Applied. Thanks. Regards, Anthony Liguori > > Jan Kiszka (18): > msi: Generalize msix_supported to msi_supported > kvm: Move kvmclock into hw/kvm folder > apic: Stop timer on reset > apic: Inject external NMI events via LINT1 > apic: Introduce apic_report_irq_delivered > apic: Factor out base class for KVM reuse > apic: Open-code timer save/restore > i8259: Completely privatize PicState > i8259: Factor out base class for KVM reuse > ioapic: Drop post-load irr initialization > ioapic: Factor out base class for KVM reuse > memory: Introduce memory_region_init_reservation > kvm: Introduce core services for in-kernel irqchip support > kvm: x86: Establish IRQ0 override control > kvm: x86: Add user space part for in-kernel APIC > kvm: x86: Add user space part for in-kernel i8259 > kvm: x86: Add user space part for in-kernel IOAPIC > kvm: Activate in-kernel irqchip support > > Vadim Rozenfeld (2): > hyper-v: introduce Hyper-V support infrastructure. > hyper-v: initialize Hyper-V CPUID leaves. > > Makefile.objs | 2 +- > Makefile.target | 8 +- > configure | 1 + > cpus.c | 6 +- > hw/apic.c | 356 ++++++---------------------------------- > hw/apic.h | 1 + > hw/apic_common.c | 302 ++++++++++++++++++++++++++++++++++ > hw/apic_internal.h | 115 +++++++++++++ > hw/i8259.c | 163 ++++-------------- > hw/i8259_common.c | 147 +++++++++++++++++ > hw/i8259_internal.h | 76 +++++++++ > hw/ioapic.c | 142 ++-------------- > hw/ioapic_common.c | 104 ++++++++++++ > hw/ioapic_internal.h | 97 +++++++++++ > hw/kvm/apic.c | 138 ++++++++++++++++ > hw/{kvmclock.c => kvm/clock.c} | 4 +- > hw/{kvmclock.h => kvm/clock.h} | 0 > hw/kvm/i8259.c | 128 ++++++++++++++ > hw/kvm/ioapic.c | 114 +++++++++++++ > hw/msi.c | 8 + > hw/msi.h | 2 + > hw/msix.c | 9 +- > hw/msix.h | 2 - > hw/pc.c | 20 ++- > hw/pc.h | 8 +- > hw/pc_piix.c | 69 +++++++- > kvm-all.c | 154 +++++++++++++++++ > kvm-stub.c | 5 + > kvm.h | 14 ++ > memory.c | 36 ++++ > memory.h | 16 ++ > qemu-config.c | 4 + > qemu-options.hx | 5 +- > sysemu.h | 1 - > target-i386/cpuid.c | 14 ++ > target-i386/hyperv.c | 64 +++++++ > target-i386/hyperv.h | 43 +++++ > target-i386/kvm.c | 114 +++++++++++++- > trace-events | 2 +- > vl.c | 1 - > 40 files changed, 1902 insertions(+), 593 deletions(-) > create mode 100644 hw/apic_common.c > create mode 100644 hw/apic_internal.h > create mode 100644 hw/i8259_common.c > create mode 100644 hw/i8259_internal.h > create mode 100644 hw/ioapic_common.c > create mode 100644 hw/ioapic_internal.h > create mode 100644 hw/kvm/apic.c > rename hw/{kvmclock.c => kvm/clock.c} (98%) > rename hw/{kvmclock.h => kvm/clock.h} (100%) > create mode 100644 hw/kvm/i8259.c > create mode 100644 hw/kvm/ioapic.c > create mode 100644 target-i386/hyperv.c > create mode 100644 target-i386/hyperv.h > >