]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Bug 363714 ppc64 missing syscalls sync, waitid and name_to/open_by_handle_at
authorMark Wielaard <mark@klomp.org>
Mon, 30 May 2016 20:16:04 +0000 (20:16 +0000)
committerMark Wielaard <mark@klomp.org>
Mon, 30 May 2016 20:16:04 +0000 (20:16 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15888

NEWS
coregrind/m_syswrap/syswrap-ppc64-linux.c

diff --git a/NEWS b/NEWS
index 0332958c59adf0877316cb6ec4c4fa6aca37d745..654ccc2acf2bd7bed1406f182fede066428d8d0c 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -103,6 +103,7 @@ where XXXXXX is the bug number as listed below.
 362009  Valgrind dumps core on unimplemented functionality before threads are created
 360035  POWER PC instruction bcdadd and bcdsubtract generate result with non-zero shadow bits
 363705  arm64 missing syscall name_to_handle_at and open_by_handle_at
+363714  ppc64 missing syscalls sync, waitid and name_to/open_by_handle_at
 
 n-i-bz Fix incorrect (or infinite loop) unwind on RHEL7 x86 and amd64
 n-i-bz massif --pages-as-heap=yes does not report peak caused by mmap+munmap
index 6d5713b6dc5e61aac1e06b922762071fb849253d..2a027f0008adb3b417da0c87e3f95feaba46600e 100644 (file)
@@ -821,7 +821,7 @@ static SyscallTableEntry syscall_table[] = {
 // _____(__NR_nice,              sys_nice),               //  34
 
 // _____(__NR_ftime,             sys_ftime),              //  35
-// _____(__NR_sync,              sys_sync),               //  36
+   GENX_(__NR_sync,              sys_sync),               //  36
    GENX_(__NR_kill,              sys_kill),               //  37
    GENX_(__NR_rename,            sys_rename),             //  38
    GENX_(__NR_mkdir,             sys_mkdir),              //  39
@@ -1102,7 +1102,7 @@ static SyscallTableEntry syscall_table[] = {
 
    LINX_(__NR_request_key,       sys_request_key),        // 270
    LINXY(__NR_keyctl,            sys_keyctl),             // 271
-// _____(__NR_waitid,            sys_waitid),             // 272
+   LINXY(__NR_waitid,            sys_waitid),             // 272
    LINX_(__NR_ioprio_set,        sys_ioprio_set),         // 273
    LINX_(__NR_ioprio_get,        sys_ioprio_get),         // 274
 
@@ -1170,7 +1170,8 @@ static SyscallTableEntry syscall_table[] = {
    LINXY(__NR_recvmsg,           sys_recvmsg),          // 342
    LINXY(__NR_recvmmsg,          sys_recvmmsg),         // 343
    LINXY(__NR_accept4,           sys_accept4),          // 344
-
+   LINXY(__NR_name_to_handle_at, sys_name_to_handle_at),// 345
+   LINXY(__NR_open_by_handle_at, sys_open_by_handle_at),// 346
    LINXY(__NR_clock_adjtime,     sys_clock_adjtime),    // 347
    LINX_(__NR_syncfs,            sys_syncfs),           // 348
    LINXY(__NR_sendmmsg,          sys_sendmmsg),         // 349