aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcelo Tosatti <mtosatti@redhat.com>2008-09-23 12:18:41 -0400
committerAvi Kivity <avi@redhat.com>2008-10-15 08:25:27 -0400
commit582801a95d2f2ceab841779e1dec0e11dfec44c0 (patch)
tree6d112abb4e27cfde664568f37baae12ca570379a
parent0074ff63ebc195701062ca46e0d82fcea0fa3a0a (diff)
KVM: MMU: add "oos_shadow" parameter to disable oos
Subject says it all. Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com> Signed-off-by: Avi Kivity <avi@redhat.com>
-rw-r--r--arch/x86/kvm/mmu.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c
index cb391d629af2..99c239c5c0ac 100644
--- a/arch/x86/kvm/mmu.c
+++ b/arch/x86/kvm/mmu.c
@@ -70,6 +70,9 @@ static int dbg = 0;
70module_param(dbg, bool, 0644); 70module_param(dbg, bool, 0644);
71#endif 71#endif
72 72
73static int oos_shadow = 1;
74module_param(oos_shadow, bool, 0644);
75
73#ifndef MMU_DEBUG 76#ifndef MMU_DEBUG
74#define ASSERT(x) do { } while (0) 77#define ASSERT(x) do { } while (0)
75#else 78#else
@@ -1424,7 +1427,7 @@ static int mmu_need_write_protect(struct kvm_vcpu *vcpu, gfn_t gfn,
1424 return 1; 1427 return 1;
1425 if (shadow->unsync) 1428 if (shadow->unsync)
1426 return 0; 1429 return 0;
1427 if (can_unsync) 1430 if (can_unsync && oos_shadow)
1428 return kvm_unsync_page(vcpu, shadow); 1431 return kvm_unsync_page(vcpu, shadow);
1429 return 1; 1432 return 1;
1430 } 1433 }