xref: /openbmc/linux/arch/x86/include/asm/proto.h (revision 842b6b16)
1 #ifndef _ASM_X86_PROTO_H
2 #define _ASM_X86_PROTO_H
3 
4 #include <asm/ldt.h>
5 
6 /* misc architecture specific prototypes */
7 
8 void syscall_init(void);
9 
10 void entry_SYSCALL_64(void);
11 void entry_SYSCALL_compat(void);
12 void entry_INT80_32(void);
13 void entry_INT80_compat(void);
14 void entry_SYSENTER_32(void);
15 void entry_SYSENTER_compat(void);
16 
17 void x86_configure_nx(void);
18 void x86_report_nx(void);
19 
20 extern int reboot_force;
21 
22 long do_arch_prctl(struct task_struct *task, int code, unsigned long addr);
23 
24 #endif /* _ASM_X86_PROTO_H */
25