Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Kees Cook | 8eb68bf | 2015-04-16 12:49:04 -0700 | [diff] [blame] | 2 | #ifndef _ASM_X86_SECCOMP_H |
| 3 | #define _ASM_X86_SECCOMP_H |
| 4 | |
| 5 | #include <asm/unistd.h> |
| 6 | |
Thomas Gleixner | 96a388d | 2007-10-11 11:20:03 +0200 | [diff] [blame] | 7 | #ifdef CONFIG_X86_32 |
Kees Cook | 8eb68bf | 2015-04-16 12:49:04 -0700 | [diff] [blame] | 8 | #define __NR_seccomp_sigreturn __NR_sigreturn |
Thomas Gleixner | 96a388d | 2007-10-11 11:20:03 +0200 | [diff] [blame] | 9 | #endif |
Kees Cook | 8eb68bf | 2015-04-16 12:49:04 -0700 | [diff] [blame] | 10 | |
| 11 | #ifdef CONFIG_COMPAT |
| 12 | #include <asm/ia32_unistd.h> |
| 13 | #define __NR_seccomp_read_32 __NR_ia32_read |
| 14 | #define __NR_seccomp_write_32 __NR_ia32_write |
| 15 | #define __NR_seccomp_exit_32 __NR_ia32_exit |
| 16 | #define __NR_seccomp_sigreturn_32 __NR_ia32_sigreturn |
| 17 | #endif |
| 18 | |
| 19 | #include <asm-generic/seccomp.h> |
| 20 | |
| 21 | #endif /* _ASM_X86_SECCOMP_H */ |