Searched refs:that_cpu (Results 1 - 3 of 3) sorted by relevance

/linux-master/include/linux/sched/
H A Dtopology.h179 bool cpus_equal_capacity(int this_cpu, int that_cpu);
180 bool cpus_share_cache(int this_cpu, int that_cpu);
181 bool cpus_share_resources(int this_cpu, int that_cpu);
230 static inline bool cpus_equal_capacity(int this_cpu, int that_cpu) argument
235 static inline bool cpus_share_cache(int this_cpu, int that_cpu) argument
240 static inline bool cpus_share_resources(int this_cpu, int that_cpu) argument
/linux-master/arch/arm/common/
H A DbL_switcher.c149 unsigned int mpidr, this_cpu, that_cpu; local
164 that_cpu = bL_switcher_cpu_pairing[this_cpu];
165 ib_mpidr = cpu_logical_map(that_cpu);
228 cpu_logical_map(that_cpu) = ob_mpidr;
/linux-master/kernel/sched/
H A Dcore.c3956 bool cpus_equal_capacity(int this_cpu, int that_cpu) argument
3961 if (this_cpu == that_cpu)
3964 return arch_scale_cpu_capacity(this_cpu) == arch_scale_cpu_capacity(that_cpu);
3967 bool cpus_share_cache(int this_cpu, int that_cpu) argument
3969 if (this_cpu == that_cpu)
3972 return per_cpu(sd_llc_id, this_cpu) == per_cpu(sd_llc_id, that_cpu);
3979 bool cpus_share_resources(int this_cpu, int that_cpu) argument
3981 if (this_cpu == that_cpu)
3984 return per_cpu(sd_share_id, this_cpu) == per_cpu(sd_share_id, that_cpu);

Completed in 126 milliseconds