The patch titled kvm: plumbing has been added to the -mm tree. Its filename is kvm-plumbing.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: kvm: plumbing From: Avi Kivity <avi@xxxxxxxxxxxx> Add a config entry and a Makefile for KVM. Signed-off-by: Avi Kivity <avi@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/Kconfig | 2 ++ drivers/Makefile | 1 + drivers/kvm/Kconfig | 18 ++++++++++++++++++ drivers/kvm/Makefile | 6 ++++++ 4 files changed, 27 insertions(+) diff -puN drivers/Kconfig~kvm-plumbing drivers/Kconfig --- a/drivers/Kconfig~kvm-plumbing +++ a/drivers/Kconfig @@ -82,4 +82,6 @@ source "drivers/uio/Kconfig" source "drivers/auxdisplay/Kconfig" +source "drivers/kvm/Kconfig" + endmenu diff -puN drivers/Makefile~kvm-plumbing drivers/Makefile --- a/drivers/Makefile~kvm-plumbing +++ a/drivers/Makefile @@ -78,4 +78,5 @@ obj-$(CONFIG_CRYPTO) += crypto/ obj-$(CONFIG_SUPERH) += sh/ obj-$(CONFIG_GENERIC_TIME) += clocksource/ obj-$(CONFIG_DMA_ENGINE) += dma/ +obj-$(CONFIG_KVM) += kvm/ obj-y += auxdisplay/ diff -puN /dev/null drivers/kvm/Kconfig --- /dev/null +++ a/drivers/kvm/Kconfig @@ -0,0 +1,18 @@ +# +# KVM configuration +# +config KVM + tristate "Kernel-based Virtual Machine (KVM) support" + depends on X86 && EXPERIMENTAL + ---help--- + Support hosting fully virtualized guest machines using hardware + virtualization extensions. You will need a fairly recent Intel + processor equipped with VT extensions. + + This module provides access to the hardware capabilities through + a character device node named /dev/kvm. + + To compile this as a module, choose M here: the module + will be called kvm. + + If unsure, say N. diff -puN /dev/null drivers/kvm/Makefile --- /dev/null +++ a/drivers/kvm/Makefile @@ -0,0 +1,6 @@ +# +# Makefile for Kernel-based Virtual Machine module +# + +kvm-objs := kvm_main.o mmu.o x86_emulate.o +obj-$(CONFIG_KVM) += kvm.o _ Patches currently in -mm which might be from avi@xxxxxxxxxxxx are kvm-userspace-interface.patch kvm-intel-virtual-mode-extensions-definitions.patch kvm-kvm-data-structures.patch kvm-random-accessors-and-constants.patch kvm-virtualization-infrastructure.patch kvm-memory-slot-management.patch kvm-vcpu-creation-and-maintenance.patch kvm-vcpu-execution-loop.patch kvm-define-exit-handlers.patch kvm-less-common-exit-handlers.patch kvm-mmu.patch kvm-x86-emulator.patch kvm-plumbing.patch kvm-dynamically-determine-which-msrs-to-load-and-save.patch kvm-fix-calculation-of-initial-value-of-rdx-register.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html