Browse Source

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>
Greg Ungerer 16 years ago
parent
commit
a14f5e4feb
1 changed files with 2 additions and 0 deletions
  1. 2 0
      arch/m68knommu/kernel/vmlinux.lds.S

+ 2 - 0
arch/m68knommu/kernel/vmlinux.lds.S

@@ -147,6 +147,8 @@ SECTIONS {
 		. = ALIGN(4);
 		_sdata = . ;
 		DATA_DATA
+		. = ALIGN(32);
+		*(.data.cacheline_aligned)
 		. = ALIGN(8192) ;
 		*(.data.init_task)
 		_edata = . ;