Searched refs:cfs_b (Results 1 – 3 of 3) sorted by relevance
2063 void __refill_cfs_bandwidth_runtime(struct cfs_bandwidth *cfs_b) in __refill_cfs_bandwidth_runtime() argument2067 if (cfs_b->quota == RUNTIME_INF) in __refill_cfs_bandwidth_runtime()2071 cfs_b->runtime = cfs_b->quota; in __refill_cfs_bandwidth_runtime()2072 cfs_b->runtime_expires = now + ktime_to_ns(cfs_b->period); in __refill_cfs_bandwidth_runtime()2093 struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(tg); in assign_cfs_rq_runtime() local2099 raw_spin_lock(&cfs_b->lock); in assign_cfs_rq_runtime()2100 if (cfs_b->quota == RUNTIME_INF) in assign_cfs_rq_runtime()2109 if (!cfs_b->timer_active) { in assign_cfs_rq_runtime()2110 __refill_cfs_bandwidth_runtime(cfs_b); in assign_cfs_rq_runtime()2111 __start_cfs_bandwidth(cfs_b); in assign_cfs_rq_runtime()[all …]
208 extern void init_cfs_bandwidth(struct cfs_bandwidth *cfs_b);211 extern void __refill_cfs_bandwidth_runtime(struct cfs_bandwidth *cfs_b);212 extern void __start_cfs_bandwidth(struct cfs_bandwidth *cfs_b);
7786 struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth; in tg_set_cfs_bandwidth() local7813 runtime_was_enabled = cfs_b->quota != RUNTIME_INF; in tg_set_cfs_bandwidth()7815 raw_spin_lock_irq(&cfs_b->lock); in tg_set_cfs_bandwidth()7816 cfs_b->period = ns_to_ktime(period); in tg_set_cfs_bandwidth()7817 cfs_b->quota = quota; in tg_set_cfs_bandwidth()7819 __refill_cfs_bandwidth_runtime(cfs_b); in tg_set_cfs_bandwidth()7821 if (runtime_enabled && cfs_b->timer_active) { in tg_set_cfs_bandwidth()7823 cfs_b->timer_active = 0; in tg_set_cfs_bandwidth()7824 __start_cfs_bandwidth(cfs_b); in tg_set_cfs_bandwidth()7826 raw_spin_unlock_irq(&cfs_b->lock); in tg_set_cfs_bandwidth()[all …]