2 * Helper macros to support writing architecture specific
5 * A minimal linker scripts has following content:
6 * [This is a sample, architectures may have special requiriements]
16 * INIT_TEXT_SECTION(PAGE_SIZE)
17 * INIT_DATA_SECTION(...)
26 * RO_DATA_SECTION(PAGE_SIZE)
27 * RW_DATA_SECTION(...)
30 * EXCEPTION_TABLE(...)
33 * BSS_SECTION(0, 0, 0)
39 * DISCARDS // must be the last
42 * [__init_begin, __init_end] is the init section that may be freed after init
43 * [_stext, _etext] is the text section
44 * [_sdata, _edata] is the data section
46 * Some of the included output section have their own set of constants.
47 * Examples are: [__initramfs_start, __initramfs_end] for initramfs and
48 * [__nosave_begin, __nosave_end] for the nosave data
56 #define VMLINUX_SYMBOL(sym) sym
58 #define PASTE2(x,y) x##y
59 #define PASTE(x,y) PASTE2(x,y)
60 #define VMLINUX_SYMBOL(sym) PASTE(SYMBOL_PREFIX, sym)
63 /* Align . to a 8 byte boundary equals to maximum function alignment. */
64 #define ALIGN_FUNCTION() . = ALIGN(8)
67 * Align to a 32 byte boundary equal to the
68 * alignment gcc 4.5 uses for a struct
70 #define STRUCT_ALIGN() . = ALIGN(32)
72 /* The actual configuration determine if the init/exit sections
73 * are handled as text/data or they can be discarded (which
74 * often happens at runtime)
77 #define DEV_KEEP(sec) *(.dev##sec)
78 #define DEV_DISCARD(sec)
81 #define DEV_DISCARD(sec) *(.dev##sec)
84 #ifdef CONFIG_HOTPLUG_CPU
85 #define CPU_KEEP(sec) *(.cpu##sec)
86 #define CPU_DISCARD(sec)
89 #define CPU_DISCARD(sec) *(.cpu##sec)
92 #if defined(CONFIG_MEMORY_HOTPLUG)
93 #define MEM_KEEP(sec) *(.mem##sec)
94 #define MEM_DISCARD(sec)
97 #define MEM_DISCARD(sec) *(.mem##sec)
100 #ifdef CONFIG_FTRACE_MCOUNT_RECORD
101 #define MCOUNT_REC() . = ALIGN(8); \
102 VMLINUX_SYMBOL(__start_mcount_loc) = .; \
104 VMLINUX_SYMBOL(__stop_mcount_loc) = .;
109 #ifdef CONFIG_TRACE_BRANCH_PROFILING
110 #define LIKELY_PROFILE() VMLINUX_SYMBOL(__start_annotated_branch_profile) = .; \
111 *(_ftrace_annotated_branch) \
112 VMLINUX_SYMBOL(__stop_annotated_branch_profile) = .;
114 #define LIKELY_PROFILE()
117 #ifdef CONFIG_PROFILE_ALL_BRANCHES
118 #define BRANCH_PROFILE() VMLINUX_SYMBOL(__start_branch_profile) = .; \
120 VMLINUX_SYMBOL(__stop_branch_profile) = .;
122 #define BRANCH_PROFILE()
125 #ifdef CONFIG_EVENT_TRACING
126 #define FTRACE_EVENTS() VMLINUX_SYMBOL(__start_ftrace_events) = .; \
128 VMLINUX_SYMBOL(__stop_ftrace_events) = .;
130 #define FTRACE_EVENTS()
133 #ifdef CONFIG_TRACING
134 #define TRACE_PRINTKS() VMLINUX_SYMBOL(__start___trace_bprintk_fmt) = .; \
135 *(__trace_printk_fmt) /* Trace_printk fmt' pointer */ \
136 VMLINUX_SYMBOL(__stop___trace_bprintk_fmt) = .;
138 #define TRACE_PRINTKS()
141 #ifdef CONFIG_FTRACE_SYSCALLS
142 #define TRACE_SYSCALLS() VMLINUX_SYMBOL(__start_syscalls_metadata) = .; \
143 *(__syscalls_metadata) \
144 VMLINUX_SYMBOL(__stop_syscalls_metadata) = .;
146 #define TRACE_SYSCALLS()
153 *(.data..shared_aligned) /* percpu related */ \
154 DEV_KEEP(init.data) \
155 DEV_KEEP(exit.data) \
156 CPU_KEEP(init.data) \
157 CPU_KEEP(exit.data) \
158 MEM_KEEP(init.data) \
159 MEM_KEEP(exit.data) \
161 VMLINUX_SYMBOL(__start___tracepoints) = .; \
163 VMLINUX_SYMBOL(__stop___tracepoints) = .; \
164 /* implement dynamic printk debug */ \
166 VMLINUX_SYMBOL(__start___verbose) = .; \
168 VMLINUX_SYMBOL(__stop___verbose) = .; \
180 * Data section helpers
182 #define NOSAVE_DATA \
183 . = ALIGN(PAGE_SIZE); \
184 VMLINUX_SYMBOL(__nosave_begin) = .; \
186 . = ALIGN(PAGE_SIZE); \
187 VMLINUX_SYMBOL(__nosave_end) = .;
189 #define PAGE_ALIGNED_DATA(page_align) \
190 . = ALIGN(page_align); \
191 *(.data..page_aligned)
193 #define READ_MOSTLY_DATA(align) \
195 *(.data..read_mostly)
197 #define CACHELINE_ALIGNED_DATA(align) \
199 *(.data..cacheline_aligned)
201 #define INIT_TASK_DATA(align) \
208 #define RO_DATA_SECTION(align) \
209 . = ALIGN((align)); \
210 .rodata : AT(ADDR(.rodata) - LOAD_OFFSET) { \
211 VMLINUX_SYMBOL(__start_rodata) = .; \
212 *(.rodata) *(.rodata.*) \
213 *(__vermagic) /* Kernel version magic */ \
214 *(__markers_strings) /* Markers: strings */ \
215 *(__tracepoints_strings)/* Tracepoints: strings */ \
218 .rodata1 : AT(ADDR(.rodata1) - LOAD_OFFSET) { \
227 .pci_fixup : AT(ADDR(.pci_fixup) - LOAD_OFFSET) { \
228 VMLINUX_SYMBOL(__start_pci_fixups_early) = .; \
229 *(.pci_fixup_early) \
230 VMLINUX_SYMBOL(__end_pci_fixups_early) = .; \
231 VMLINUX_SYMBOL(__start_pci_fixups_header) = .; \
232 *(.pci_fixup_header) \
233 VMLINUX_SYMBOL(__end_pci_fixups_header) = .; \
234 VMLINUX_SYMBOL(__start_pci_fixups_final) = .; \
235 *(.pci_fixup_final) \
236 VMLINUX_SYMBOL(__end_pci_fixups_final) = .; \
237 VMLINUX_SYMBOL(__start_pci_fixups_enable) = .; \
238 *(.pci_fixup_enable) \
239 VMLINUX_SYMBOL(__end_pci_fixups_enable) = .; \
240 VMLINUX_SYMBOL(__start_pci_fixups_resume) = .; \
241 *(.pci_fixup_resume) \
242 VMLINUX_SYMBOL(__end_pci_fixups_resume) = .; \
243 VMLINUX_SYMBOL(__start_pci_fixups_resume_early) = .; \
244 *(.pci_fixup_resume_early) \
245 VMLINUX_SYMBOL(__end_pci_fixups_resume_early) = .; \
246 VMLINUX_SYMBOL(__start_pci_fixups_suspend) = .; \
247 *(.pci_fixup_suspend) \
248 VMLINUX_SYMBOL(__end_pci_fixups_suspend) = .; \
251 /* Built-in firmware blobs */ \
252 .builtin_fw : AT(ADDR(.builtin_fw) - LOAD_OFFSET) { \
253 VMLINUX_SYMBOL(__start_builtin_fw) = .; \
255 VMLINUX_SYMBOL(__end_builtin_fw) = .; \
258 /* RapidIO route ops */ \
259 .rio_ops : AT(ADDR(.rio_ops) - LOAD_OFFSET) { \
260 VMLINUX_SYMBOL(__start_rio_switch_ops) = .; \
262 VMLINUX_SYMBOL(__end_rio_switch_ops) = .; \
267 /* Kernel symbol table: Normal symbols */ \
268 __ksymtab : AT(ADDR(__ksymtab) - LOAD_OFFSET) { \
269 VMLINUX_SYMBOL(__start___ksymtab) = .; \
271 VMLINUX_SYMBOL(__stop___ksymtab) = .; \
274 /* Kernel symbol table: GPL-only symbols */ \
275 __ksymtab_gpl : AT(ADDR(__ksymtab_gpl) - LOAD_OFFSET) { \
276 VMLINUX_SYMBOL(__start___ksymtab_gpl) = .; \
278 VMLINUX_SYMBOL(__stop___ksymtab_gpl) = .; \
281 /* Kernel symbol table: Normal unused symbols */ \
282 __ksymtab_unused : AT(ADDR(__ksymtab_unused) - LOAD_OFFSET) { \
283 VMLINUX_SYMBOL(__start___ksymtab_unused) = .; \
284 *(__ksymtab_unused) \
285 VMLINUX_SYMBOL(__stop___ksymtab_unused) = .; \
288 /* Kernel symbol table: GPL-only unused symbols */ \
289 __ksymtab_unused_gpl : AT(ADDR(__ksymtab_unused_gpl) - LOAD_OFFSET) { \
290 VMLINUX_SYMBOL(__start___ksymtab_unused_gpl) = .; \
291 *(__ksymtab_unused_gpl) \
292 VMLINUX_SYMBOL(__stop___ksymtab_unused_gpl) = .; \
295 /* Kernel symbol table: GPL-future-only symbols */ \
296 __ksymtab_gpl_future : AT(ADDR(__ksymtab_gpl_future) - LOAD_OFFSET) { \
297 VMLINUX_SYMBOL(__start___ksymtab_gpl_future) = .; \
298 *(__ksymtab_gpl_future) \
299 VMLINUX_SYMBOL(__stop___ksymtab_gpl_future) = .; \
302 /* Kernel symbol table: Normal symbols */ \
303 __kcrctab : AT(ADDR(__kcrctab) - LOAD_OFFSET) { \
304 VMLINUX_SYMBOL(__start___kcrctab) = .; \
306 VMLINUX_SYMBOL(__stop___kcrctab) = .; \
309 /* Kernel symbol table: GPL-only symbols */ \
310 __kcrctab_gpl : AT(ADDR(__kcrctab_gpl) - LOAD_OFFSET) { \
311 VMLINUX_SYMBOL(__start___kcrctab_gpl) = .; \
313 VMLINUX_SYMBOL(__stop___kcrctab_gpl) = .; \
316 /* Kernel symbol table: Normal unused symbols */ \
317 __kcrctab_unused : AT(ADDR(__kcrctab_unused) - LOAD_OFFSET) { \
318 VMLINUX_SYMBOL(__start___kcrctab_unused) = .; \
319 *(__kcrctab_unused) \
320 VMLINUX_SYMBOL(__stop___kcrctab_unused) = .; \
323 /* Kernel symbol table: GPL-only unused symbols */ \
324 __kcrctab_unused_gpl : AT(ADDR(__kcrctab_unused_gpl) - LOAD_OFFSET) { \
325 VMLINUX_SYMBOL(__start___kcrctab_unused_gpl) = .; \
326 *(__kcrctab_unused_gpl) \
327 VMLINUX_SYMBOL(__stop___kcrctab_unused_gpl) = .; \
330 /* Kernel symbol table: GPL-future-only symbols */ \
331 __kcrctab_gpl_future : AT(ADDR(__kcrctab_gpl_future) - LOAD_OFFSET) { \
332 VMLINUX_SYMBOL(__start___kcrctab_gpl_future) = .; \
333 *(__kcrctab_gpl_future) \
334 VMLINUX_SYMBOL(__stop___kcrctab_gpl_future) = .; \
337 /* Kernel symbol table: strings */ \
338 __ksymtab_strings : AT(ADDR(__ksymtab_strings) - LOAD_OFFSET) { \
339 *(__ksymtab_strings) \
342 /* __*init sections */ \
343 __init_rodata : AT(ADDR(__init_rodata) - LOAD_OFFSET) { \
345 DEV_KEEP(init.rodata) \
346 DEV_KEEP(exit.rodata) \
347 CPU_KEEP(init.rodata) \
348 CPU_KEEP(exit.rodata) \
349 MEM_KEEP(init.rodata) \
350 MEM_KEEP(exit.rodata) \
353 /* Built-in module parameters. */ \
354 __param : AT(ADDR(__param) - LOAD_OFFSET) { \
355 VMLINUX_SYMBOL(__start___param) = .; \
357 VMLINUX_SYMBOL(__stop___param) = .; \
358 . = ALIGN((align)); \
359 VMLINUX_SYMBOL(__end_rodata) = .; \
363 /* RODATA & RO_DATA provided for backward compatibility.
364 * All archs are supposed to use RO_DATA() */
365 #define RODATA RO_DATA_SECTION(4096)
366 #define RO_DATA(align) RO_DATA_SECTION(align)
368 #define SECURITY_INIT \
369 .security_initcall.init : AT(ADDR(.security_initcall.init) - LOAD_OFFSET) { \
370 VMLINUX_SYMBOL(__security_initcall_start) = .; \
371 *(.security_initcall.init) \
372 VMLINUX_SYMBOL(__security_initcall_end) = .; \
375 /* .text section. Map to function alignment to avoid address changes
376 * during second ld run in second ld pass when generating System.map */
382 DEV_KEEP(init.text) \
383 DEV_KEEP(exit.text) \
384 CPU_KEEP(init.text) \
385 CPU_KEEP(exit.text) \
386 MEM_KEEP(init.text) \
387 MEM_KEEP(exit.text) \
391 /* sched.text is aling to function alignment to secure we have same
392 * address even at second ld pass when generating System.map */
395 VMLINUX_SYMBOL(__sched_text_start) = .; \
397 VMLINUX_SYMBOL(__sched_text_end) = .;
399 /* spinlock.text is aling to function alignment to secure we have same
400 * address even at second ld pass when generating System.map */
403 VMLINUX_SYMBOL(__lock_text_start) = .; \
405 VMLINUX_SYMBOL(__lock_text_end) = .;
407 #define KPROBES_TEXT \
409 VMLINUX_SYMBOL(__kprobes_text_start) = .; \
411 VMLINUX_SYMBOL(__kprobes_text_end) = .;
413 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
414 #define IRQENTRY_TEXT \
416 VMLINUX_SYMBOL(__irqentry_text_start) = .; \
418 VMLINUX_SYMBOL(__irqentry_text_end) = .;
420 #define IRQENTRY_TEXT
423 /* Section used for early init (in .S files) */
424 #define HEAD_TEXT *(.head.text)
426 #define HEAD_TEXT_SECTION \
427 .head.text : AT(ADDR(.head.text) - LOAD_OFFSET) { \
434 #define EXCEPTION_TABLE(align) \
436 __ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) { \
437 VMLINUX_SYMBOL(__start___ex_table) = .; \
439 VMLINUX_SYMBOL(__stop___ex_table) = .; \
445 #define INIT_TASK_DATA_SECTION(align) \
447 .data..init_task : AT(ADDR(.data..init_task) - LOAD_OFFSET) { \
448 INIT_TASK_DATA(align) \
451 #ifdef CONFIG_CONSTRUCTORS
452 #define KERNEL_CTORS() . = ALIGN(8); \
453 VMLINUX_SYMBOL(__ctors_start) = .; \
455 VMLINUX_SYMBOL(__ctors_end) = .;
457 #define KERNEL_CTORS()
460 /* init and exit section handling */
463 DEV_DISCARD(init.data) \
464 CPU_DISCARD(init.data) \
465 MEM_DISCARD(init.data) \
469 DEV_DISCARD(init.rodata) \
470 CPU_DISCARD(init.rodata) \
471 MEM_DISCARD(init.rodata)
475 DEV_DISCARD(init.text) \
476 CPU_DISCARD(init.text) \
477 MEM_DISCARD(init.text)
481 DEV_DISCARD(exit.data) \
482 DEV_DISCARD(exit.rodata) \
483 CPU_DISCARD(exit.data) \
484 CPU_DISCARD(exit.rodata) \
485 MEM_DISCARD(exit.data) \
486 MEM_DISCARD(exit.rodata)
490 DEV_DISCARD(exit.text) \
491 CPU_DISCARD(exit.text) \
492 MEM_DISCARD(exit.text)
498 * bss (Block Started by Symbol) - uninitialized data
499 * zeroed during startup
501 #define SBSS(sbss_align) \
502 . = ALIGN(sbss_align); \
503 .sbss : AT(ADDR(.sbss) - LOAD_OFFSET) { \
508 #define BSS(bss_align) \
509 . = ALIGN(bss_align); \
510 .bss : AT(ADDR(.bss) - LOAD_OFFSET) { \
511 *(.bss..page_aligned) \
518 * DWARF debug sections.
519 * Symbols in the DWARF debugging sections are relative to
520 * the beginning of the section so we begin them at 0.
522 #define DWARF_DEBUG \
524 .debug 0 : { *(.debug) } \
525 .line 0 : { *(.line) } \
526 /* GNU DWARF 1 extensions */ \
527 .debug_srcinfo 0 : { *(.debug_srcinfo) } \
528 .debug_sfnames 0 : { *(.debug_sfnames) } \
529 /* DWARF 1.1 and DWARF 2 */ \
530 .debug_aranges 0 : { *(.debug_aranges) } \
531 .debug_pubnames 0 : { *(.debug_pubnames) } \
533 .debug_info 0 : { *(.debug_info \
534 .gnu.linkonce.wi.*) } \
535 .debug_abbrev 0 : { *(.debug_abbrev) } \
536 .debug_line 0 : { *(.debug_line) } \
537 .debug_frame 0 : { *(.debug_frame) } \
538 .debug_str 0 : { *(.debug_str) } \
539 .debug_loc 0 : { *(.debug_loc) } \
540 .debug_macinfo 0 : { *(.debug_macinfo) } \
541 /* SGI/MIPS DWARF 2 extensions */ \
542 .debug_weaknames 0 : { *(.debug_weaknames) } \
543 .debug_funcnames 0 : { *(.debug_funcnames) } \
544 .debug_typenames 0 : { *(.debug_typenames) } \
545 .debug_varnames 0 : { *(.debug_varnames) } \
547 /* Stabs debugging sections. */
548 #define STABS_DEBUG \
549 .stab 0 : { *(.stab) } \
550 .stabstr 0 : { *(.stabstr) } \
551 .stab.excl 0 : { *(.stab.excl) } \
552 .stab.exclstr 0 : { *(.stab.exclstr) } \
553 .stab.index 0 : { *(.stab.index) } \
554 .stab.indexstr 0 : { *(.stab.indexstr) } \
555 .comment 0 : { *(.comment) }
557 #ifdef CONFIG_GENERIC_BUG
560 __bug_table : AT(ADDR(__bug_table) - LOAD_OFFSET) { \
561 VMLINUX_SYMBOL(__start___bug_table) = .; \
563 VMLINUX_SYMBOL(__stop___bug_table) = .; \
571 __jump_table : AT(ADDR(__jump_table) - LOAD_OFFSET) { \
572 VMLINUX_SYMBOL(__start___jump_table) = .; \
574 VMLINUX_SYMBOL(__stop___jump_table) = .; \
577 #ifdef CONFIG_PM_TRACE
580 .tracedata : AT(ADDR(.tracedata) - LOAD_OFFSET) { \
581 VMLINUX_SYMBOL(__tracedata_start) = .; \
583 VMLINUX_SYMBOL(__tracedata_end) = .; \
590 .notes : AT(ADDR(.notes) - LOAD_OFFSET) { \
591 VMLINUX_SYMBOL(__start_notes) = .; \
593 VMLINUX_SYMBOL(__stop_notes) = .; \
596 #define INIT_SETUP(initsetup_align) \
597 . = ALIGN(initsetup_align); \
598 VMLINUX_SYMBOL(__setup_start) = .; \
600 VMLINUX_SYMBOL(__setup_end) = .;
603 *(.initcallearly.init) \
604 VMLINUX_SYMBOL(__early_initcall_end) = .; \
606 *(.initcall0s.init) \
608 *(.initcall1s.init) \
610 *(.initcall2s.init) \
612 *(.initcall3s.init) \
614 *(.initcall4s.init) \
616 *(.initcall5s.init) \
617 *(.initcallrootfs.init) \
619 *(.initcall6s.init) \
624 VMLINUX_SYMBOL(__initcall_start) = .; \
626 VMLINUX_SYMBOL(__initcall_end) = .;
628 #define CON_INITCALL \
629 VMLINUX_SYMBOL(__con_initcall_start) = .; \
630 *(.con_initcall.init) \
631 VMLINUX_SYMBOL(__con_initcall_end) = .;
633 #define SECURITY_INITCALL \
634 VMLINUX_SYMBOL(__security_initcall_start) = .; \
635 *(.security_initcall.init) \
636 VMLINUX_SYMBOL(__security_initcall_end) = .;
638 #ifdef CONFIG_BLK_DEV_INITRD
639 #define INIT_RAM_FS \
641 VMLINUX_SYMBOL(__initramfs_start) = .; \
650 * Default discarded sections.
652 * Some archs want to discard exit text/data at runtime rather than
653 * link time due to cross-section references such as alt instructions,
654 * bug table, eh_frame, etc. DISCARDS must be the last of output
655 * section definitions so that such archs put those in earlier section
668 * PERCPU_VADDR - define output section for percpu area
669 * @vaddr: explicit base address (optional)
670 * @phdr: destination PHDR (optional)
672 * Macro which expands to output section for percpu area. If @vaddr
673 * is not blank, it specifies explicit base address and all percpu
674 * symbols will be offset from the given address. If blank, @vaddr
675 * always equals @laddr + LOAD_OFFSET.
677 * @phdr defines the output PHDR to use if not blank. Be warned that
678 * output PHDR is sticky. If @phdr is specified, the next output
679 * section in the linker script will go there too. @phdr should have
682 * Note that this macros defines __per_cpu_load as an absolute symbol.
683 * If there is no need to put the percpu section at a predetermined
684 * address, use PERCPU().
686 #define PERCPU_VADDR(vaddr, phdr) \
687 VMLINUX_SYMBOL(__per_cpu_load) = .; \
688 .data..percpu vaddr : AT(VMLINUX_SYMBOL(__per_cpu_load) \
690 VMLINUX_SYMBOL(__per_cpu_start) = .; \
691 *(.data..percpu..first) \
692 . = ALIGN(PAGE_SIZE); \
693 *(.data..percpu..page_aligned) \
694 *(.data..percpu..readmostly) \
696 *(.data..percpu..shared_aligned) \
697 VMLINUX_SYMBOL(__per_cpu_end) = .; \
699 . = VMLINUX_SYMBOL(__per_cpu_load) + SIZEOF(.data..percpu);
702 * PERCPU - define output section for percpu area, simple version
703 * @align: required alignment
705 * Align to @align and outputs output section for percpu area. This
706 * macro doesn't maniuplate @vaddr or @phdr and __per_cpu_load and
707 * __per_cpu_start will be identical.
709 * This macro is equivalent to ALIGN(align); PERCPU_VADDR( , ) except
710 * that __per_cpu_load is defined as a relative symbol against
711 * .data..percpu which is required for relocatable x86_32
714 #define PERCPU(align) \
716 .data..percpu : AT(ADDR(.data..percpu) - LOAD_OFFSET) { \
717 VMLINUX_SYMBOL(__per_cpu_load) = .; \
718 VMLINUX_SYMBOL(__per_cpu_start) = .; \
719 *(.data..percpu..first) \
720 . = ALIGN(PAGE_SIZE); \
721 *(.data..percpu..page_aligned) \
722 *(.data..percpu..readmostly) \
724 *(.data..percpu..shared_aligned) \
725 VMLINUX_SYMBOL(__per_cpu_end) = .; \
730 * Definition of the high level *_SECTION macros
731 * They will fit only a subset of the architectures
737 * All sections are combined in a single .data section.
738 * The sections following CONSTRUCTORS are arranged so their
739 * typical alignment matches.
740 * A cacheline is typical/always less than a PAGE_SIZE so
741 * the sections that has this restriction (or similar)
742 * is located before the ones requiring PAGE_SIZE alignment.
743 * NOSAVE_DATA starts and ends with a PAGE_SIZE alignment which
744 * matches the requirment of PAGE_ALIGNED_DATA.
746 * use 0 as page_align if page_aligned data is not used */
747 #define RW_DATA_SECTION(cacheline, pagealigned, inittask) \
748 . = ALIGN(PAGE_SIZE); \
749 .data : AT(ADDR(.data) - LOAD_OFFSET) { \
750 INIT_TASK_DATA(inittask) \
752 PAGE_ALIGNED_DATA(pagealigned) \
753 CACHELINE_ALIGNED_DATA(cacheline) \
754 READ_MOSTLY_DATA(cacheline) \
759 #define INIT_TEXT_SECTION(inittext_align) \
760 . = ALIGN(inittext_align); \
761 .init.text : AT(ADDR(.init.text) - LOAD_OFFSET) { \
762 VMLINUX_SYMBOL(_sinittext) = .; \
764 VMLINUX_SYMBOL(_einittext) = .; \
767 #define INIT_DATA_SECTION(initsetup_align) \
768 .init.data : AT(ADDR(.init.data) - LOAD_OFFSET) { \
770 INIT_SETUP(initsetup_align) \
777 #define BSS_SECTION(sbss_align, bss_align, stop_align) \
778 . = ALIGN(sbss_align); \
779 VMLINUX_SYMBOL(__bss_start) = .; \
782 . = ALIGN(stop_align); \
783 VMLINUX_SYMBOL(__bss_stop) = .;