diff options
author | Avi Kivity <avi@qumranet.com> | 2008-06-22 16:45:24 +0300 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2008-07-20 12:42:35 +0300 |
commit | 6ada8cca79cb971f5da7d1756f4f9292e3ef1e03 (patch) | |
tree | 2bc5eedd2a0a10327be2f0e32d6d3d04fc2362ef /arch/x86/kvm/mmu.c | |
parent | 7a5b56dfd3a682a51fc84682290d5147872a8e99 (diff) |
KVM: MMU: When debug is enabled, make it a run-time parameter
Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'arch/x86/kvm/mmu.c')
-rw-r--r-- | arch/x86/kvm/mmu.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c index 5ebb2788bd7..5994645dcee 100644 --- a/arch/x86/kvm/mmu.c +++ b/arch/x86/kvm/mmu.c @@ -66,7 +66,8 @@ static void kvm_mmu_audit(struct kvm_vcpu *vcpu, const char *msg) {} #endif #if defined(MMU_DEBUG) || defined(AUDIT) -static int dbg = 1; +static int dbg = 0; +module_param(dbg, bool, 0644); #endif #ifndef MMU_DEBUG |