From: Mark Wielaard Date: Sat, 22 Sep 2018 09:08:12 +0000 (+0200) Subject: Hook up statx syscall for s390x-linux X-Git-Tag: VALGRIND_3_14_0~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fdc275808c35888a5baef9f7232fd12f10052ef4;p=thirdparty%2Fvalgrind.git Hook up statx syscall for s390x-linux Fixes memcheck/tests/linux/sys-statx.vgtest on s390x-linux. --- diff --git a/coregrind/m_syswrap/syswrap-s390x-linux.c b/coregrind/m_syswrap/syswrap-s390x-linux.c index 426f36c7d8..ad78384d16 100644 --- a/coregrind/m_syswrap/syswrap-s390x-linux.c +++ b/coregrind/m_syswrap/syswrap-s390x-linux.c @@ -852,7 +852,9 @@ static SyscallTableEntry syscall_table[] = { LINX_(__NR_sendmsg, sys_sendmsg), // 270 LINXY(__NR_recvfrom, sys_recvfrom), // 371 LINXY(__NR_recvmsg, sys_recvmsg), // 372 - LINX_(__NR_shutdown, sys_shutdown) // 373 + LINX_(__NR_shutdown, sys_shutdown), // 373 + + LINXY(__NR_statx, sys_statx), // 379 }; SyscallTableEntry* ML_(get_linux_syscall_entry) ( UInt sysno )