diff options
author | Xiao Guangrong <xiaoguangrong@cn.fujitsu.com> | 2011-01-12 02:41:22 -0500 |
---|---|---|
committer | Marcelo Tosatti <mtosatti@redhat.com> | 2011-03-17 12:08:26 -0400 |
commit | 3cba41307a2b1344ab8c1b9f55202d1e9d7bf81b (patch) | |
tree | 87191d63557cc722906ceaec98a1f8f148cf1fcc /include | |
parent | 6b7e2d0991489559a1df4500d77f7b76c4607ed0 (diff) |
KVM: make make_all_cpus_request() lockless
Now, we have 'vcpu->mode' to judge whether need to send ipi to other
cpus, this way is very exact, so checking request bit is needless,
then we can drop the spinlock let it's collateral
Signed-off-by: Xiao Guangrong <xiaoguangrong@cn.fujitsu.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/kvm_host.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/linux/kvm_host.h b/include/linux/kvm_host.h index b99eacd988ab..c8dee22b1945 100644 --- a/include/linux/kvm_host.h +++ b/include/linux/kvm_host.h | |||
@@ -224,7 +224,6 @@ struct kvm_memslots { | |||
224 | 224 | ||
225 | struct kvm { | 225 | struct kvm { |
226 | spinlock_t mmu_lock; | 226 | spinlock_t mmu_lock; |
227 | raw_spinlock_t requests_lock; | ||
228 | struct mutex slots_lock; | 227 | struct mutex slots_lock; |
229 | struct mm_struct *mm; /* userspace tied to this vm */ | 228 | struct mm_struct *mm; /* userspace tied to this vm */ |
230 | struct kvm_memslots *memslots; | 229 | struct kvm_memslots *memslots; |
@@ -731,11 +730,6 @@ static inline void kvm_make_request(int req, struct kvm_vcpu *vcpu) | |||
731 | set_bit(req, &vcpu->requests); | 730 | set_bit(req, &vcpu->requests); |
732 | } | 731 | } |
733 | 732 | ||
734 | static inline bool kvm_make_check_request(int req, struct kvm_vcpu *vcpu) | ||
735 | { | ||
736 | return test_and_set_bit(req, &vcpu->requests); | ||
737 | } | ||
738 | |||
739 | static inline bool kvm_check_request(int req, struct kvm_vcpu *vcpu) | 733 | static inline bool kvm_check_request(int req, struct kvm_vcpu *vcpu) |
740 | { | 734 | { |
741 | if (test_bit(req, &vcpu->requests)) { | 735 | if (test_bit(req, &vcpu->requests)) { |