diff options
author | Tim Abbott <tabbott@ksplice.com> | 2010-02-19 19:03:35 -0500 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2010-03-03 05:25:58 -0500 |
commit | 2af7687f1ad2c4571b9835f9bb2e3db9a738d258 (patch) | |
tree | 67d007ff71f9effcc9eb30030a8885f1bc0d3362 /include | |
parent | 4af57b787b4be09419a2bb48aa705fa87ef41cca (diff) |
Rename .data.init_task to .data..init_task.
Signed-off-by: Tim Abbott <tabbott@ksplice.com>
Cc: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-generic/vmlinux.lds.h | 4 | ||||
-rw-r--r-- | include/linux/init_task.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h index 78450aaab9ef..9cb9a9021e6e 100644 --- a/include/asm-generic/vmlinux.lds.h +++ b/include/asm-generic/vmlinux.lds.h | |||
@@ -193,7 +193,7 @@ | |||
193 | 193 | ||
194 | #define INIT_TASK_DATA(align) \ | 194 | #define INIT_TASK_DATA(align) \ |
195 | . = ALIGN(align); \ | 195 | . = ALIGN(align); \ |
196 | *(.data.init_task) | 196 | *(.data..init_task) |
197 | 197 | ||
198 | /* | 198 | /* |
199 | * Read only Data | 199 | * Read only Data |
@@ -435,7 +435,7 @@ | |||
435 | */ | 435 | */ |
436 | #define INIT_TASK_DATA_SECTION(align) \ | 436 | #define INIT_TASK_DATA_SECTION(align) \ |
437 | . = ALIGN(align); \ | 437 | . = ALIGN(align); \ |
438 | .data.init_task : { \ | 438 | .data..init_task : { \ |
439 | INIT_TASK_DATA(align) \ | 439 | INIT_TASK_DATA(align) \ |
440 | } | 440 | } |
441 | 441 | ||
diff --git a/include/linux/init_task.h b/include/linux/init_task.h index abec69b63d7e..f00253b3fc47 100644 --- a/include/linux/init_task.h +++ b/include/linux/init_task.h | |||
@@ -191,7 +191,7 @@ extern struct cred init_cred; | |||
191 | } | 191 | } |
192 | 192 | ||
193 | /* Attach to the init_task data structure for proper alignment */ | 193 | /* Attach to the init_task data structure for proper alignment */ |
194 | #define __init_task_data __attribute__((__section__(".data.init_task"))) | 194 | #define __init_task_data __attribute__((__section__(".data..init_task"))) |
195 | 195 | ||
196 | 196 | ||
197 | #endif | 197 | #endif |