mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 00/46] KVM updates for the 2.6.31 merge window (batch 2/3)
@ 2009-05-20 11:17 Avi Kivity
  2009-05-20 11:17 ` [PATCH 01/46] KVM: VMX: Make flexpriority module parameter reflect hardware capability Avi Kivity
                   ` (45 more replies)
  0 siblings, 46 replies; 47+ messages in thread
From: Avi Kivity @ 2009-05-20 11:17 UTC (permalink / raw)
  To: linux-kernel; +Cc: kvm

Second batch of the 2.6.31 merge window submission.  Note there will only be
three batches instead of four as advertised in the previous message due to a
divide failure.  Please review.

Avi Kivity (3):
  KVM: VMX: Make flexpriority module parameter reflect hardware
    capability
  KVM: MMU: Use different shadows when EFER.NXE changes
  KVM: Replace kvmclock open-coded get_cpu_var() with the real thing

Dong, Eddie (2):
  KVM: MMU: Emulate #PF error code of reserved bits violation
  KVM: Use rsvd_bits_mask in load_pdptrs()

Eddie Dong (1):
  KVM: MMU: Fix comment in page_fault()

Gleb Natapov (22):
  KVM: VMX: Fix handling of a fault during NMI unblocked due to IRET
  KVM: VMX: Rewrite vmx_complete_interrupt()'s twisted maze of if()
    statements
  KVM: VMX: Do not zero idt_vectoring_info in
    vmx_complete_interrupts().
  KVM: Fix task switch back link handling.
  KVM: Fix unneeded instruction skipping during task switching.
  KVM: x86 emulator: fix call near emulation
  KVM: x86 emulator: Add decoding of 16bit second immediate argument
  KVM: x86 emulator: Add lcall decoding
  KVM: x86 emulator: Complete ljmp decoding at decode stage
  KVM: x86 emulator: Complete short/near jcc decoding in decode stage
  KVM: x86 emulator: Complete decoding of call near in decode stage
  KVM: x86 emulator: Add unsigned byte immediate decode
  KVM: x86 emulator: Completely decode in/out at decoding stage
  KVM: x86 emulator: Decode soft interrupt instructions
  KVM: x86 emulator: Add new mode of instruction emulation: skip
  KVM: SVM: Skip instruction on a task switch only when appropriate
  KVM: Make kvm_cpu_(has|get)_interrupt() work for userspace irqchip
    too
  KVM: VMX: Consolidate userspace and kernel interrupt injection for
    VMX
  KVM: VMX: Cleanup vmx_intr_assist()
  KVM: Use kvm_arch_interrupt_allowed() instead of checking
    interrupt_window_open directly
  KVM: SVM: Coalesce userspace/kernel irqchip interrupt injection logic
  KVM: Remove exception_injected() callback.

Jan Kiszka (1):
  KVM: MMU: Fix auditing code

Jes Sorensen (5):
  KVM: ia64: Don't hold slots_lock in guest mode
  KVM: ia64: remove empty function vti_vcpu_load()
  KVM: ia64: restore irq state before calling kvm_vcpu_init
  KVM: ia64: preserve int status through call to kvm_insert_vmm_mapping
  KVM: ia64: ia64 vcpu_reset() do not call kmalloc() with irqs disabled

Marcelo Tosatti (3):
  KVM: PIT: fix count read and mode 0 handling
  KVM: MMU: remove global page optimization logic
  KVM: x86: check for cr3 validity in ioctl_set_sregs

Sheng Yang (4):
  KVM: VMX: Correct wrong vmcs field sizes
  KVM: VMX: Clean up Flex Priority related
  KVM: VMX: Fix feature testing
  KVM: MMU: Discard reserved bits checking on PDE bit 7-8

Wei Yongjun (1):
  KVM: remove pointless conditional before kfree() in lapic
    initialization

Xiantao Zhang (1):
  KVM: ia64: Flush all TLBs once guest's memory mapping changes.

Yang Zhang (1):
  KVM: ia64: enable external interrupt in vmm

Zhang, Xiantao (1):
  KVM: ia64: make kvm depend on CONFIG_MODULES.

nathan binkert (1):
  KVM: Make kvm header C++ friendly

 arch/ia64/kvm/Kconfig           |    2 +-
 arch/ia64/kvm/kvm-ia64.c        |   82 ++++++-----
 arch/ia64/kvm/process.c         |    5 +
 arch/ia64/kvm/vmm_ivt.S         |   18 ++--
 arch/ia64/kvm/vtlb.c            |    3 +-
 arch/x86/include/asm/kvm_host.h |   11 +-
 arch/x86/include/asm/svm.h      |    1 +
 arch/x86/kvm/i8254.c            |   26 ++--
 arch/x86/kvm/irq.c              |    7 +
 arch/x86/kvm/mmu.c              |  136 +++++++++++-------
 arch/x86/kvm/mmu.h              |    5 +
 arch/x86/kvm/paging_tmpl.h      |   15 ++-
 arch/x86/kvm/svm.c              |  226 ++++++++++++++---------------
 arch/x86/kvm/vmx.c              |  303 +++++++++++++++++++--------------------
 arch/x86/kvm/x86.c              |  105 ++++++++++----
 arch/x86/kvm/x86_emulate.c      |  121 ++++++----------
 include/linux/kvm.h             |    6 +-
 17 files changed, 569 insertions(+), 503 deletions(-)


^ permalink raw reply	[flat|nested] 47+ messages in thread

end of thread, other threads:[~2009-05-20 11:32 UTC | newest]

Thread overview: 47+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-05-20 11:17 [PATCH 00/46] KVM updates for the 2.6.31 merge window (batch 2/3) Avi Kivity
2009-05-20 11:17 ` [PATCH 01/46] KVM: VMX: Make flexpriority module parameter reflect hardware capability Avi Kivity
2009-05-20 11:17 ` [PATCH 02/46] KVM: VMX: Correct wrong vmcs field sizes Avi Kivity
2009-05-20 11:18 ` [PATCH 03/46] KVM: MMU: Fix comment in page_fault() Avi Kivity
2009-05-20 11:18 ` [PATCH 04/46] KVM: ia64: enable external interrupt in vmm Avi Kivity
2009-05-20 11:18 ` [PATCH 05/46] KVM: MMU: Emulate #PF error code of reserved bits violation Avi Kivity
2009-05-20 11:18 ` [PATCH 06/46] KVM: MMU: Use different shadows when EFER.NXE changes Avi Kivity
2009-05-20 11:18 ` [PATCH 07/46] KVM: remove pointless conditional before kfree() in lapic initialization Avi Kivity
2009-05-20 11:18 ` [PATCH 08/46] KVM: VMX: Clean up Flex Priority related Avi Kivity
2009-05-20 11:18 ` [PATCH 09/46] KVM: VMX: Fix feature testing Avi Kivity
2009-05-20 11:18 ` [PATCH 10/46] KVM: Use rsvd_bits_mask in load_pdptrs() Avi Kivity
2009-05-20 11:18 ` [PATCH 11/46] KVM: VMX: Fix handling of a fault during NMI unblocked due to IRET Avi Kivity
2009-05-20 11:18 ` [PATCH 12/46] KVM: VMX: Rewrite vmx_complete_interrupt()'s twisted maze of if() statements Avi Kivity
2009-05-20 11:18 ` [PATCH 13/46] KVM: VMX: Do not zero idt_vectoring_info in vmx_complete_interrupts() Avi Kivity
2009-05-20 11:18 ` [PATCH 14/46] KVM: Fix task switch back link handling Avi Kivity
2009-05-20 11:18 ` [PATCH 15/46] KVM: Fix unneeded instruction skipping during task switching Avi Kivity
2009-05-20 11:18 ` [PATCH 16/46] KVM: MMU: Discard reserved bits checking on PDE bit 7-8 Avi Kivity
2009-05-20 11:18 ` [PATCH 17/46] KVM: x86 emulator: fix call near emulation Avi Kivity
2009-05-20 11:18 ` [PATCH 18/46] KVM: ia64: make kvm depend on CONFIG_MODULES Avi Kivity
2009-05-20 11:18 ` [PATCH 19/46] KVM: PIT: fix count read and mode 0 handling Avi Kivity
2009-05-20 11:18 ` [PATCH 20/46] KVM: Make kvm header C++ friendly Avi Kivity
2009-05-20 11:18 ` [PATCH 21/46] KVM: MMU: remove global page optimization logic Avi Kivity
2009-05-20 11:18 ` [PATCH 22/46] KVM: x86 emulator: Add decoding of 16bit second immediate argument Avi Kivity
2009-05-20 11:18 ` [PATCH 23/46] KVM: x86 emulator: Add lcall decoding Avi Kivity
2009-05-20 11:18 ` [PATCH 24/46] KVM: x86 emulator: Complete ljmp decoding at decode stage Avi Kivity
2009-05-20 11:18 ` [PATCH 25/46] KVM: x86 emulator: Complete short/near jcc decoding in " Avi Kivity
2009-05-20 11:18 ` [PATCH 26/46] KVM: x86 emulator: Complete decoding of call near " Avi Kivity
2009-05-20 11:18 ` [PATCH 27/46] KVM: x86 emulator: Add unsigned byte immediate decode Avi Kivity
2009-05-20 11:18 ` [PATCH 28/46] KVM: x86 emulator: Completely decode in/out at decoding stage Avi Kivity
2009-05-20 11:18 ` [PATCH 29/46] KVM: x86 emulator: Decode soft interrupt instructions Avi Kivity
2009-05-20 11:18 ` [PATCH 30/46] KVM: x86 emulator: Add new mode of instruction emulation: skip Avi Kivity
2009-05-20 11:18 ` [PATCH 31/46] KVM: SVM: Skip instruction on a task switch only when appropriate Avi Kivity
2009-05-20 11:18 ` [PATCH 32/46] KVM: Replace kvmclock open-coded get_cpu_var() with the real thing Avi Kivity
2009-05-20 11:18 ` [PATCH 33/46] KVM: ia64: Don't hold slots_lock in guest mode Avi Kivity
2009-05-20 11:18 ` [PATCH 34/46] KVM: x86: check for cr3 validity in ioctl_set_sregs Avi Kivity
2009-05-20 11:18 ` [PATCH 35/46] KVM: ia64: Flush all TLBs once guest's memory mapping changes Avi Kivity
2009-05-20 11:18 ` [PATCH 36/46] KVM: ia64: remove empty function vti_vcpu_load() Avi Kivity
2009-05-20 11:18 ` [PATCH 37/46] KVM: ia64: restore irq state before calling kvm_vcpu_init Avi Kivity
2009-05-20 11:18 ` [PATCH 38/46] KVM: ia64: preserve int status through call to kvm_insert_vmm_mapping Avi Kivity
2009-05-20 11:18 ` [PATCH 39/46] KVM: ia64: ia64 vcpu_reset() do not call kmalloc() with irqs disabled Avi Kivity
2009-05-20 11:18 ` [PATCH 40/46] KVM: MMU: Fix auditing code Avi Kivity
2009-05-20 11:18 ` [PATCH 41/46] KVM: Make kvm_cpu_(has|get)_interrupt() work for userspace irqchip too Avi Kivity
2009-05-20 11:18 ` [PATCH 42/46] KVM: VMX: Consolidate userspace and kernel interrupt injection for VMX Avi Kivity
2009-05-20 11:18 ` [PATCH 43/46] KVM: VMX: Cleanup vmx_intr_assist() Avi Kivity
2009-05-20 11:18 ` [PATCH 44/46] KVM: Use kvm_arch_interrupt_allowed() instead of checking interrupt_window_open directly Avi Kivity
2009-05-20 11:18 ` [PATCH 45/46] KVM: SVM: Coalesce userspace/kernel irqchip interrupt injection logic Avi Kivity
2009-05-20 11:18 ` [PATCH 46/46] KVM: Remove exception_injected() callback Avi Kivity

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®