Commit f10fcd47 authored by Tejun Heo's avatar Tejun Heo Committed by Ingo Molnar

x86: make early_per_cpu() a lvalue and use it

Make early_per_cpu() a lvalue as per_cpu() is and use it where
applicable.
Signed-off-by: default avatarTejun Heo <tj@kernel.org>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 7de6883f
...@@ -195,9 +195,9 @@ do { \ ...@@ -195,9 +195,9 @@ do { \
#define early_per_cpu_ptr(_name) (_name##_early_ptr) #define early_per_cpu_ptr(_name) (_name##_early_ptr)
#define early_per_cpu_map(_name, _idx) (_name##_early_map[_idx]) #define early_per_cpu_map(_name, _idx) (_name##_early_map[_idx])
#define early_per_cpu(_name, _cpu) \ #define early_per_cpu(_name, _cpu) \
(early_per_cpu_ptr(_name) ? \ *(early_per_cpu_ptr(_name) ? \
early_per_cpu_ptr(_name)[_cpu] : \ &early_per_cpu_ptr(_name)[_cpu] : \
per_cpu(_name, _cpu)) &per_cpu(_name, _cpu))
#else /* !CONFIG_SMP */ #else /* !CONFIG_SMP */
#define DEFINE_EARLY_PER_CPU(_type, _name, _initvalue) \ #define DEFINE_EARLY_PER_CPU(_type, _name, _initvalue) \
......
...@@ -102,10 +102,7 @@ static inline int cpu_to_node(int cpu) ...@@ -102,10 +102,7 @@ static inline int cpu_to_node(int cpu)
/* Same function but used if called before per_cpu areas are setup */ /* Same function but used if called before per_cpu areas are setup */
static inline int early_cpu_to_node(int cpu) static inline int early_cpu_to_node(int cpu)
{ {
if (early_per_cpu_ptr(x86_cpu_to_node_map)) return early_per_cpu(x86_cpu_to_node_map, cpu);
return early_per_cpu_ptr(x86_cpu_to_node_map)[cpu];
return per_cpu(x86_cpu_to_node_map, cpu);
} }
/* Returns a pointer to the cpumask of CPUs on Node 'node'. */ /* Returns a pointer to the cpumask of CPUs on Node 'node'. */
......
...@@ -1877,17 +1877,8 @@ void __cpuinit generic_processor_info(int apicid, int version) ...@@ -1877,17 +1877,8 @@ void __cpuinit generic_processor_info(int apicid, int version)
#endif #endif
#if defined(CONFIG_X86_SMP) || defined(CONFIG_X86_64) #if defined(CONFIG_X86_SMP) || defined(CONFIG_X86_64)
/* are we being called early in kernel startup? */ early_per_cpu(x86_cpu_to_apicid, cpu) = apicid;
if (early_per_cpu_ptr(x86_cpu_to_apicid)) { early_per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
u16 *cpu_to_apicid = early_per_cpu_ptr(x86_cpu_to_apicid);
u16 *bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
cpu_to_apicid[cpu] = apicid;
bios_cpu_apicid[cpu] = apicid;
} else {
per_cpu(x86_cpu_to_apicid, cpu) = apicid;
per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
}
#endif #endif
set_cpu_possible(cpu, true); set_cpu_possible(cpu, true);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment