Searched refs:that_cpu (Results 1 – 3 of 3) sorted by relevance
/linux/include/linux/sched/ |
H A D | topology.h | 179 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) in cpus_equal_capacity() argument 235 static inline bool cpus_share_cache(int this_cpu, int that_cpu) in cpus_share_cache() argument 240 static inline bool cpus_share_resources(int this_cpu, int that_cpu) in cpus_share_resources() argument
|
/linux/arch/arm/common/ |
H A D | bL_switcher.c | 149 unsigned int mpidr, this_cpu, that_cpu; in bL_switch_to() local 164 that_cpu = bL_switcher_cpu_pairing[this_cpu]; in bL_switch_to() 165 ib_mpidr = cpu_logical_map(that_cpu); in bL_switch_to() 228 cpu_logical_map(that_cpu) = ob_mpidr; in bL_switch_to()
|
/linux/kernel/sched/ |
H A D | core.c | 3843 bool cpus_equal_capacity(int this_cpu, int that_cpu) in cpus_equal_capacity() argument 3848 if (this_cpu == that_cpu) in cpus_equal_capacity() 3851 return arch_scale_cpu_capacity(this_cpu) == arch_scale_cpu_capacity(that_cpu); in cpus_equal_capacity() 3854 bool cpus_share_cache(int this_cpu, int that_cpu) in cpus_share_cache() argument 3856 if (this_cpu == that_cpu) in cpus_share_cache() 3859 return per_cpu(sd_llc_id, this_cpu) == per_cpu(sd_llc_id, that_cpu); in cpus_share_cache() 3866 bool cpus_share_resources(int this_cpu, int that_cpu) in cpus_share_resources() argument 3868 if (this_cpu == that_cpu) in cpus_share_resources() 3871 return per_cpu(sd_share_id, this_cpu) == per_cpu(sd_share_id, that_cpu); in cpus_share_resources()
|