diff options
Diffstat (limited to 'arch/sh64/kernel/vmlinux.lds.S')
-rw-r--r-- | arch/sh64/kernel/vmlinux.lds.S | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/sh64/kernel/vmlinux.lds.S b/arch/sh64/kernel/vmlinux.lds.S index 02aea86c5907..8ac9c7c5f848 100644 --- a/arch/sh64/kernel/vmlinux.lds.S +++ b/arch/sh64/kernel/vmlinux.lds.S | |||
@@ -87,7 +87,10 @@ SECTIONS | |||
87 | 87 | ||
88 | . = ALIGN(PAGE_SIZE); | 88 | . = ALIGN(PAGE_SIZE); |
89 | __per_cpu_start = .; | 89 | __per_cpu_start = .; |
90 | .data.percpu : C_PHYS(.data.percpu) { *(.data.percpu) } | 90 | .data.percpu : C_PHYS(.data.percpu) { |
91 | *(.data.percpu) | ||
92 | *(.data.percpu.shared_aligned) | ||
93 | } | ||
91 | __per_cpu_end = . ; | 94 | __per_cpu_end = . ; |
92 | .data.cacheline_aligned : C_PHYS(.data.cacheline_aligned) { *(.data.cacheline_aligned) } | 95 | .data.cacheline_aligned : C_PHYS(.data.cacheline_aligned) { *(.data.cacheline_aligned) } |
93 | 96 | ||