Home
last modified time | relevance | path

Searched refs:cpu (Results 1 – 25 of 3151) sorted by relevance

12345678910>>...127

/Linux-v5.4/tools/testing/selftests/cpu-hotplug/
Dcpu-on-off-test.sh26 if ! ls $SYSFS/devices/system/cpu/cpu* > /dev/null 2>&1; then
27 echo $msg cpu hotplug is not supported >&2
32 online_cpus=`cat $SYSFS/devices/system/cpu/online`
40 present_cpus=`cat $SYSFS/devices/system/cpu/present`
46 offline_cpus=`cat $SYSFS/devices/system/cpu/offline`
62 for cpu in $SYSFS/devices/system/cpu/cpu*; do
63 if [ -f $cpu/online ] && grep -q $state $cpu/online; then
64 echo ${cpu##/*/cpu}
81 grep -q 1 $SYSFS/devices/system/cpu/cpu$1/online
86 grep -q 0 $SYSFS/devices/system/cpu/cpu$1/online
[all …]
/Linux-v5.4/arch/arm/boot/dts/
Daxm5516-cpus.dtsi13 cpu-map {
16 cpu = <&CPU0>;
19 cpu = <&CPU1>;
22 cpu = <&CPU2>;
25 cpu = <&CPU3>;
30 cpu = <&CPU4>;
33 cpu = <&CPU5>;
36 cpu = <&CPU6>;
39 cpu = <&CPU7>;
44 cpu = <&CPU8>;
[all …]
/Linux-v5.4/arch/powerpc/kernel/
Dsmp.c246 void smp_muxed_ipi_set_message(int cpu, int msg) in smp_muxed_ipi_set_message() argument
248 struct cpu_messages *info = &per_cpu(ipi_message, cpu); in smp_muxed_ipi_set_message()
258 void smp_muxed_ipi_message_pass(int cpu, int msg) in smp_muxed_ipi_message_pass() argument
260 smp_muxed_ipi_set_message(cpu, msg); in smp_muxed_ipi_message_pass()
266 smp_ops->cause_ipi(cpu); in smp_muxed_ipi_message_pass()
320 static inline void do_message_pass(int cpu, int msg) in do_message_pass() argument
323 smp_ops->message_pass(cpu, msg); in do_message_pass()
326 smp_muxed_ipi_message_pass(cpu, msg); in do_message_pass()
330 void smp_send_reschedule(int cpu) in smp_send_reschedule() argument
333 do_message_pass(cpu, PPC_MSG_RESCHEDULE); in smp_send_reschedule()
[all …]
Dtau_6xx.c56 static void set_thresholds(unsigned long cpu) in set_thresholds() argument
63 mtspr(SPRN_THRM1, THRM1_THRES(tau[cpu].low) | THRM1_V | THRM1_TIE | THRM1_TID); in set_thresholds()
68 mtspr (SPRN_THRM2, THRM1_THRES(tau[cpu].high) | THRM1_V | THRM1_TIE); in set_thresholds()
71 mtspr(SPRN_THRM1, THRM1_THRES(tau[cpu].low) | THRM1_V | THRM1_TID); in set_thresholds()
72 mtspr(SPRN_THRM2, THRM1_THRES(tau[cpu].high) | THRM1_V); in set_thresholds()
76 static void TAUupdate(int cpu) in TAUupdate() argument
88 if (tau[cpu].low >= step_size){ in TAUupdate()
89 tau[cpu].low -= step_size; in TAUupdate()
90 tau[cpu].high -= (step_size - window_expand); in TAUupdate()
92 tau[cpu].grew = 1; in TAUupdate()
[all …]
Dwatchdog.c114 int cpu = raw_smp_processor_id(); in wd_lockup_ipi() local
117 pr_emerg("CPU %d Hard LOCKUP\n", cpu); in wd_lockup_ipi()
119 cpu, tb, per_cpu(wd_timer_tb, cpu), in wd_lockup_ipi()
120 tb_to_ns(tb - per_cpu(wd_timer_tb, cpu)) / 1000000); in wd_lockup_ipi()
142 static void set_cpu_stuck(int cpu, u64 tb) in set_cpu_stuck() argument
144 set_cpumask_stuck(cpumask_of(cpu), tb); in set_cpu_stuck()
147 static void watchdog_smp_panic(int cpu, u64 tb) in watchdog_smp_panic() argument
156 if (cpumask_test_cpu(cpu, &wd_smp_cpus_pending)) in watchdog_smp_panic()
162 cpu, cpumask_pr_args(&wd_smp_cpus_pending)); in watchdog_smp_panic()
164 cpu, tb, wd_smp_last_reset_tb, in watchdog_smp_panic()
[all …]
/Linux-v5.4/drivers/cpufreq/
Dintel_pstate.c234 int cpu; member
342 static void intel_pstate_set_itmt_prio(int cpu) in intel_pstate_set_itmt_prio() argument
348 ret = cppc_get_perf_caps(cpu, &cppc_perf); in intel_pstate_set_itmt_prio()
357 sched_set_itmt_core_prio(cppc_perf.highest_perf, cpu); in intel_pstate_set_itmt_prio()
378 static int intel_pstate_get_cppc_guranteed(int cpu) in intel_pstate_get_cppc_guranteed() argument
383 ret = cppc_get_perf_caps(cpu, &cppc_perf); in intel_pstate_get_cppc_guranteed()
394 static void intel_pstate_set_itmt_prio(int cpu) in intel_pstate_set_itmt_prio() argument
401 struct cpudata *cpu; in intel_pstate_init_acpi_perf_limits() local
406 intel_pstate_set_itmt_prio(policy->cpu); in intel_pstate_init_acpi_perf_limits()
413 cpu = all_cpu_data[policy->cpu]; in intel_pstate_init_acpi_perf_limits()
[all …]
Dcppc_cpufreq.c61 static unsigned int cppc_cpufreq_perf_to_khz(struct cppc_cpudata *cpu,
140 static unsigned int cppc_cpufreq_perf_to_khz(struct cppc_cpudata *cpu, in cppc_cpufreq_perf_to_khz() argument
144 struct cppc_perf_caps *caps = &cpu->perf_caps; in cppc_cpufreq_perf_to_khz()
159 div = cpu->perf_caps.highest_perf; in cppc_cpufreq_perf_to_khz()
164 static unsigned int cppc_cpufreq_khz_to_perf(struct cppc_cpudata *cpu, in cppc_cpufreq_khz_to_perf() argument
168 struct cppc_perf_caps *caps = &cpu->perf_caps; in cppc_cpufreq_khz_to_perf()
182 mul = cpu->perf_caps.highest_perf; in cppc_cpufreq_khz_to_perf()
193 struct cppc_cpudata *cpu; in cppc_cpufreq_set_target() local
198 cpu = all_cpu_data[policy->cpu]; in cppc_cpufreq_set_target()
200 desired_perf = cppc_cpufreq_khz_to_perf(cpu, target_freq); in cppc_cpufreq_set_target()
[all …]
/Linux-v5.4/arch/arc/kernel/
Dsetup.c65 static void read_decode_ccm_bcr(struct cpuinfo_arc *cpu) in read_decode_ccm_bcr() argument
73 cpu->iccm.sz = 4096 << iccm.sz; /* 8K to 512K */ in read_decode_ccm_bcr()
74 cpu->iccm.base_addr = iccm.base << 16; in read_decode_ccm_bcr()
80 cpu->dccm.sz = 2048 << dccm.sz; /* 2K to 256K */ in read_decode_ccm_bcr()
83 cpu->dccm.base_addr = base & ~0xF; in read_decode_ccm_bcr()
92 cpu->iccm.sz = 256 << iccm.sz00; /* 512B to 16M */ in read_decode_ccm_bcr()
94 cpu->iccm.sz <<= iccm.sz01; in read_decode_ccm_bcr()
97 cpu->iccm.base_addr = region & 0xF0000000; in read_decode_ccm_bcr()
102 cpu->dccm.sz = 256 << dccm.sz0; in read_decode_ccm_bcr()
104 cpu->dccm.sz <<= dccm.sz1; in read_decode_ccm_bcr()
[all …]
/Linux-v5.4/include/linux/
Dcpumask.h117 #define cpu_online(cpu) cpumask_test_cpu((cpu), cpu_online_mask) argument
118 #define cpu_possible(cpu) cpumask_test_cpu((cpu), cpu_possible_mask) argument
119 #define cpu_present(cpu) cpumask_test_cpu((cpu), cpu_present_mask) argument
120 #define cpu_active(cpu) cpumask_test_cpu((cpu), cpu_active_mask) argument
126 #define cpu_online(cpu) ((cpu) == 0) argument
127 #define cpu_possible(cpu) ((cpu) == 0) argument
128 #define cpu_present(cpu) ((cpu) == 0) argument
129 #define cpu_active(cpu) ((cpu) == 0) argument
134 static inline void cpu_max_bits_warn(unsigned int cpu, unsigned int bits) in cpu_max_bits_warn() argument
137 WARN_ON_ONCE(cpu >= bits); in cpu_max_bits_warn()
[all …]
/Linux-v5.4/arch/microblaze/kernel/cpu/
Dcpuinfo-static.c23 void __init set_cpuinfo_static(struct cpuinfo *ci, struct device_node *cpu) in set_cpuinfo_static() argument
28 (fcpu(cpu, "xlnx,use-barrel") ? PVR0_USE_BARREL_MASK : 0) | in set_cpuinfo_static()
29 (fcpu(cpu, "xlnx,use-msr-instr") ? PVR2_USE_MSR_INSTR : 0) | in set_cpuinfo_static()
30 (fcpu(cpu, "xlnx,use-pcmp-instr") ? PVR2_USE_PCMP_INSTR : 0) | in set_cpuinfo_static()
31 (fcpu(cpu, "xlnx,use-div") ? PVR0_USE_DIV_MASK : 0); in set_cpuinfo_static()
43 ci->use_mult = fcpu(cpu, "xlnx,use-hw-mul"); in set_cpuinfo_static()
51 ci->use_fpu = fcpu(cpu, "xlnx,use-fpu"); in set_cpuinfo_static()
59 (fcpu(cpu, "xlnx,unaligned-exceptions") ? in set_cpuinfo_static()
61 (fcpu(cpu, "xlnx,ill-opcode-exception") ? in set_cpuinfo_static()
63 (fcpu(cpu, "xlnx,iopb-bus-exception") ? in set_cpuinfo_static()
[all …]
/Linux-v5.4/arch/arm/mach-tegra/
Dplatsmp.c36 static void tegra_secondary_init(unsigned int cpu) in tegra_secondary_init() argument
38 cpumask_set_cpu(cpu, &tegra_cpu_init_mask); in tegra_secondary_init()
42 static int tegra20_boot_secondary(unsigned int cpu, struct task_struct *idle) in tegra20_boot_secondary() argument
44 cpu = cpu_logical_map(cpu); in tegra20_boot_secondary()
54 tegra_put_cpu_in_reset(cpu); in tegra20_boot_secondary()
62 flowctrl_write_cpu_halt(cpu, 0); in tegra20_boot_secondary()
64 tegra_enable_cpu_clock(cpu); in tegra20_boot_secondary()
65 flowctrl_write_cpu_csr(cpu, 0); /* Clear flow controller CSR. */ in tegra20_boot_secondary()
66 tegra_cpu_out_of_reset(cpu); in tegra20_boot_secondary()
70 static int tegra30_boot_secondary(unsigned int cpu, struct task_struct *idle) in tegra30_boot_secondary() argument
[all …]
/Linux-v5.4/arch/x86/xen/
Dsmp.c33 void xen_smp_intr_free(unsigned int cpu) in xen_smp_intr_free() argument
35 if (per_cpu(xen_resched_irq, cpu).irq >= 0) { in xen_smp_intr_free()
36 unbind_from_irqhandler(per_cpu(xen_resched_irq, cpu).irq, NULL); in xen_smp_intr_free()
37 per_cpu(xen_resched_irq, cpu).irq = -1; in xen_smp_intr_free()
38 kfree(per_cpu(xen_resched_irq, cpu).name); in xen_smp_intr_free()
39 per_cpu(xen_resched_irq, cpu).name = NULL; in xen_smp_intr_free()
41 if (per_cpu(xen_callfunc_irq, cpu).irq >= 0) { in xen_smp_intr_free()
42 unbind_from_irqhandler(per_cpu(xen_callfunc_irq, cpu).irq, NULL); in xen_smp_intr_free()
43 per_cpu(xen_callfunc_irq, cpu).irq = -1; in xen_smp_intr_free()
44 kfree(per_cpu(xen_callfunc_irq, cpu).name); in xen_smp_intr_free()
[all …]
Dsmp_pv.c59 int cpu; in cpu_bringup() local
71 cpu = smp_processor_id(); in cpu_bringup()
72 smp_store_cpu_info(cpu); in cpu_bringup()
73 cpu_data(cpu).x86_max_cores = 1; in cpu_bringup()
74 set_cpu_sibling_map(cpu); in cpu_bringup()
80 notify_cpu_starting(cpu); in cpu_bringup()
82 set_cpu_online(cpu, true); in cpu_bringup()
84 cpu_set_state_online(cpu); /* Implies full memory barrier. */ in cpu_bringup()
97 void xen_smp_intr_free_pv(unsigned int cpu) in xen_smp_intr_free_pv() argument
99 if (per_cpu(xen_irq_work, cpu).irq >= 0) { in xen_smp_intr_free_pv()
[all …]
/Linux-v5.4/kernel/
Dsmpboot.c30 struct task_struct *idle_thread_get(unsigned int cpu) in idle_thread_get() argument
32 struct task_struct *tsk = per_cpu(idle_threads, cpu); in idle_thread_get()
36 init_idle(tsk, cpu); in idle_thread_get()
51 static inline void idle_init(unsigned int cpu) in idle_init() argument
53 struct task_struct *tsk = per_cpu(idle_threads, cpu); in idle_init()
56 tsk = fork_idle(cpu); in idle_init()
58 pr_err("SMP: fork_idle() failed for CPU %u\n", cpu); in idle_init()
60 per_cpu(idle_threads, cpu) = tsk; in idle_init()
69 unsigned int cpu, boot_cpu; in idle_threads_init() local
73 for_each_possible_cpu(cpu) { in idle_threads_init()
[all …]
/Linux-v5.4/arch/arm/mach-meson/
Dplatsmp.c38 static struct reset_control *meson_smp_get_core_reset(int cpu) in meson_smp_get_core_reset() argument
40 struct device_node *np = of_get_cpu_node(cpu, 0); in meson_smp_get_core_reset()
45 static void meson_smp_set_cpu_ctrl(int cpu, bool on_off) in meson_smp_set_cpu_ctrl() argument
50 val |= BIT(cpu); in meson_smp_set_cpu_ctrl()
52 val &= ~BIT(cpu); in meson_smp_set_cpu_ctrl()
114 static void meson_smp_begin_secondary_boot(unsigned int cpu) in meson_smp_begin_secondary_boot() argument
123 sram_base + MESON_SMP_SRAM_CPU_CTRL_ADDR_REG(cpu)); in meson_smp_begin_secondary_boot()
129 scu_cpu_power_enable(scu_base, cpu); in meson_smp_begin_secondary_boot()
132 static int meson_smp_finalize_secondary_boot(unsigned int cpu) in meson_smp_finalize_secondary_boot() argument
137 while (readl(sram_base + MESON_SMP_SRAM_CPU_CTRL_ADDR_REG(cpu))) { in meson_smp_finalize_secondary_boot()
[all …]
/Linux-v5.4/arch/arm64/kernel/
Dsmp.c79 static int op_cpu_kill(unsigned int cpu);
81 static inline int op_cpu_kill(unsigned int cpu) in op_cpu_kill() argument
92 static int boot_secondary(unsigned int cpu, struct task_struct *idle) in boot_secondary() argument
94 if (cpu_ops[cpu]->cpu_boot) in boot_secondary()
95 return cpu_ops[cpu]->cpu_boot(cpu); in boot_secondary()
102 int __cpu_up(unsigned int cpu, struct task_struct *idle) in __cpu_up() argument
119 ret = boot_secondary(cpu, idle); in __cpu_up()
128 if (!cpu_online(cpu)) { in __cpu_up()
129 pr_crit("CPU%u: failed to come online\n", cpu); in __cpu_up()
133 pr_err("CPU%u: failed to boot: %d\n", cpu, ret); in __cpu_up()
[all …]
/Linux-v5.4/arch/arm/mach-bcm/
Dplatsmp-brcmstb.c67 static int per_cpu_sw_state_rd(u32 cpu) in per_cpu_sw_state_rd() argument
69 sync_cache_r(SHIFT_PERCPU_PTR(&per_cpu_sw_state, per_cpu_offset(cpu))); in per_cpu_sw_state_rd()
70 return per_cpu(per_cpu_sw_state, cpu); in per_cpu_sw_state_rd()
73 static void per_cpu_sw_state_wr(u32 cpu, int val) in per_cpu_sw_state_wr() argument
76 per_cpu(per_cpu_sw_state, cpu) = val; in per_cpu_sw_state_wr()
77 sync_cache_w(SHIFT_PERCPU_PTR(&per_cpu_sw_state, per_cpu_offset(cpu))); in per_cpu_sw_state_wr()
80 static inline void per_cpu_sw_state_wr(u32 cpu, int val) { } in per_cpu_sw_state_wr() argument
83 static void __iomem *pwr_ctrl_get_base(u32 cpu) in pwr_ctrl_get_base() argument
86 base += (cpu_logical_map(cpu) * 4); in pwr_ctrl_get_base()
90 static u32 pwr_ctrl_rd(u32 cpu) in pwr_ctrl_rd() argument
[all …]
/Linux-v5.4/drivers/base/
Darch_topology.c40 void topology_set_cpu_scale(unsigned int cpu, unsigned long capacity) in topology_set_cpu_scale() argument
42 per_cpu(cpu_scale, cpu) = capacity; in topology_set_cpu_scale()
49 struct cpu *cpu = container_of(dev, struct cpu, dev); in cpu_capacity_show() local
51 return sprintf(buf, "%lu\n", topology_get_cpu_scale(cpu->dev.id)); in cpu_capacity_show()
62 struct device *cpu; in register_cpu_capacity_sysctl() local
65 cpu = get_cpu_device(i); in register_cpu_capacity_sysctl()
66 if (!cpu) { in register_cpu_capacity_sysctl()
71 device_create_file(cpu, &dev_attr_cpu_capacity); in register_cpu_capacity_sysctl()
111 int cpu; in topology_normalize_cpu_scale() local
117 for_each_possible_cpu(cpu) { in topology_normalize_cpu_scale()
[all …]
/Linux-v5.4/tools/power/x86/intel-speed-select/
Disst-core.c9 int isst_get_ctdp_levels(int cpu, struct isst_pkg_ctdp *pkg_dev) in isst_get_ctdp_levels() argument
14 ret = isst_send_mbox_command(cpu, CONFIG_TDP, in isst_get_ctdp_levels()
19 debug_printf("cpu:%d CONFIG_TDP_GET_LEVELS_INFO resp:%x\n", cpu, resp); in isst_get_ctdp_levels()
30 int isst_get_ctdp_control(int cpu, int config_index, in isst_get_ctdp_control() argument
36 ret = isst_send_mbox_command(cpu, CONFIG_TDP, in isst_get_ctdp_control()
49 cpu, resp, ctdp_level->fact_support, ctdp_level->pbf_support, in isst_get_ctdp_control()
55 int isst_get_tdp_info(int cpu, int config_index, in isst_get_tdp_info() argument
61 ret = isst_send_mbox_command(cpu, CONFIG_TDP, CONFIG_TDP_GET_TDP_INFO, in isst_get_tdp_info()
71 cpu, config_index, resp, ctdp_level->tdp_ratio, in isst_get_tdp_info()
76 int isst_get_pwr_info(int cpu, int config_index, in isst_get_pwr_info() argument
[all …]
/Linux-v5.4/arch/powerpc/include/asm/
Dsmp.h33 extern int cpu_to_chip_id(int cpu);
38 void (*message_pass)(int cpu, int msg);
40 void (*cause_ipi)(int cpu);
42 int (*cause_nmi_ipi)(int cpu);
55 extern int smp_send_nmi_ipi(int cpu, void (*fn)(struct pt_regs *), u64 delay_us);
56 extern int smp_send_safe_nmi_ipi(int cpu, void (*fn)(struct pt_regs *), u64 delay_us);
66 void generic_cpu_die(unsigned int cpu);
67 void generic_set_cpu_dead(unsigned int cpu);
68 void generic_set_cpu_up(unsigned int cpu);
69 int generic_check_cpu_restart(unsigned int cpu);
[all …]
/Linux-v5.4/drivers/xen/
Dcpu_hotplug.c12 static void enable_hotplug_cpu(int cpu) in enable_hotplug_cpu() argument
14 if (!cpu_present(cpu)) in enable_hotplug_cpu()
15 xen_arch_register_cpu(cpu); in enable_hotplug_cpu()
17 set_cpu_present(cpu, true); in enable_hotplug_cpu()
20 static void disable_hotplug_cpu(int cpu) in disable_hotplug_cpu() argument
22 if (!cpu_is_hotpluggable(cpu)) in disable_hotplug_cpu()
25 if (cpu_online(cpu)) in disable_hotplug_cpu()
26 device_offline(get_cpu_device(cpu)); in disable_hotplug_cpu()
27 if (!cpu_online(cpu) && cpu_present(cpu)) { in disable_hotplug_cpu()
28 xen_arch_unregister_cpu(cpu); in disable_hotplug_cpu()
[all …]
/Linux-v5.4/arch/x86/include/asm/
Dtopology.h48 extern int __cpu_to_node(int cpu);
51 extern int early_cpu_to_node(int cpu);
56 static inline int early_cpu_to_node(int cpu) in early_cpu_to_node() argument
58 return early_per_cpu(x86_cpu_to_node_map, cpu); in early_cpu_to_node()
94 static inline int early_cpu_to_node(int cpu) in early_cpu_to_node() argument
105 extern const struct cpumask *cpu_coregroup_mask(int cpu);
107 #define topology_logical_package_id(cpu) (cpu_data(cpu).logical_proc_id) argument
108 #define topology_physical_package_id(cpu) (cpu_data(cpu).phys_proc_id) argument
109 #define topology_logical_die_id(cpu) (cpu_data(cpu).logical_die_id) argument
110 #define topology_die_id(cpu) (cpu_data(cpu).cpu_die_id) argument
[all …]
/Linux-v5.4/arch/arm/kernel/
Dsmp.c102 static int secondary_biglittle_prepare(unsigned int cpu) in secondary_biglittle_prepare() argument
104 if (!cpu_vtable[cpu]) in secondary_biglittle_prepare()
105 cpu_vtable[cpu] = kzalloc(sizeof(*cpu_vtable[cpu]), GFP_KERNEL); in secondary_biglittle_prepare()
107 return cpu_vtable[cpu] ? 0 : -ENOMEM; in secondary_biglittle_prepare()
115 static int secondary_biglittle_prepare(unsigned int cpu) in secondary_biglittle_prepare() argument
125 int __cpu_up(unsigned int cpu, struct task_struct *idle) in __cpu_up() argument
132 ret = secondary_biglittle_prepare(cpu); in __cpu_up()
154 ret = smp_ops.smp_boot_secondary(cpu, idle); in __cpu_up()
163 if (!cpu_online(cpu)) { in __cpu_up()
164 pr_crit("CPU%u: failed to come online\n", cpu); in __cpu_up()
[all …]
/Linux-v5.4/arch/ia64/kernel/
Derr_inject.c61 u32 cpu=dev->id; \
62 return sprintf(buf, "%lx\n", name[cpu]); \
70 unsigned int cpu=dev->id; \
71 name[cpu] = simple_strtoull(buf, NULL, 16); \
84 unsigned int cpu=dev->id; in show() local
88 printk(KERN_DEBUG "pal_mc_err_inject for cpu%d:\n", cpu); in show()
89 printk(KERN_DEBUG "err_type_info=%lx,\n", err_type_info[cpu]); in show()
90 printk(KERN_DEBUG "err_struct_info=%lx,\n", err_struct_info[cpu]); in show()
92 err_data_buffer[cpu].data1, in show()
93 err_data_buffer[cpu].data2, in show()
[all …]
/Linux-v5.4/arch/s390/include/asm/
Dtopology.h9 struct cpu;
30 #define topology_physical_package_id(cpu) (cpu_topology[cpu].socket_id) argument
31 #define topology_thread_id(cpu) (cpu_topology[cpu].thread_id) argument
32 #define topology_sibling_cpumask(cpu) (&cpu_topology[cpu].thread_mask) argument
33 #define topology_core_id(cpu) (cpu_topology[cpu].core_id) argument
34 #define topology_core_cpumask(cpu) (&cpu_topology[cpu].core_mask) argument
35 #define topology_book_id(cpu) (cpu_topology[cpu].book_id) argument
36 #define topology_book_cpumask(cpu) (&cpu_topology[cpu].book_mask) argument
37 #define topology_drawer_id(cpu) (cpu_topology[cpu].drawer_id) argument
38 #define topology_drawer_cpumask(cpu) (&cpu_topology[cpu].drawer_mask) argument
[all …]

12345678910>>...127