diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-02-19 19:03:43 -0500 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2010-03-03 05:26:00 -0500 |
commit | 3d9a854c2dac3e888393b23ba7adafcce4d6d4b9 (patch) | |
tree | 5159c52a0718d80f66ef8bed299bde2690e7b82e /include/linux/percpu-defs.h | |
parent | dafb9320671316fbd030b1d2e0ab9b96597223cb (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/linux/percpu-defs.h')
-rw-r--r-- | include/linux/percpu-defs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/percpu-defs.h b/include/linux/percpu-defs.h index 5a5d6ce4bd55..2351191f8c82 100644 --- a/include/linux/percpu-defs.h +++ b/include/linux/percpu-defs.h | |||
@@ -127,11 +127,11 @@ | |||
127 | * Declaration/definition used for per-CPU variables that must be page aligned. | 127 | * Declaration/definition used for per-CPU variables that must be page aligned. |
128 | */ | 128 | */ |
129 | #define DECLARE_PER_CPU_PAGE_ALIGNED(type, name) \ | 129 | #define DECLARE_PER_CPU_PAGE_ALIGNED(type, name) \ |
130 | DECLARE_PER_CPU_SECTION(type, name, ".page_aligned") \ | 130 | DECLARE_PER_CPU_SECTION(type, name, "..page_aligned") \ |
131 | __aligned(PAGE_SIZE) | 131 | __aligned(PAGE_SIZE) |
132 | 132 | ||
133 | #define DEFINE_PER_CPU_PAGE_ALIGNED(type, name) \ | 133 | #define DEFINE_PER_CPU_PAGE_ALIGNED(type, name) \ |
134 | DEFINE_PER_CPU_SECTION(type, name, ".page_aligned") \ | 134 | DEFINE_PER_CPU_SECTION(type, name, "..page_aligned") \ |
135 | __aligned(PAGE_SIZE) | 135 | __aligned(PAGE_SIZE) |
136 | 136 | ||
137 | /* | 137 | /* |