Commit 661ba372 authored by David S. Miller's avatar David S. Miller

[SPARC64]: Move data.cacheline_aligned right before edata.

parent 43f94bc4
...@@ -24,6 +24,8 @@ SECTIONS ...@@ -24,6 +24,8 @@ SECTIONS
CONSTRUCTORS CONSTRUCTORS
} }
.data1 : { *(.data1) } .data1 : { *(.data1) }
. = ALIGN(64);
.data.cacheline_aligned : { *(.data.cacheline_aligned) }
_edata = .; _edata = .;
PROVIDE (edata = .); PROVIDE (edata = .);
.fixup : { *(.fixup) } .fixup : { *(.fixup) }
...@@ -70,8 +72,6 @@ SECTIONS ...@@ -70,8 +72,6 @@ SECTIONS
__per_cpu_end = .; __per_cpu_end = .;
. = ALIGN(8192); . = ALIGN(8192);
__init_end = .; __init_end = .;
. = ALIGN(64);
.data.cacheline_aligned : { *(.data.cacheline_aligned) }
__bss_start = .; __bss_start = .;
.sbss : { *(.sbss) *(.scommon) } .sbss : { *(.sbss) *(.scommon) }
.bss : .bss :
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment