Home
last modified time | relevance | path

Searched refs:cfs_burst_us (Results 1 – 3 of 3) sorted by relevance

/linux/Documentation/translations/zh_CN/scheduler/
H A Dsched-bwc.rst74 - cpu.cfs_burst_us:最大累积运行时间(微秒)。
80 cpu.cfs_burst_us=0
85 写入不小于cpu.cfs_burst_us的任何(有效的)正值将配发指定的带宽限制。该配额或周期允许的最
91 cpu.cfs_burst_us的值为0表示该组不能积累任何未使用的带宽。它使得CFS的传统带宽控制行为没有
92 改变。将不大于 cpu.cfs_quota_us 的任何(有效的)正值写入 cpu.cfs_burst_us 将配发未使用
202 # echo 10000 > cpu.cfs_burst_us /* burst = 10ms */
/linux/Documentation/scheduler/
H A Dsched-bwc.rst80 - cpu.cfs_burst_us: the maximum accumulated run-time (in microseconds)
86 cpu.cfs_burst_us=0
93 Writing any (valid) positive value(s) no smaller than cpu.cfs_burst_us will
102 A value of 0 for cpu.cfs_burst_us indicates that the group can not accumulate
105 cpu.cfs_quota_us into cpu.cfs_burst_us will enact the cap on unused bandwidth
244 # echo 10000 > cpu.cfs_burst_us /* burst = 10ms */
/linux/kernel/sched/
H A Dcore.c10949 static int tg_set_cfs_burst(struct task_group *tg, long cfs_burst_us) in tg_set_cfs_burst() argument
10953 if ((u64)cfs_burst_us > U64_MAX / NSEC_PER_USEC) in tg_set_cfs_burst()
10956 burst = (u64)cfs_burst_us * NSEC_PER_USEC; in tg_set_cfs_burst()
11004 struct cftype *cftype, u64 cfs_burst_us) in cpu_cfs_burst_write_u64() argument
11006 return tg_set_cfs_burst(css_tg(css), cfs_burst_us); in cpu_cfs_burst_write_u64()