Searched refs:quota (Results 1 – 3 of 3) sorted by relevance
/kernel/sched/ |
D | core.c | 10513 static int tg_set_cfs_bandwidth(struct task_group *tg, u64 period, u64 quota, in tg_set_cfs_bandwidth() argument 10527 if (quota < min_cfs_quota_period || period < min_cfs_quota_period) in tg_set_cfs_bandwidth() 10541 if (quota != RUNTIME_INF && quota > max_cfs_runtime) in tg_set_cfs_bandwidth() 10544 if (quota != RUNTIME_INF && (burst > quota || in tg_set_cfs_bandwidth() 10545 burst + quota > max_cfs_runtime)) in tg_set_cfs_bandwidth() 10554 ret = __cfs_schedulable(tg, period, quota); in tg_set_cfs_bandwidth() 10558 runtime_enabled = quota != RUNTIME_INF; in tg_set_cfs_bandwidth() 10559 runtime_was_enabled = cfs_b->quota != RUNTIME_INF; in tg_set_cfs_bandwidth() 10568 cfs_b->quota = quota; in tg_set_cfs_bandwidth() 10603 u64 quota, period, burst; in tg_set_cfs_quota() local [all …]
|
D | fair.c | 4930 if (unlikely(cfs_b->quota == RUNTIME_INF)) in __refill_cfs_bandwidth_runtime() 4933 cfs_b->runtime += cfs_b->quota; in __refill_cfs_bandwidth_runtime() 4934 cfs_b->runtime = min(cfs_b->runtime, cfs_b->quota + cfs_b->burst); in __refill_cfs_bandwidth_runtime() 4953 if (cfs_b->quota == RUNTIME_INF) in __assign_cfs_rq_runtime() 5305 if (cfs_b->quota == RUNTIME_INF) in do_sched_cfs_period_timer() 5415 if (cfs_b->quota != RUNTIME_INF) { in __return_cfs_rq_runtime() 5458 if (cfs_b->quota != RUNTIME_INF && cfs_b->runtime > slice) in do_sched_cfs_slack_timer() 5569 cfs_b->quota *= 2; in sched_cfs_period_timer() 5576 div_u64(cfs_b->quota, NSEC_PER_USEC)); in sched_cfs_period_timer() 5582 div_u64(cfs_b->quota, NSEC_PER_USEC)); in sched_cfs_period_timer() [all …]
|
D | sched.h | 370 u64 quota; member
|