aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorAvi Kivity <avi@redhat.com>2010-12-08 11:04:51 -0500
committerAvi Kivity <avi@redhat.com>2011-01-12 04:30:50 -0500
commit5c663a1534d27d817e17eed06a83d08f497f9f4f (patch)
tree58b690d0ed4df12e81213c581db34b8bac2780c3 /include/linux
parent81dd35d42c9aef3c1f7ae6ce4cf6a0d382661db5 (diff)
KVM: Fix build error on s390 due to missing tlbs_dirty
Make it available for all archs. Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/kvm_host.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/kvm_host.h b/include/linux/kvm_host.h
index bd0da8f12500..b5021db21858 100644
--- a/include/linux/kvm_host.h
+++ b/include/linux/kvm_host.h
@@ -256,8 +256,8 @@ struct kvm {
256 struct mmu_notifier mmu_notifier; 256 struct mmu_notifier mmu_notifier;
257 unsigned long mmu_notifier_seq; 257 unsigned long mmu_notifier_seq;
258 long mmu_notifier_count; 258 long mmu_notifier_count;
259 long tlbs_dirty;
260#endif 259#endif
260 long tlbs_dirty;
261}; 261};
262 262
263/* The guest did something we don't support. */ 263/* The guest did something we don't support. */