aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/timer.c
diff options
context:
space:
mode:
authorJan Kiszka <jan.kiszka@siemens.com>2009-06-09 09:37:03 -0400
committerAvi Kivity <avi@redhat.com>2009-09-10 01:32:57 -0400
commit681405bfc73a2717ae9b03b2bad465b009106f31 (patch)
tree4b6d8a726a200f188434487f32fe6b29aa38e624 /arch/x86/kvm/timer.c
parentf7104db26ab2bc5f642892774ac8fb0f15400969 (diff)
KVM: Drop useless atomic test from timer function
The current code tries to optimize the setting of KVM_REQ_PENDING_TIMER but used atomic_inc_and_test - which always returns true unless pending had the invalid value of -1 on entry. This patch drops the test part preserving the original semantic but expressing it less confusingly. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm/timer.c')
-rw-r--r--arch/x86/kvm/timer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kvm/timer.c b/arch/x86/kvm/timer.c
index 1baed414b57a..eea40439066c 100644
--- a/arch/x86/kvm/timer.c
+++ b/arch/x86/kvm/timer.c
@@ -15,9 +15,9 @@ static int __kvm_timer_fn(struct kvm_vcpu *vcpu, struct kvm_timer *ktimer)
15 * case anyway. 15 * case anyway.
16 */ 16 */
17 if (ktimer->reinject || !atomic_read(&ktimer->pending)) { 17 if (ktimer->reinject || !atomic_read(&ktimer->pending)) {
18 atomic_inc(&ktimer->pending);
18 /* FIXME: this code should not know anything about vcpus */ 19 /* FIXME: this code should not know anything about vcpus */
19 if (!atomic_inc_and_test(&ktimer->pending)) 20 set_bit(KVM_REQ_PENDING_TIMER, &vcpu->requests);
20 set_bit(KVM_REQ_PENDING_TIMER, &vcpu->requests);
21 } 21 }
22 22
23 if (waitqueue_active(q)) 23 if (waitqueue_active(q))