Searched refs:par (Results 1 – 5 of 5) sorted by relevance
/kernel/ |
D | profile.c | 62 int par; in profile_setup() local 70 if (get_option(&str, &par)) in profile_setup() 71 prof_shift = clamp(par, 0, BITS_PER_LONG - 1); in profile_setup() 81 if (get_option(&str, &par)) in profile_setup() 82 prof_shift = clamp(par, 0, BITS_PER_LONG - 1); in profile_setup() 89 if (get_option(&str, &par)) in profile_setup() 90 prof_shift = clamp(par, 0, BITS_PER_LONG - 1); in profile_setup() 93 } else if (get_option(&str, &par)) { in profile_setup() 94 prof_shift = clamp(par, 0, BITS_PER_LONG - 1); in profile_setup()
|
D | up.c | 58 int smp_call_on_cpu(unsigned int cpu, int (*func)(void *), void *par, bool phys) in smp_call_on_cpu() argument 67 ret = func(par); in smp_call_on_cpu()
|
D | smp.c | 1220 int smp_call_on_cpu(unsigned int cpu, int (*func)(void *), void *par, bool phys) in smp_call_on_cpu() argument 1225 .data = par, in smp_call_on_cpu()
|
/kernel/sched/ |
D | isolation.c | 152 char *par; in housekeeping_isolcpus_setup() local 178 for (par = str, len = 0; *str && *str != ','; str++, len++) { in housekeeping_isolcpus_setup() 184 pr_warn("isolcpus: Invalid flag %.*s\n", len, par); in housekeeping_isolcpus_setup() 188 pr_info("isolcpus: Skipped unknown flag %.*s\n", len, par); in housekeeping_isolcpus_setup()
|
/kernel/cgroup/ |
D | cpuset.c | 633 struct cpuset *c, *par; in validate_change() local 649 par = parent_cs(cur); in validate_change() 653 if (!is_in_v2_mode() && !is_cpuset_subset(trial, par)) in validate_change() 661 cpuset_for_each_child(c, css, par) { in validate_change()
|