Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef _ASM_X86_MODULE_H
0003 #define _ASM_X86_MODULE_H
0004 
0005 #include <asm-generic/module.h>
0006 #include <asm/orc_types.h>
0007 
0008 struct mod_arch_specific {
0009 #ifdef CONFIG_UNWINDER_ORC
0010     unsigned int num_orcs;
0011     int *orc_unwind_ip;
0012     struct orc_entry *orc_unwind;
0013 #endif
0014 };
0015 
0016 #endif /* _ASM_X86_MODULE_H */