diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-04 12:30:33 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-04 12:30:33 -0400 |
commit | ecefbd94b834fa32559d854646d777c56749ef1c (patch) | |
tree | ca8958900ad9e208a8e5fb7704f1b66dc76131b4 /arch/x86/Kconfig | |
parent | ce57e981f2b996aaca2031003b3f866368307766 (diff) | |
parent | 3d11df7abbff013b811d5615320580cd5d9d7d31 (diff) |
Merge tag 'kvm-3.7-1' of git://git.kernel.org/pub/scm/virt/kvm/kvm
Pull KVM updates from Avi Kivity:
"Highlights of the changes for this release include support for vfio
level triggered interrupts, improved big real mode support on older
Intels, a streamlines guest page table walker, guest APIC speedups,
PIO optimizations, better overcommit handling, and read-only memory."
* tag 'kvm-3.7-1' of git://git.kernel.org/pub/scm/virt/kvm/kvm: (138 commits)
KVM: s390: Fix vcpu_load handling in interrupt code
KVM: x86: Fix guest debug across vcpu INIT reset
KVM: Add resampling irqfds for level triggered interrupts
KVM: optimize apic interrupt delivery
KVM: MMU: Eliminate pointless temporary 'ac'
KVM: MMU: Avoid access/dirty update loop if all is well
KVM: MMU: Eliminate eperm temporary
KVM: MMU: Optimize is_last_gpte()
KVM: MMU: Simplify walk_addr_generic() loop
KVM: MMU: Optimize pte permission checks
KVM: MMU: Update accessed and dirty bits after guest pagetable walk
KVM: MMU: Move gpte_access() out of paging_tmpl.h
KVM: MMU: Optimize gpte_access() slightly
KVM: MMU: Push clean gpte write protection out of gpte_access()
KVM: clarify kvmclock documentation
KVM: make processes waiting on vcpu mutex killable
KVM: SVM: Make use of asm.h
KVM: VMX: Make use of asm.h
KVM: VMX: Make lto-friendly
KVM: x86: lapic: Clean up find_highest_vector() and count_vectors()
...
Conflicts:
arch/s390/include/asm/processor.h
arch/x86/kvm/i8259.c
Diffstat (limited to 'arch/x86/Kconfig')
-rw-r--r-- | arch/x86/Kconfig | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 7f9a395c5254..b72777ff32a9 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig | |||
@@ -586,23 +586,18 @@ config PARAVIRT_TIME_ACCOUNTING | |||
586 | 586 | ||
587 | source "arch/x86/xen/Kconfig" | 587 | source "arch/x86/xen/Kconfig" |
588 | 588 | ||
589 | config KVM_CLOCK | ||
590 | bool "KVM paravirtualized clock" | ||
591 | select PARAVIRT | ||
592 | select PARAVIRT_CLOCK | ||
593 | ---help--- | ||
594 | Turning on this option will allow you to run a paravirtualized clock | ||
595 | when running over the KVM hypervisor. Instead of relying on a PIT | ||
596 | (or probably other) emulation by the underlying device model, the host | ||
597 | provides the guest with timing infrastructure such as time of day, and | ||
598 | system time | ||
599 | |||
600 | config KVM_GUEST | 589 | config KVM_GUEST |
601 | bool "KVM Guest support" | 590 | bool "KVM Guest support (including kvmclock)" |
591 | select PARAVIRT | ||
602 | select PARAVIRT | 592 | select PARAVIRT |
593 | select PARAVIRT_CLOCK | ||
594 | default y if PARAVIRT_GUEST | ||
603 | ---help--- | 595 | ---help--- |
604 | This option enables various optimizations for running under the KVM | 596 | This option enables various optimizations for running under the KVM |
605 | hypervisor. | 597 | hypervisor. It includes a paravirtualized clock, so that instead |
598 | of relying on a PIT (or probably other) emulation by the | ||
599 | underlying device model, the host provides the guest with | ||
600 | timing infrastructure such as time of day, and system time | ||
606 | 601 | ||
607 | source "arch/x86/lguest/Kconfig" | 602 | source "arch/x86/lguest/Kconfig" |
608 | 603 | ||