From 9bab18b8616bad4fa0adcd0e291903c55263640e Mon Sep 17 00:00:00 2001 From: Olivier Houchard Date: Thu, 23 Sep 2021 00:22:30 +0200 Subject: [PATCH] libsysdecode: Decode FreeBSD32 syscalls on arm64. Add aarch64 to the list of architectures that can run 32bits FreeBSD binaries, so that truss works correctly with an arm32 binary. The same should probably be done with mips. MFC After: 1 week --- lib/libsysdecode/syscallnames.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libsysdecode/syscallnames.c b/lib/libsysdecode/syscallnames.c index 4638438964fd..fcc14886f39f 100644 --- a/lib/libsysdecode/syscallnames.c +++ b/lib/libsysdecode/syscallnames.c @@ -43,7 +43,7 @@ __FBSDID("$FreeBSD$"); static #include -#if defined(__amd64__) || defined(__powerpc64__) +#if defined(__amd64__) || defined(__powerpc64__) || defined(__aarch64__) static #include #endif @@ -73,7 +73,7 @@ sysdecode_syscallname(enum sysdecode_abi abi, unsigned int code) if (code < nitems(syscallnames)) return (syscallnames[code]); break; -#if defined(__amd64__) || defined(__powerpc64__) +#if defined(__amd64__) || defined(__powerpc64__) || defined(__aarch64__) case SYSDECODE_ABI_FREEBSD32: if (code < nitems(freebsd32_syscallnames)) return (freebsd32_syscallnames[code]);