aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-generic/percpu.h
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-02-19 19:03:43 -0500
committerMichal Marek <mmarek@suse.cz>2010-03-03 05:26:00 -0500
commit3d9a854c2dac3e888393b23ba7adafcce4d6d4b9 (patch)
tree5159c52a0718d80f66ef8bed299bde2690e7b82e /include/asm-generic/percpu.h
parentdafb9320671316fbd030b1d2e0ab9b96597223cb (diff)
Rename .data[.percpu][.XXX] to .data[..percpu][..XXX].
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'include/asm-generic/percpu.h')
-rw-r--r--include/asm-generic/percpu.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/asm-generic/percpu.h b/include/asm-generic/percpu.h
index 8087b90d4673..1202a1550e91 100644
--- a/include/asm-generic/percpu.h
+++ b/include/asm-generic/percpu.h
@@ -76,7 +76,7 @@ extern void setup_per_cpu_areas(void);
76 76
77#ifndef PER_CPU_BASE_SECTION 77#ifndef PER_CPU_BASE_SECTION
78#ifdef CONFIG_SMP 78#ifdef CONFIG_SMP
79#define PER_CPU_BASE_SECTION ".data.percpu" 79#define PER_CPU_BASE_SECTION ".data..percpu"
80#else 80#else
81#define PER_CPU_BASE_SECTION ".data" 81#define PER_CPU_BASE_SECTION ".data"
82#endif 82#endif
@@ -88,15 +88,15 @@ extern void setup_per_cpu_areas(void);
88#define PER_CPU_SHARED_ALIGNED_SECTION "" 88#define PER_CPU_SHARED_ALIGNED_SECTION ""
89#define PER_CPU_ALIGNED_SECTION "" 89#define PER_CPU_ALIGNED_SECTION ""
90#else 90#else
91#define PER_CPU_SHARED_ALIGNED_SECTION ".shared_aligned" 91#define PER_CPU_SHARED_ALIGNED_SECTION "..shared_aligned"
92#define PER_CPU_ALIGNED_SECTION ".shared_aligned" 92#define PER_CPU_ALIGNED_SECTION "..shared_aligned"
93#endif 93#endif
94#define PER_CPU_FIRST_SECTION ".first" 94#define PER_CPU_FIRST_SECTION "..first"
95 95
96#else 96#else
97 97
98#define PER_CPU_SHARED_ALIGNED_SECTION "" 98#define PER_CPU_SHARED_ALIGNED_SECTION ""
99#define PER_CPU_ALIGNED_SECTION ".shared_aligned" 99#define PER_CPU_ALIGNED_SECTION "..shared_aligned"
100#define PER_CPU_FIRST_SECTION "" 100#define PER_CPU_FIRST_SECTION ""
101 101
102#endif 102#endif