1 #ifndef _ASM_GENERIC_SECTIONS_H_ 2 #define _ASM_GENERIC_SECTIONS_H_ 3 4 /* References to section boundaries */ 5 6 extern char _text[], _stext[], _etext[]; 7 extern char _data[], _sdata[], _edata[]; 8 extern char __bss_start[], __bss_stop[]; 9 extern char __init_begin[], __init_end[]; 10 extern char _sinittext[], _einittext[]; 11 extern char _end[]; 12 extern char __per_cpu_load[], __per_cpu_start[], __per_cpu_end[]; 13 extern char __kprobes_text_start[], __kprobes_text_end[]; 14 extern char __initdata_begin[], __initdata_end[]; 15 extern char __start_rodata[], __end_rodata[]; 16 17 /* function descriptor handling (if any). Override 18 * in asm/sections.h */ 19 #ifndef dereference_function_descriptor 20 #define dereference_function_descriptor(p) (p) 21 #endif 22 23 #endif /* _ASM_GENERIC_SECTIONS_H_ */ 24