Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

unicore32: define syscall_get_arch()

syscall_get_arch() is required to be implemented on all architectures
in addition to already implemented syscall_get_nr(),
syscall_get_arguments(), syscall_get_error(), and
syscall_get_return_value() functions in order to extend the generic
ptrace API with PTRACE_GET_SYSCALL_INFO request.

Acked-by: Paul Moore <paul@paul-moore.com>
Cc: Elvira Khabirova <lineprinter@altlinux.org>
Cc: Eugene Syromyatnikov <esyr@redhat.com>
Cc: Guan Xuetao <gxt@pku.edu.cn>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Andy Lutomirski <luto@kernel.org>
Cc: linux-audit@redhat.com
Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
Signed-off-by: Paul Moore <paul@paul-moore.com>

authored by

Dmitry V. Levin and committed by
Paul Moore
b15fe94a 03f7e6ad

+13
+12
arch/unicore32/include/asm/syscall.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0 */ 2 + #ifndef _ASM_UNICORE_SYSCALL_H 3 + #define _ASM_UNICORE_SYSCALL_H 4 + 5 + #include <uapi/linux/audit.h> 6 + 7 + static inline int syscall_get_arch(void) 8 + { 9 + return AUDIT_ARCH_UNICORE; 10 + } 11 + 12 + #endif /* _ASM_UNICORE_SYSCALL_H */
+1
include/uapi/linux/audit.h
··· 424 424 #define AUDIT_ARCH_TILEGX (EM_TILEGX|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE) 425 425 #define AUDIT_ARCH_TILEGX32 (EM_TILEGX|__AUDIT_ARCH_LE) 426 426 #define AUDIT_ARCH_TILEPRO (EM_TILEPRO|__AUDIT_ARCH_LE) 427 + #define AUDIT_ARCH_UNICORE (EM_UNICORE|__AUDIT_ARCH_LE) 427 428 #define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE) 428 429 #define AUDIT_ARCH_XTENSA (EM_XTENSA) 429 430