diff options
author | Vlad Zolotarov <vlad@scalemp.com> | 2012-06-11 05:56:52 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2012-06-14 06:42:11 -0400 |
commit | 0816b0f0365539c8f6280634d2c1778d0108d8f5 (patch) | |
tree | 92ee18c8ca0475e636558a36572f28d62bcc627d /arch/x86/kernel/smpboot.c | |
parent | c35f77417ebfc7c21c02aa9c8c30aa4cecf331d6 (diff) |
x86: Add read_mostly declaration/definition to variables from smp.h
Add "read-mostly" qualifier to the following variables in
smp.h:
- cpu_sibling_map
- cpu_core_map
- cpu_llc_shared_map
- cpu_llc_id
- cpu_number
- x86_cpu_to_apicid
- x86_bios_cpu_apicid
- x86_cpu_to_logical_apicid
As long as all the variables above are only written during the
initialization, this change is meant to prevent the false
sharing. More specifically, on vSMP Foundation platform
x86_cpu_to_apicid shared the same internode_cache_line with
frequently written lapic_events.
From the analysis of the first 33 per_cpu variables out of 219
(memories they describe, to be more specific) the 8 have read_mostly
nature (tlb_vector_offset, cpu_loops_per_jiffy, xen_debug_irq, etc.)
and 25 are frequently written (irq_stack_union, gdt_page,
exception_stacks, idt_desc, etc.).
Assuming that the spread of the rest of the per_cpu variables is
similar, identifying the read mostly memories will make more sense
in terms of long-term code maintenance comparing to identifying
frequently written memories.
Signed-off-by: Vlad Zolotarov <vlad@scalemp.com>
Acked-by: Shai Fultheim <shai@scalemp.com>
Cc: Shai Fultheim (Shai@ScaleMP.com) <Shai@scalemp.com>
Cc: ido@wizery.com
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1719258.EYKzE4Zbq5@vlad
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/kernel/smpboot.c')
-rw-r--r-- | arch/x86/kernel/smpboot.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c index 3fab55bea29b..e61110e29a8c 100644 --- a/arch/x86/kernel/smpboot.c +++ b/arch/x86/kernel/smpboot.c | |||
@@ -104,17 +104,17 @@ int smp_num_siblings = 1; | |||
104 | EXPORT_SYMBOL(smp_num_siblings); | 104 | EXPORT_SYMBOL(smp_num_siblings); |
105 | 105 | ||
106 | /* Last level cache ID of each logical CPU */ | 106 | /* Last level cache ID of each logical CPU */ |
107 | DEFINE_PER_CPU(u16, cpu_llc_id) = BAD_APICID; | 107 | DEFINE_PER_CPU_READ_MOSTLY(u16, cpu_llc_id) = BAD_APICID; |
108 | 108 | ||
109 | /* representing HT siblings of each logical CPU */ | 109 | /* representing HT siblings of each logical CPU */ |
110 | DEFINE_PER_CPU(cpumask_var_t, cpu_sibling_map); | 110 | DEFINE_PER_CPU_READ_MOSTLY(cpumask_var_t, cpu_sibling_map); |
111 | EXPORT_PER_CPU_SYMBOL(cpu_sibling_map); | 111 | EXPORT_PER_CPU_SYMBOL(cpu_sibling_map); |
112 | 112 | ||
113 | /* representing HT and core siblings of each logical CPU */ | 113 | /* representing HT and core siblings of each logical CPU */ |
114 | DEFINE_PER_CPU(cpumask_var_t, cpu_core_map); | 114 | DEFINE_PER_CPU_READ_MOSTLY(cpumask_var_t, cpu_core_map); |
115 | EXPORT_PER_CPU_SYMBOL(cpu_core_map); | 115 | EXPORT_PER_CPU_SYMBOL(cpu_core_map); |
116 | 116 | ||
117 | DEFINE_PER_CPU(cpumask_var_t, cpu_llc_shared_map); | 117 | DEFINE_PER_CPU_READ_MOSTLY(cpumask_var_t, cpu_llc_shared_map); |
118 | 118 | ||
119 | /* Per CPU bogomips and other parameters */ | 119 | /* Per CPU bogomips and other parameters */ |
120 | DEFINE_PER_CPU_SHARED_ALIGNED(struct cpuinfo_x86, cpu_info); | 120 | DEFINE_PER_CPU_SHARED_ALIGNED(struct cpuinfo_x86, cpu_info); |