module.h 324 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _ASM_X86_MODULE_H
  3. #define _ASM_X86_MODULE_H
  4. #include <asm-generic/module.h>
  5. #include <asm/orc_types.h>
  6. struct mod_arch_specific {
  7. #ifdef CONFIG_UNWINDER_ORC
  8. unsigned int num_orcs;
  9. int *orc_unwind_ip;
  10. struct orc_entry *orc_unwind;
  11. #endif
  12. };
  13. #endif /* _ASM_X86_MODULE_H */