diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-22 09:56:07 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-22 09:56:07 -0800 |
commit | c874e6fc3596322b0248df3158dd9d5f43a958d0 (patch) | |
tree | fd89609fe1f7a0b7c7031daee21ca9e0eaa9c1dd /arch/x86 | |
parent | d0f278c1dd0175093ed37ce132395dc689e6987e (diff) | |
parent | 8a3caa6d74597c2a083f7c87f866891a0b12540b (diff) | |
download | op-kernel-dev-c874e6fc3596322b0248df3158dd9d5f43a958d0.zip op-kernel-dev-c874e6fc3596322b0248df3158dd9d5f43a958d0.tar.gz |
Merge branch 'next' of git://git.kernel.org/pub/scm/virt/kvm/kvm
Pull KVM fixes from Gleb Natapov.
* 'next' of git://git.kernel.org/pub/scm/virt/kvm/kvm:
KVM: kvm_clear_guest_page(): fix empty_zero_page usage
kvm: mmu: delay mmu audit activation
arm/arm64: KVM: Fix hyp mappings of vmalloc regions
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kvm/mmu_audit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/mmu_audit.c b/arch/x86/kvm/mmu_audit.c index daff69e..1185fe7 100644 --- a/arch/x86/kvm/mmu_audit.c +++ b/arch/x86/kvm/mmu_audit.c @@ -296,4 +296,4 @@ static struct kernel_param_ops audit_param_ops = { .get = param_get_bool, }; -module_param_cb(mmu_audit, &audit_param_ops, &mmu_audit, 0644); +arch_param_cb(mmu_audit, &audit_param_ops, &mmu_audit, 0644); |