Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/kernel/sched/
H A Dcpufreq_schedutil.c23 unsigned int target_load; member
177 freq = div64_ul((u64)(100 * freq / sg_policy->tunables->target_load) * util, max); in get_next_freq()
627 return sprintf(buf, "%u\n", tunables->target_load); in target_load_show()
634 unsigned int target_load; in target_load_store() local
636 if (kstrtouint(buf, 10, &target_load)) in target_load_store()
639 if (!target_load || (target_load > 100)) in target_load_store()
642 tunables->target_load = target_load; in target_load_store()
647 static struct governor_attr target_load = __ATTR_RW(target_load); variable
653 &target_load.attr,
819 tunables->target_load = 80; in sugov_init()