From: Mark W. <ma...@so...> - 2025-05-17 21:22:05
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=9a9a4261106cfb10e5dca7348c6e6e98c5a0bd91 commit 9a9a4261106cfb10e5dca7348c6e6e98c5a0bd91 Author: Paul Floyd <pj...@wa...> Date: Sun May 11 10:28:01 2025 +0200 Linux PPC64 syscall: add sys_io_pgetevents (cherry picked from commit 01f66db19fd91bbe869d1272ab67e441396cabe5) Diff: --- coregrind/m_syswrap/syswrap-ppc64-linux.c | 1 + include/vki/vki-scnums-ppc64-linux.h | 1 + 2 files changed, 2 insertions(+) diff --git a/coregrind/m_syswrap/syswrap-ppc64-linux.c b/coregrind/m_syswrap/syswrap-ppc64-linux.c index 7a79c6dee3..007fa6336c 100644 --- a/coregrind/m_syswrap/syswrap-ppc64-linux.c +++ b/coregrind/m_syswrap/syswrap-ppc64-linux.c @@ -1022,6 +1022,7 @@ static SyscallTableEntry syscall_table[] = { LINXY(__NR_statx, sys_statx), // 383 GENX_(__NR_rseq, sys_ni_syscall), // 387 + LINX_(__NR_io_pgetevents, sys_io_pgetevents), // 388 LINXY(__NR_io_uring_setup, sys_io_uring_setup), // 425 LINXY(__NR_io_uring_enter, sys_io_uring_enter), // 426 diff --git a/include/vki/vki-scnums-ppc64-linux.h b/include/vki/vki-scnums-ppc64-linux.h index a76fa6d322..6d8b2b508c 100644 --- a/include/vki/vki-scnums-ppc64-linux.h +++ b/include/vki/vki-scnums-ppc64-linux.h @@ -408,6 +408,7 @@ #define __NR_pkey_free 385 #define __NR_pkey_mprotect 386 #define __NR_rseq 387 +#define __NR_io_pgetevents 388 #endif /* __VKI_SCNUMS_PPC64_LINUX_H */ |