From: Mark W. <ma...@so...> - 2025-06-28 16:37:53
|
https://sourceware.org/cgit/valgrind/commit/?id=6adb4391cb202805cbf60edd5769a207af6fe300 commit 6adb4391cb202805cbf60edd5769a207af6fe300 Author: Mark Wielaard <ma...@kl...> Date: Sat Jun 28 18:33:29 2025 +0200 mips32: Use LINXY for statmount and listmount commit 57152acfc6a8 "Wrap linux specific syscalls 457 (listmount) and 458 (statmount)" added LINXY wrappers for all arches, except for mips32 where it used LINX_. This was a typo/mistake. Make sure mips32 also uses LINXY wrappers. Suggested-by: Matthias Schwarzott <zz...@ge...> Diff: --- coregrind/m_syswrap/syswrap-mips32-linux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/coregrind/m_syswrap/syswrap-mips32-linux.c b/coregrind/m_syswrap/syswrap-mips32-linux.c index 734f129c87..4e5e91e15b 100644 --- a/coregrind/m_syswrap/syswrap-mips32-linux.c +++ b/coregrind/m_syswrap/syswrap-mips32-linux.c @@ -1182,8 +1182,8 @@ static SyscallTableEntry syscall_main_table[] = { LINXY(__NR_cachestat, sys_cachestat), // 451 LINX_(__NR_fchmodat2, sys_fchmodat2), // 452 - LINX_(__NR_statmount, sys_statmount), // 457 - LINX_(__NR_listmount, sys_listmount), // 458 + LINXY(__NR_statmount, sys_statmount), // 457 + LINXY(__NR_listmount, sys_listmount), // 458 LINX_(__NR_mseal, sys_mseal), // 462 }; |