]>
Commit | Line | Data |
---|---|---|
b2441318 | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
93dbda7c JF |
2 | #ifndef _ASM_X86_SECTIONS_H |
3 | #define _ASM_X86_SECTIONS_H | |
4 | ||
020bd9f1 | 5 | #include <asm-generic/sections.h> |
45caf470 | 6 | #include <asm/extable.h> |
93dbda7c JF |
7 | |
8 | extern char __brk_base[], __brk_limit[]; | |
74e08179 | 9 | extern struct exception_table_entry __stop___ex_table[]; |
39d668e0 | 10 | extern char __end_rodata_aligned[]; |
74e08179 | 11 | |
9ccaf77c | 12 | #if defined(CONFIG_X86_64) |
74e08179 SS |
13 | extern char __end_rodata_hpage_align[]; |
14 | #endif | |
93dbda7c JF |
15 | |
16 | #endif /* _ASM_X86_SECTIONS_H */ |