diff options
author | Tejun Heo <tj@kernel.org> | 2009-01-17 15:26:32 +0900 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2009-01-17 15:26:32 +0900 |
commit | 74e7904559a10cbb9fbf9139c5c42fc87c0f62a4 (patch) | |
tree | b5b3641a0e5d0a8d827dfb9fd58cd11fd8a42121 /arch/arm/kernel | |
parent | 145cd30bac885dffad9db9d487baad07b68a3d04 (diff) | |
download | linux-74e7904559a10cbb9fbf9139c5c42fc87c0f62a4.tar.bz2 |
linker script: add missing .data.percpu.page_aligned
arm, arm/mach-integrator and powerpc were missing
.data.percpu.page_aligned in their percpu output section definitions.
Add it.
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'arch/arm/kernel')
-rw-r--r-- | arch/arm/kernel/vmlinux.lds.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/kernel/vmlinux.lds.S b/arch/arm/kernel/vmlinux.lds.S index 00216071eaf7..85598f7da407 100644 --- a/arch/arm/kernel/vmlinux.lds.S +++ b/arch/arm/kernel/vmlinux.lds.S @@ -65,6 +65,7 @@ SECTIONS #endif . = ALIGN(4096); __per_cpu_start = .; + *(.data.percpu.page_aligned) *(.data.percpu) *(.data.percpu.shared_aligned) __per_cpu_end = .; |