Skip to content

Commit

Permalink
KVM: SVM: enable nested svm by default
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Joerg Roedel authored and Avi Kivity committed Sep 10, 2009
1 parent 108768d commit 4b6e4dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/kvm/svm.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ static int npt = 1;

module_param(npt, int, S_IRUGO);

static int nested = 0;
static int nested = 1;
module_param(nested, int, S_IRUGO);

static void svm_flush_tlb(struct kvm_vcpu *vcpu);
Expand Down

0 comments on commit 4b6e4dc

Please sign in to comment.