diff options
author | Greg Ungerer <gerg@uclinux.org> | 2009-04-17 08:55:06 -0400 |
---|---|---|
committer | Greg Ungerer <gerg@uclinux.org> | 2009-04-22 00:45:07 -0400 |
commit | a14f5e4feb3efd907df7f1b176c2367910a8e796 (patch) | |
tree | edb708e64ff7a3bba50ce22e93d44ce9052d2b3b /arch/m68knommu | |
parent | 592578a1dd1be0c940e36f769acdd3cc6651a7a1 (diff) |
m68knommu: fix missing .data.cacheline_aligned section
Add a .data.cacheline_aligned section to the data segment.
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Diffstat (limited to 'arch/m68knommu')
-rw-r--r-- | arch/m68knommu/kernel/vmlinux.lds.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/m68knommu/kernel/vmlinux.lds.S b/arch/m68knommu/kernel/vmlinux.lds.S index 69ba9b10767a..b7fe505e358d 100644 --- a/arch/m68knommu/kernel/vmlinux.lds.S +++ b/arch/m68knommu/kernel/vmlinux.lds.S | |||
@@ -147,6 +147,8 @@ SECTIONS { | |||
147 | . = ALIGN(4); | 147 | . = ALIGN(4); |
148 | _sdata = . ; | 148 | _sdata = . ; |
149 | DATA_DATA | 149 | DATA_DATA |
150 | . = ALIGN(32); | ||
151 | *(.data.cacheline_aligned) | ||
150 | . = ALIGN(8192) ; | 152 | . = ALIGN(8192) ; |
151 | *(.data.init_task) | 153 | *(.data.init_task) |
152 | _edata = . ; | 154 | _edata = . ; |