Home
last modified time | relevance | path

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

/Linux-v5.4/arch/parisc/kernel/
Dtopology.c32 struct cputopo_parisc *cpu_topo, *cpuid_topo = &cpu_topology[cpuid]; in update_siblings_masks() local
37 cpu_topo = &cpu_topology[cpu]; in update_siblings_masks()
39 if (cpuid_topo->socket_id != cpu_topo->socket_id) in update_siblings_masks()
42 cpumask_set_cpu(cpuid, &cpu_topo->core_sibling); in update_siblings_masks()
46 if (cpuid_topo->core_id != cpu_topo->core_id) in update_siblings_masks()
49 cpumask_set_cpu(cpuid, &cpu_topo->thread_sibling); in update_siblings_masks()
129 struct cputopo_parisc *cpu_topo = &(cpu_topology[cpu]); in init_cpu_topology() local
131 cpu_topo->thread_id = -1; in init_cpu_topology()
132 cpu_topo->core_id = -1; in init_cpu_topology()
133 cpu_topo->socket_id = -1; in init_cpu_topology()
[all …]
/Linux-v5.4/drivers/base/
Darch_topology.c453 struct cpu_topology *cpu_topo, *cpuid_topo = &cpu_topology[cpuid]; in update_siblings_masks() local
458 cpu_topo = &cpu_topology[cpu]; in update_siblings_masks()
460 if (cpuid_topo->llc_id == cpu_topo->llc_id) { in update_siblings_masks()
462 cpumask_set_cpu(cpuid, &cpu_topo->llc_sibling); in update_siblings_masks()
465 if (cpuid_topo->package_id != cpu_topo->package_id) in update_siblings_masks()
468 cpumask_set_cpu(cpuid, &cpu_topo->core_sibling); in update_siblings_masks()
471 if (cpuid_topo->core_id != cpu_topo->core_id) in update_siblings_masks()
474 cpumask_set_cpu(cpuid, &cpu_topo->thread_sibling); in update_siblings_masks()
481 struct cpu_topology *cpu_topo = &cpu_topology[cpu]; in clear_cpu_topology() local
483 cpumask_clear(&cpu_topo->llc_sibling); in clear_cpu_topology()
[all …]