aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/timer.c
diff options
context:
space:
mode:
authorGleb Natapov <gleb@redhat.com>2009-06-09 08:56:27 -0400
committerAvi Kivity <avi@redhat.com>2009-09-10 01:32:52 -0400
commit1ed0ce000a6c20c36ec649e32fc24393ef418ed8 (patch)
tree85a78c27d972c64e8bd9ff6b429d398977f8ac8b /arch/x86/kvm/timer.c
parentc5af89b68abb26eea5e745f33228f4d672f115e5 (diff)
KVM: Use pointer to vcpu instead of vcpu_id in timer code.
Signed-off-by: Gleb Natapov <gleb@redhat.com> Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm/timer.c')
-rw-r--r--arch/x86/kvm/timer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/timer.c b/arch/x86/kvm/timer.c
index 86dbac072d0c..85cc743a8203 100644
--- a/arch/x86/kvm/timer.c
+++ b/arch/x86/kvm/timer.c
@@ -33,7 +33,7 @@ enum hrtimer_restart kvm_timer_fn(struct hrtimer *data)
33 struct kvm_vcpu *vcpu; 33 struct kvm_vcpu *vcpu;
34 struct kvm_timer *ktimer = container_of(data, struct kvm_timer, timer); 34 struct kvm_timer *ktimer = container_of(data, struct kvm_timer, timer);
35 35
36 vcpu = ktimer->kvm->vcpus[ktimer->vcpu_id]; 36 vcpu = ktimer->vcpu;
37 if (!vcpu) 37 if (!vcpu)
38 return HRTIMER_NORESTART; 38 return HRTIMER_NORESTART;
39 39