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
CONSTRUCTORS
}
.data1 : { *(.data1) }
. = ALIGN(64);
.data.cacheline_aligned : { *(.data.cacheline_aligned) }
_edata = .;
PROVIDE (edata = .);
.fixup : { *(.fixup) }
......@@ -70,8 +72,6 @@ SECTIONS
__per_cpu_end = .;
. = ALIGN(8192);
__init_end = .;
. = ALIGN(64);
.data.cacheline_aligned : { *(.data.cacheline_aligned) }
__bss_start = .;
.sbss : { *(.sbss) *(.scommon) }
.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