diff options
author | Joerg Roedel <joerg.roedel@amd.com> | 2009-08-07 05:49:48 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2009-09-10 03:46:38 -0400 |
commit | 4b6e4dca7011613c8508640c10a091b3ed2cd215 (patch) | |
tree | 526c4008a5d41efc97a06f5482ee619ff9899fa5 | |
parent | 108768de55949c778bd95b36f3b17e652e59cd5b (diff) |
KVM: SVM: enable nested svm by default
Nested SVM is (in my experience) stable enough to be enabled by
default. So omit the requirement to pass a module parameter.
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
-rw-r--r-- | arch/x86/kvm/svm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c index 6610f60b4c96..8f7751a66a2b 100644 --- a/arch/x86/kvm/svm.c +++ b/arch/x86/kvm/svm.c | |||
@@ -124,7 +124,7 @@ static int npt = 1; | |||
124 | 124 | ||
125 | module_param(npt, int, S_IRUGO); | 125 | module_param(npt, int, S_IRUGO); |
126 | 126 | ||
127 | static int nested = 0; | 127 | static int nested = 1; |
128 | module_param(nested, int, S_IRUGO); | 128 | module_param(nested, int, S_IRUGO); |
129 | 129 | ||
130 | static void svm_flush_tlb(struct kvm_vcpu *vcpu); | 130 | static void svm_flush_tlb(struct kvm_vcpu *vcpu); |