From mboxrd@z Thu Jan 1 00:00:00 1970 From: Avi Kivity Subject: [PULL] kvm queue Date: Sun, 15 Jul 2012 18:33:53 +0300 Message-ID: <5002E2E1.5080909@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: Marcelo Tosatti , qemu-devel , KVM list To: Anthony Liguori Return-path: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+gceq-qemu-devel=gmane.org@nongnu.org Sender: qemu-devel-bounces+gceq-qemu-devel=gmane.org@nongnu.org List-Id: kvm.vger.kernel.org Please pull from git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master to receive the kvm queue for qemu.git. Features include fixes for the apic device model (including a longstanding bug which caused random failures on 64-bit Windows), exposing new cpu features, and an eventfd API change. ---------------------------------------------------------------- Alex Williamson (1): kvm: Don't abort on kvm_irqchip_add_msi_route() Jan Kiszka (3): apic: Resolve potential endless loop around apic_update_irq apic: Reevaluate pending interrupts on LVT_LINT0 changes apic: Defer interrupt updates to VCPU thread Liu, Jinsong (1): kvm: expose tsc deadline timer feature to guest Michael S. Tsirkin (1): kvm_pv_eoi: add flag support Paolo Bonzini (9): event_notifier: add event_notifier_set event_notifier: remove event_notifier_test event_notifier: add event_notifier_init_fd ivshmem: use EventNotifier and memory API ivshmem: wrap ivshmem_del_eventfd loops with transaction memory: pass EventNotifier, not eventfd event_notifier: add event_notifier_set_handler virtio: move common ioeventfd handling out of virtio-pci virtio: move common irqfd handling out of virtio-pci cpu-exec.c | 6 ++++++ event_notifier.c | 30 ++++++++++++++++++------------ event_notifier.h | 8 ++++++-- exec.c | 8 ++++---- hw/apic.c | 27 ++++++++++++++++++++++----- hw/apic.h | 1 + hw/apic_internal.h | 1 - hw/ivshmem.c | 67 +++++++++++++++++++++++++++++++++++++++---------------------------- hw/vhost.c | 4 ++-- hw/virtio-pci.c | 77 ++++++++++++++--------------------------------------------------------------- hw/virtio.c | 46 ++++++++++++++++++++++++++++++++++++++++++++++ hw/virtio.h | 3 +++ hw/xen_pt.c | 2 +- kvm-all.c | 31 ++++++++++++++++++++++++------- kvm-stub.c | 10 ++++++++++ kvm.h | 2 ++ memory.c | 18 +++++++++--------- memory.h | 9 +++++---- target-i386/cpu.c | 2 +- target-i386/cpu.h | 5 ++++- target-i386/kvm.c | 9 +++++++++ xen-all.c | 6 ++++-- 22 files changed, 230 insertions(+), 142 deletions(-) -- error compiling committee.c: too many arguments to function From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:33333) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SqQpd-00088j-6t for qemu-devel@nongnu.org; Sun, 15 Jul 2012 11:34:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SqQpc-0006Js-4P for qemu-devel@nongnu.org; Sun, 15 Jul 2012 11:34:01 -0400 Received: from mx1.redhat.com ([209.132.183.28]:39761) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SqQpb-0006Jl-Sz for qemu-devel@nongnu.org; Sun, 15 Jul 2012 11:34:00 -0400 Message-ID: <5002E2E1.5080909@redhat.com> Date: Sun, 15 Jul 2012 18:33:53 +0300 From: Avi Kivity MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PULL] kvm queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: Marcelo Tosatti , qemu-devel , KVM list Please pull from git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master to receive the kvm queue for qemu.git. Features include fixes for the apic device model (including a longstanding bug which caused random failures on 64-bit Windows), exposing new cpu features, and an eventfd API change. ---------------------------------------------------------------- Alex Williamson (1): kvm: Don't abort on kvm_irqchip_add_msi_route() Jan Kiszka (3): apic: Resolve potential endless loop around apic_update_irq apic: Reevaluate pending interrupts on LVT_LINT0 changes apic: Defer interrupt updates to VCPU thread Liu, Jinsong (1): kvm: expose tsc deadline timer feature to guest Michael S. Tsirkin (1): kvm_pv_eoi: add flag support Paolo Bonzini (9): event_notifier: add event_notifier_set event_notifier: remove event_notifier_test event_notifier: add event_notifier_init_fd ivshmem: use EventNotifier and memory API ivshmem: wrap ivshmem_del_eventfd loops with transaction memory: pass EventNotifier, not eventfd event_notifier: add event_notifier_set_handler virtio: move common ioeventfd handling out of virtio-pci virtio: move common irqfd handling out of virtio-pci cpu-exec.c | 6 ++++++ event_notifier.c | 30 ++++++++++++++++++------------ event_notifier.h | 8 ++++++-- exec.c | 8 ++++---- hw/apic.c | 27 ++++++++++++++++++++++----- hw/apic.h | 1 + hw/apic_internal.h | 1 - hw/ivshmem.c | 67 +++++++++++++++++++++++++++++++++++++++---------------------------- hw/vhost.c | 4 ++-- hw/virtio-pci.c | 77 ++++++++++++++--------------------------------------------------------------- hw/virtio.c | 46 ++++++++++++++++++++++++++++++++++++++++++++++ hw/virtio.h | 3 +++ hw/xen_pt.c | 2 +- kvm-all.c | 31 ++++++++++++++++++++++++------- kvm-stub.c | 10 ++++++++++ kvm.h | 2 ++ memory.c | 18 +++++++++--------- memory.h | 9 +++++---- target-i386/cpu.c | 2 +- target-i386/cpu.h | 5 ++++- target-i386/kvm.c | 9 +++++++++ xen-all.c | 6 ++++-- 22 files changed, 230 insertions(+), 142 deletions(-) -- error compiling committee.c: too many arguments to function