diff options
author | Eric B Munson <emunson@mgebm.net> | 2011-10-10 11:46:15 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-12-27 11:17:04 +0200 |
commit | b297e672e24687546ac74af5ae5e8c4a022b9806 (patch) | |
tree | f3cc38a792aea3354c00b02ccd7b98037c90464c /include | |
parent | a30f47cb150dd8d109923eeb65fe73e8b3e09046 (diff) |
KVM: Fix include dependency for mmu_notifier
The kvm_host struct can include an mmu_notifier struct but mmu_notifier.h is
not included directly.
Signed-off-by: Eric B Munson <emunson@mgebm.net>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/kvm_host.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/kvm_host.h b/include/linux/kvm_host.h index 9fedeb356b95..c6a2ec925846 100644 --- a/include/linux/kvm_host.h +++ b/include/linux/kvm_host.h @@ -14,6 +14,7 @@ #include <linux/signal.h> #include <linux/sched.h> #include <linux/mm.h> +#include <linux/mmu_notifier.h> #include <linux/preempt.h> #include <linux/msi.h> #include <linux/slab.h> |