]> git.ipfire.org Git - thirdparty/kernel/linux.git/blame - arch/x86/include/asm/seccomp.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[thirdparty/kernel/linux.git] / arch / x86 / include / asm / seccomp.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
8eb68bf7
KC
2#ifndef _ASM_X86_SECCOMP_H
3#define _ASM_X86_SECCOMP_H
4
5#include <asm/unistd.h>
6
96a388de 7#ifdef CONFIG_X86_32
8eb68bf7 8#define __NR_seccomp_sigreturn __NR_sigreturn
96a388de 9#endif
8eb68bf7
KC
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 */