• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kvm/
1
2struct 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;
10};
11
12struct kvm_timer_ops {
13	bool (*is_periodic)(struct kvm_timer *);
14};
15
16enum hrtimer_restart kvm_timer_fn(struct hrtimer *data);
17