Searched refs:cfs_period_us (Results 1 – 2 of 2) sorted by relevance
29 cpu.cfs_period_us: the length of a period (in microseconds)34 cpu.cfs_period_us=100ms154 # echo 250000 > cpu.cfs_period_us /* period = 250ms */162 # echo 500000 > cpu.cfs_period_us /* period = 500ms */171 # echo 50000 > cpu.cfs_period_us /* period = 50ms */
8008 static int tg_set_cfs_period(struct task_group *tg, long cfs_period_us) in tg_set_cfs_period() argument8012 if ((u64)cfs_period_us > U64_MAX / NSEC_PER_USEC) in tg_set_cfs_period()8015 period = (u64)cfs_period_us * NSEC_PER_USEC; in tg_set_cfs_period()8023 u64 cfs_period_us; in tg_get_cfs_period() local8025 cfs_period_us = ktime_to_ns(tg->cfs_bandwidth.period); in tg_get_cfs_period()8026 do_div(cfs_period_us, NSEC_PER_USEC); in tg_get_cfs_period()8028 return cfs_period_us; in tg_get_cfs_period()8050 struct cftype *cftype, u64 cfs_period_us) in cpu_cfs_period_write_u64() argument8052 return tg_set_cfs_period(css_tg(css), cfs_period_us); in cpu_cfs_period_write_u64()