sections.h 429 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _ASM_X86_SECTIONS_H
  3. #define _ASM_X86_SECTIONS_H
  4. #include <asm-generic/sections.h>
  5. #include <asm/extable.h>
  6. extern char __brk_base[], __brk_limit[];
  7. extern struct exception_table_entry __stop___ex_table[];
  8. #if defined(CONFIG_X86_64)
  9. extern char __end_rodata_hpage_align[];
  10. extern char __entry_trampoline_start[], __entry_trampoline_end[];
  11. #endif
  12. #endif /* _ASM_X86_SECTIONS_H */