diff options
author | Avi Kivity <avi@redhat.com> | 2010-12-08 18:04:51 +0200 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-01-12 11:30:50 +0200 |
commit | 5c663a1534d27d817e17eed06a83d08f497f9f4f (patch) | |
tree | 58b690d0ed4df12e81213c581db34b8bac2780c3 /include/linux/kvm_host.h | |
parent | 81dd35d42c9aef3c1f7ae6ce4cf6a0d382661db5 (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/kvm_host.h')
-rw-r--r-- | include/linux/kvm_host.h | 2 |
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 { struct mmu_notifier mmu_notifier; unsigned long mmu_notifier_seq; long mmu_notifier_count; - long tlbs_dirty; #endif + long tlbs_dirty; }; /* The guest did something we don't support. */ |