Searched refs:period_timer (Results 1 – 5 of 5) sorted by relevance
/linux-4.1.27/drivers/net/wireless/ath/ath9k/ |
D | gpio.c | 247 mod_timer(&btcoex->period_timer, in ath_btcoex_period_timer() 287 setup_timer(&btcoex->period_timer, ath_btcoex_period_timer, in ath_init_btcoex_timer() 317 mod_timer(&btcoex->period_timer, jiffies); in ath9k_btcoex_timer_resume() 334 del_timer_sync(&btcoex->period_timer); in ath9k_btcoex_timer_pause()
|
D | ath9k.h | 744 struct timer_list period_timer; /* Timer for BT period */ member
|
/linux-4.1.27/kernel/sched/ |
D | sched.h | 219 struct hrtimer period_timer, slack_timer; member 1410 extern void start_bandwidth_timer(struct hrtimer *period_timer, ktime_t period);
|
D | fair.c | 3858 struct hrtimer *refresh_timer = &cfs_b->period_timer; in runtime_refresh_within() 4010 container_of(timer, struct cfs_bandwidth, period_timer); in sched_cfs_period_timer() 4038 hrtimer_init(&cfs_b->period_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); in init_cfs_bandwidth() 4039 cfs_b->period_timer.function = sched_cfs_period_timer; in init_cfs_bandwidth() 4059 while (unlikely(hrtimer_active(&cfs_b->period_timer)) && in __start_cfs_bandwidth() 4060 hrtimer_try_to_cancel(&cfs_b->period_timer) < 0) { in __start_cfs_bandwidth() 4071 start_bandwidth_timer(&cfs_b->period_timer, cfs_b->period); in __start_cfs_bandwidth() 4080 hrtimer_cancel(&cfs_b->period_timer); in destroy_cfs_bandwidth()
|
D | core.c | 93 void start_bandwidth_timer(struct hrtimer *period_timer, ktime_t period) in start_bandwidth_timer() argument 99 if (hrtimer_active(period_timer)) in start_bandwidth_timer() 102 now = hrtimer_cb_get_time(period_timer); in start_bandwidth_timer() 103 hrtimer_forward(period_timer, now, period); in start_bandwidth_timer() 105 soft = hrtimer_get_softexpires(period_timer); in start_bandwidth_timer() 106 hard = hrtimer_get_expires(period_timer); in start_bandwidth_timer() 108 __hrtimer_start_range_ns(period_timer, soft, delta, in start_bandwidth_timer()
|