diff options
author | Tony Breeds <tony@bakeyournoodle.com> | 2007-07-04 00:04:31 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-07-10 08:00:56 -0400 |
commit | bd67fcf9ba8474e8eef649a79aba5b3479b01272 (patch) | |
tree | 589b6fb18c6c41c60863bb92ec85506b09e4d441 /arch/powerpc/kernel/vmlinux.lds.S | |
parent | fc9069fe56d9594b7a6da0b9f9ca0eafd756260f (diff) |
[POWERPC] Add __read_mostly support for powerpc
Signed-off-by: Tony Breeds <tony@bakeyournoodle.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/vmlinux.lds.S')
-rw-r--r-- | arch/powerpc/kernel/vmlinux.lds.S | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/vmlinux.lds.S b/arch/powerpc/kernel/vmlinux.lds.S index 21c39ff2dc39..ae4acd84143d 100644 --- a/arch/powerpc/kernel/vmlinux.lds.S +++ b/arch/powerpc/kernel/vmlinux.lds.S | |||
@@ -7,6 +7,7 @@ | |||
7 | #define PROVIDE32(x) PROVIDE(x) | 7 | #define PROVIDE32(x) PROVIDE(x) |
8 | #endif | 8 | #endif |
9 | #include <asm-generic/vmlinux.lds.h> | 9 | #include <asm-generic/vmlinux.lds.h> |
10 | #include <asm/cache.h> | ||
10 | 11 | ||
11 | ENTRY(_stext) | 12 | ENTRY(_stext) |
12 | 13 | ||
@@ -211,6 +212,11 @@ SECTIONS | |||
211 | *(.data.cacheline_aligned) | 212 | *(.data.cacheline_aligned) |
212 | } | 213 | } |
213 | 214 | ||
215 | . = ALIGN(L1_CACHE_BYTES); | ||
216 | .data.read_mostly : { | ||
217 | *(.data.read_mostly) | ||
218 | } | ||
219 | |||
214 | . = ALIGN(PAGE_SIZE); | 220 | . = ALIGN(PAGE_SIZE); |
215 | __data_nosave : { | 221 | __data_nosave : { |
216 | __nosave_begin = .; | 222 | __nosave_begin = .; |