blob: 3eb83217ff51695cb2459722e4229bcc81c1ea10 [file]
SECTIONS {
/*
* For use with ld -r, will put the .data..percpu* sections into .data
* with start/end symbols created for a second linking run with the normal
* linker script
*/
jiffies = jiffies_64;
.data : {
. = ALIGN(16);
__per_cpu_start_info = .;
*(.data..percpuinfo)
__per_cpu_end_info = .;
*(.data..percpuarrays)
__per_cpu_start = .;
*(.data..percpu)
__per_cpu_end = .;
}
}