Merge commit 'v2.6.32.11' into mini2440-stable-v2.6.32
[linux-2.6/mini2440.git] / arch / x86 / kvm / kvm_timer.h
blob55c7524dda549579bafdbf6089072ef6f8f5c14f
2 struct kvm_timer {
3 struct hrtimer timer;
4 s64 period; /* unit: ns */
5 atomic_t pending; /* accumulated triggered timers */
6 bool reinject;
7 struct kvm_timer_ops *t_ops;
8 struct kvm *kvm;
9 struct kvm_vcpu *vcpu;
12 struct kvm_timer_ops {
13 bool (*is_periodic)(struct kvm_timer *);
17 enum hrtimer_restart kvm_timer_fn(struct hrtimer *data);