Home
last modified time | relevance | path

Searched refs:period_timer (Results 1 – 5 of 5) sorted by relevance

/linux-3.4.99/drivers/net/wireless/ath/ath9k/
Dgpio.c219 mod_timer(&btcoex->period_timer, jiffies + in ath_btcoex_period_timer()
260 setup_timer(&btcoex->period_timer, ath_btcoex_period_timer, in ath_init_btcoex_timer()
294 mod_timer(&btcoex->period_timer, jiffies); in ath9k_btcoex_timer_resume()
306 del_timer_sync(&btcoex->period_timer); in ath9k_btcoex_timer_pause()
Dath9k.h442 struct timer_list period_timer; /* Timer for BT period */ member
/linux-3.4.99/kernel/sched/
Dsched.h94 struct hrtimer period_timer, slack_timer; member
979 extern void start_bandwidth_timer(struct hrtimer *period_timer, ktime_t period);
Dfair.c1850 struct hrtimer *refresh_timer = &cfs_b->period_timer; in runtime_refresh_within()
2006 container_of(timer, struct cfs_bandwidth, period_timer); in sched_cfs_period_timer()
2032 hrtimer_init(&cfs_b->period_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); in init_cfs_bandwidth()
2033 cfs_b->period_timer.function = sched_cfs_period_timer; in init_cfs_bandwidth()
2053 while (unlikely(hrtimer_active(&cfs_b->period_timer)) && in __start_cfs_bandwidth()
2054 hrtimer_try_to_cancel(&cfs_b->period_timer) < 0) { in __start_cfs_bandwidth()
2065 start_bandwidth_timer(&cfs_b->period_timer, cfs_b->period); in __start_cfs_bandwidth()
2070 hrtimer_cancel(&cfs_b->period_timer); in destroy_cfs_bandwidth()
Dcore.c90 void start_bandwidth_timer(struct hrtimer *period_timer, ktime_t period) in start_bandwidth_timer() argument
96 if (hrtimer_active(period_timer)) in start_bandwidth_timer()
99 now = hrtimer_cb_get_time(period_timer); in start_bandwidth_timer()
100 hrtimer_forward(period_timer, now, period); in start_bandwidth_timer()
102 soft = hrtimer_get_softexpires(period_timer); in start_bandwidth_timer()
103 hard = hrtimer_get_expires(period_timer); in start_bandwidth_timer()
105 __hrtimer_start_range_ns(period_timer, soft, delta, in start_bandwidth_timer()