summaryrefslogtreecommitdiffstats
path: root/include/linux/kvm_host.h
diff options
context:
space:
mode:
authorAvi Kivity2012-05-14 14:44:06 +0200
committerMarcelo Tosatti2012-05-16 21:08:28 +0200
commitc142786c6291189b5c85f53d91743e1eefbd8fe0 (patch)
tree80e5e37a29ae247d6223672126a10c15751f4dc7 /include/linux/kvm_host.h
parentKVM: VMX: Optimize %ds, %es reload (diff)
downloadkernel-qcow2-linux-c142786c6291189b5c85f53d91743e1eefbd8fe0.tar.gz
kernel-qcow2-linux-c142786c6291189b5c85f53d91743e1eefbd8fe0.tar.xz
kernel-qcow2-linux-c142786c6291189b5c85f53d91743e1eefbd8fe0.zip
KVM: MMU: Don't use RCU for lockless shadow walking
Using RCU for lockless shadow walking can increase the amount of memory in use by the system, since RCU grace periods are unpredictable. We also have an unconditional write to a shared variable (reader_counter), which isn't good for scaling. Replace that with a scheme similar to x86's get_user_pages_fast(): disable interrupts during lockless shadow walk to force the freer (kvm_mmu_commit_zap_page()) to wait for the TLB flush IPI to find the processor with interrupts enabled. We also add a new vcpu->mode, READING_SHADOW_PAGE_TABLES, to prevent kvm_flush_remote_tlbs() from avoiding the IPI. Signed-off-by: Avi Kivity <avi@redhat.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'include/linux/kvm_host.h')
-rw-r--r--include/linux/kvm_host.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/kvm_host.h b/include/linux/kvm_host.h
index cae342d29d1b..c4464356b35b 100644
--- a/include/linux/kvm_host.h
+++ b/include/linux/kvm_host.h
@@ -128,7 +128,8 @@ int kvm_async_pf_wakeup_all(struct kvm_vcpu *vcpu);
enum {
OUTSIDE_GUEST_MODE,
IN_GUEST_MODE,
- EXITING_GUEST_MODE
+ EXITING_GUEST_MODE,
+ READING_SHADOW_PAGE_TABLES,
};
/*