Commit d331f2e0 authored by David S. Miller's avatar David S. Miller

Add per_cpu linker script bits for Sparc.

parent b8dc64ff
...@@ -55,6 +55,10 @@ SECTIONS ...@@ -55,6 +55,10 @@ SECTIONS
*(.initcall7.init) *(.initcall7.init)
} }
__initcall_end = .; __initcall_end = .;
. = ALIGN(32);
__per_cpu_start = .;
.data.percpu : { *(.data.percpu) }
__per_cpu_end = .;
. = ALIGN(4096); . = ALIGN(4096);
__init_end = .; __init_end = .;
. = ALIGN(32); . = ALIGN(32);
......
...@@ -56,6 +56,10 @@ SECTIONS ...@@ -56,6 +56,10 @@ SECTIONS
*(.initcall7.init) *(.initcall7.init)
} }
__initcall_end = .; __initcall_end = .;
. = ALIGN(32);
__per_cpu_start = .;
.data.percpu : { *(.data.percpu) }
__per_cpu_end = .;
. = ALIGN(8192); . = ALIGN(8192);
__init_end = .; __init_end = .;
. = ALIGN(64); . = ALIGN(64);
......
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