summaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/svm.c
diff options
context:
space:
mode:
authorJoerg Roedel2008-02-07 13:47:41 +0100
committerAvi Kivity2008-04-27 10:53:19 +0200
commit1855267210e1a8c9d41fe3a3c7a0d42eca5fb7cd (patch)
tree2af29e610ce7c7196798cc5f580f7282f902df2a /arch/x86/kvm/svm.c
parentKVM: SVM: add module parameter to disable Nested Paging (diff)
downloadkernel-qcow2-linux-1855267210e1a8c9d41fe3a3c7a0d42eca5fb7cd.tar.gz
kernel-qcow2-linux-1855267210e1a8c9d41fe3a3c7a0d42eca5fb7cd.tar.xz
kernel-qcow2-linux-1855267210e1a8c9d41fe3a3c7a0d42eca5fb7cd.zip
KVM: export information about NPT to generic x86 code
The generic x86 code has to know if the specific implementation uses Nested Paging. In the generic code Nested Paging is called Two Dimensional Paging (TDP) to avoid confusion with (future) TDP implementations of other vendors. This patch exports the availability of TDP to the generic x86 code. Signed-off-by: Joerg Roedel <joerg.roedel@amd.com> Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'arch/x86/kvm/svm.c')
-rw-r--r--arch/x86/kvm/svm.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c
index fb5d6c2e6a08..9e29a13136c4 100644
--- a/arch/x86/kvm/svm.c
+++ b/arch/x86/kvm/svm.c
@@ -426,8 +426,10 @@ static __init int svm_hardware_setup(void)
npt_enabled = false;
}
- if (npt_enabled)
+ if (npt_enabled) {
printk(KERN_INFO "kvm: Nested Paging enabled\n");
+ kvm_enable_tdp();
+ }
return 0;