From: Mark Wielaard Date: Sat, 28 Jun 2025 16:33:29 +0000 (+0200) Subject: mips32: Use LINXY for statmount and listmount X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;p=thirdparty%2Fvalgrind.git 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 --- diff --git a/coregrind/m_syswrap/syswrap-mips32-linux.c b/coregrind/m_syswrap/syswrap-mips32-linux.c index 734f129c8..4e5e91e15 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 };