diff options
author | Steven Miao <realmz6@gmail.com> | 2011-06-16 18:01:20 +0800 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-07-23 01:18:22 -0400 |
commit | 353470cc5092400bbb08921016005ce03aa37f33 (patch) | |
tree | 51a4e3d2c175fe9b3bbd47e5609b2c3ac741e354 /arch/blackfin | |
parent | 997f95e1908d1b1e750a3a0695d31dbefd0c6c19 (diff) | |
download | linux-353470cc5092400bbb08921016005ce03aa37f33.tar.gz linux-353470cc5092400bbb08921016005ce03aa37f33.tar.bz2 linux-353470cc5092400bbb08921016005ce03aa37f33.zip |
Blackfin: make sure percpu section is aligned in XIP builds
The alignment is normally handled by PERCPU(), but we need to do it
ourselves in the XIP build due to the custom layout.
Signed-off-by: Steven Miao <realmz6@gmail.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin')
-rw-r--r-- | arch/blackfin/kernel/vmlinux.lds.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/blackfin/kernel/vmlinux.lds.S b/arch/blackfin/kernel/vmlinux.lds.S index 3ac5b66d14aa..ba35864b2b74 100644 --- a/arch/blackfin/kernel/vmlinux.lds.S +++ b/arch/blackfin/kernel/vmlinux.lds.S @@ -155,6 +155,7 @@ SECTIONS SECURITY_INITCALL INIT_RAM_FS + . = ALIGN(PAGE_SIZE); ___per_cpu_load = .; PERCPU_INPUT(32) |