aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/kvm_host.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/kvm_host.h')
-rw-r--r--include/linux/kvm_host.h6
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
225struct kvm { 225struct 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
734static inline bool kvm_make_check_request(int req, struct kvm_vcpu *vcpu)
735{
736 return test_and_set_bit(req, &vcpu->requests);
737}
738
739static inline bool kvm_check_request(int req, struct kvm_vcpu *vcpu) 733static 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)) {