Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags   |
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) /* SPDX-License-Identifier: GPL-2.0 */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) #ifndef _ASM_S390_SECCOMP_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3) #define _ASM_S390_SECCOMP_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5) #include <linux/unistd.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7) #define __NR_seccomp_read	__NR_read
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) #define __NR_seccomp_write	__NR_write
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) #define __NR_seccomp_exit	__NR_exit
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) #define __NR_seccomp_sigreturn	__NR_sigreturn
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) #define __NR_seccomp_read_32	__NR_read
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) #define __NR_seccomp_write_32	__NR_write
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) #define __NR_seccomp_exit_32	__NR_exit
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) #define __NR_seccomp_sigreturn_32 __NR_sigreturn
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) #include <asm-generic/seccomp.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) #define SECCOMP_ARCH_NATIVE		AUDIT_ARCH_S390X
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) #define SECCOMP_ARCH_NATIVE_NR		NR_syscalls
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) #define SECCOMP_ARCH_NATIVE_NAME	"s390x"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) #ifdef CONFIG_COMPAT
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) # define SECCOMP_ARCH_COMPAT		AUDIT_ARCH_S390
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) # define SECCOMP_ARCH_COMPAT_NR		NR_syscalls
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) # define SECCOMP_ARCH_COMPAT_NAME	"s390"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) #endif
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 28) #endif	/* _ASM_S390_SECCOMP_H */