Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1234022
| From | Paolo Bonzini <pbonzini@redhat.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [FYI PATCH 00/20] kvm/queue will be merged soon to kvm/next |
| Date | 2015-09-28 12:40 +0200 |
| Message-ID | <qdE0F-37c-5@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Hi all,
these are the patches that will be merged Real Soon Now(tm) to kvm/next.
Since all of them have been lying around for a while, I am sending them
out again for everyone's information.
Thanks,
Paolo
Andrey Smetanin (3):
kvm/x86: Hyper-V HV_X64_MSR_RESET msr
kvm/x86: Hyper-V HV_X64_MSR_VP_INDEX export for QEMU.
kvm/x86: Hyper-V HV_X64_MSR_VP_RUNTIME support
Jason Wang (3):
kvm: use kmalloc() instead of kzalloc() during iodev
register/unregister
kvm: add tracepoint for fast mmio
kvm: add capability for any-length ioeventfds
Paolo Bonzini (6):
KVM: x86: set TMR when the interrupt is accepted
KVM: x86: store IOAPIC-handled vectors in each VCPU
KVM: x86: replace vm_has_apicv hook with cpu_uses_apicv
KVM: x86: introduce lapic_in_kernel
KVM: x86: unify handling of interrupt window
KVM: vmx: disable posted interrupts if no local APIC
Steve Rutherford (4):
KVM: x86: Split the APIC from the rest of IRQCHIP.
KVM: x86: Add KVM exit for IOAPIC EOIs
KVM: x86: Add EOI exit bitmap inference
KVM: x86: Add support for local interrupt requests from userspace
Wanpeng Li (4):
KVM: VMX: adjust interface to allocate/free_vpid
KVM: VMX: introduce __vmx_flush_tlb to handle specific vpid
KVM: nVMX: emulate the INVVPID instruction
KVM: nVMX: nested VPID emulation
Documentation/virtual/kvm/api.txt | 52 ++++++++++--
arch/x86/include/asm/kvm_host.h | 12 ++-
arch/x86/include/asm/vmx.h | 1 +
arch/x86/include/uapi/asm/hyperv.h | 6 ++
arch/x86/kvm/hyperv.c | 31 ++++++-
arch/x86/kvm/i8254.c | 4 +-
arch/x86/kvm/ioapic.c | 27 +-----
arch/x86/kvm/ioapic.h | 15 ++--
arch/x86/kvm/irq.c | 40 ++++++---
arch/x86/kvm/irq.h | 27 +++++-
arch/x86/kvm/irq_comm.c | 51 ++++++++++-
arch/x86/kvm/lapic.c | 64 +++++++++-----
arch/x86/kvm/lapic.h | 5 +-
arch/x86/kvm/mmu.c | 2 +-
arch/x86/kvm/svm.c | 21 +----
arch/x86/kvm/trace.h | 18 ++++
arch/x86/kvm/vmx.c | 168 +++++++++++++++++++++++--------------
arch/x86/kvm/x86.c | 126 +++++++++++++++++++++-------
include/linux/kvm_host.h | 21 ++++-
include/uapi/linux/kvm.h | 7 ++
kernel/sched/cputime.c | 2 +
virt/kvm/eventfd.c | 4 +-
virt/kvm/irqchip.c | 12 +--
virt/kvm/kvm_main.c | 5 +-
24 files changed, 516 insertions(+), 205 deletions(-)
--
1.8.3.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[FYI PATCH 00/20] kvm/queue will be merged soon to kvm/next Paolo Bonzini <pbonzini@redhat.com> - 2015-09-28 12:40 +0200 [FYI PATCH 03/20] KVM: x86: replace vm_has_apicv hook with cpu_uses_apicv Paolo Bonzini <pbonzini@redhat.com> - 2015-09-28 12:40 +0200 [FYI PATCH 15/20] kvm/x86: Hyper-V HV_X64_MSR_VP_RUNTIME support Paolo Bonzini <pbonzini@redhat.com> - 2015-09-28 12:40 +0200 [FYI PATCH 12/20] kvm: add capability for any-length ioeventfds Paolo Bonzini <pbonzini@redhat.com> - 2015-09-28 12:40 +0200 [FYI PATCH 20/20] KVM: vmx: disable posted interrupts if no local APIC Paolo Bonzini <pbonzini@redhat.com> - 2015-09-28 12:50 +0200 [FYI PATCH 04/20] KVM: x86: introduce lapic_in_kernel Paolo Bonzini <pbonzini@redhat.com> - 2015-09-28 12:50 +0200 [FYI PATCH 11/20] kvm: add tracepoint for fast mmio Paolo Bonzini <pbonzini@redhat.com> - 2015-09-28 12:50 +0200 [FYI PATCH 17/20] KVM: VMX: introduce __vmx_flush_tlb to handle specific vpid Paolo Bonzini <pbonzini@redhat.com> - 2015-09-28 12:50 +0200 [FYI PATCH 09/20] KVM: x86: Add support for local interrupt requests from userspace Paolo Bonzini <pbonzini@redhat.com> - 2015-09-28 12:50 +0200 [FYI PATCH 10/20] kvm: use kmalloc() instead of kzalloc() during iodev register/unregister Paolo Bonzini <pbonzini@redhat.com> - 2015-09-28 12:50 +0200 [FYI PATCH 19/20] KVM: nVMX: nested VPID emulation Paolo Bonzini <pbonzini@redhat.com> - 2015-09-28 12:50 +0200 [FYI PATCH 18/20] KVM: nVMX: emulate the INVVPID instruction Paolo Bonzini <pbonzini@redhat.com> - 2015-09-28 12:50 +0200 [FYI PATCH 06/20] KVM: x86: Split the APIC from the rest of IRQCHIP. Paolo Bonzini <pbonzini@redhat.com> - 2015-09-28 12:50 +0200 [FYI PATCH 07/20] KVM: x86: Add KVM exit for IOAPIC EOIs Paolo Bonzini <pbonzini@redhat.com> - 2015-09-28 12:50 +0200 [FYI PATCH 05/20] KVM: x86: unify handling of interrupt window Paolo Bonzini <pbonzini@redhat.com> - 2015-09-28 12:50 +0200 [FYI PATCH 13/20] kvm/x86: Hyper-V HV_X64_MSR_RESET msr Paolo Bonzini <pbonzini@redhat.com> - 2015-09-28 12:50 +0200 [FYI PATCH 14/20] kvm/x86: Hyper-V HV_X64_MSR_VP_INDEX export for QEMU. Paolo Bonzini <pbonzini@redhat.com> - 2015-09-28 12:50 +0200 [FYI PATCH 02/20] KVM: x86: store IOAPIC-handled vectors in each VCPU Paolo Bonzini <pbonzini@redhat.com> - 2015-09-28 12:50 +0200 [FYI PATCH 01/20] KVM: x86: set TMR when the interrupt is accepted Paolo Bonzini <pbonzini@redhat.com> - 2015-09-28 12:50 +0200
csiph-web