d3c7b77d1a
Hide the internals of vcpu awakening / injection from the in-kernel emulated timers. This makes future changes in this logic easier and decreases the distance to more generic timer handling. Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com> Signed-off-by: Avi Kivity <avi@redhat.com>
18 lines
348 B
C
18 lines
348 B
C
|
|
struct kvm_timer {
|
|
struct hrtimer timer;
|
|
s64 period; /* unit: ns */
|
|
atomic_t pending; /* accumulated triggered timers */
|
|
bool reinject;
|
|
struct kvm_timer_ops *t_ops;
|
|
struct kvm *kvm;
|
|
int vcpu_id;
|
|
};
|
|
|
|
struct kvm_timer_ops {
|
|
bool (*is_periodic)(struct kvm_timer *);
|
|
};
|
|
|
|
|
|
enum hrtimer_restart kvm_timer_fn(struct hrtimer *data);
|
|
|