H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 1 | #ifndef _ASM_X86_PROTO_H |
| 2 | #define _ASM_X86_PROTO_H |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | |
| 4 | #include <asm/ldt.h> |
| 5 | |
| 6 | /* misc architecture specific prototypes */ |
| 7 | |
H. Peter Anvin | 5bd085b | 2009-11-16 13:55:31 -0800 | [diff] [blame] | 8 | void syscall_init(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
Ingo Molnar | b2502b4 | 2015-06-08 08:42:03 +0200 | [diff] [blame^] | 10 | void entry_SYSCALL_64(void); |
Ingo Molnar | 2cd2355 | 2015-06-08 08:28:07 +0200 | [diff] [blame] | 11 | void entry_SYSCALL_compat(void); |
Ingo Molnar | b2502b4 | 2015-06-08 08:42:03 +0200 | [diff] [blame^] | 12 | void entry_INT80_32(void); |
| 13 | void entry_INT80_compat(void); |
Ingo Molnar | 4c8cd0c | 2015-06-08 08:33:56 +0200 | [diff] [blame] | 14 | void entry_SYSENTER_32(void); |
| 15 | void entry_SYSENTER_compat(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
H. Peter Anvin | 5bd085b | 2009-11-16 13:55:31 -0800 | [diff] [blame] | 17 | void x86_configure_nx(void); |
| 18 | void x86_report_nx(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | extern int reboot_force; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | long do_arch_prctl(struct task_struct *task, int code, unsigned long addr); |
| 23 | |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 24 | #endif /* _ASM_X86_PROTO_H */ |