|
From: <sv...@va...> - 2016-05-30 14:17:33
|
Author: mjw
Date: Mon May 30 15:17:25 2016
New Revision: 15887
Log:
Bug #363705 arm64 missing syscall name_to_handle_at and open_by_handle_at
Modified:
trunk/NEWS
trunk/coregrind/m_syswrap/syswrap-arm64-linux.c
Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS (original)
+++ trunk/NEWS Mon May 30 15:17:25 2016
@@ -102,6 +102,7 @@
361926 Unhandled Solaris syscall: sysfs(84)
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
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
Modified: trunk/coregrind/m_syswrap/syswrap-arm64-linux.c
==============================================================================
--- trunk/coregrind/m_syswrap/syswrap-arm64-linux.c (original)
+++ trunk/coregrind/m_syswrap/syswrap-arm64-linux.c Mon May 30 15:17:25 2016
@@ -1096,6 +1096,9 @@
GENXY(__NR_wait4, sys_wait4), // 260
+ LINXY(__NR_name_to_handle_at, sys_name_to_handle_at), // 264
+ LINXY(__NR_open_by_handle_at, sys_open_by_handle_at), // 265
+
LINX_(__NR_syncfs, sys_syncfs), // 267
LINXY(__NR_sendmmsg, sys_sendmmsg), // 269
@@ -1374,8 +1377,6 @@
//ZZ LINXY(__NR_epoll_create1, sys_epoll_create1), // 357
//ZZ LINXY(__NR_rt_tgsigqueueinfo, sys_rt_tgsigqueueinfo),// 363
//ZZ
-//ZZ LINXY(__NR_name_to_handle_at, sys_name_to_handle_at),// 370
-//ZZ LINXY(__NR_open_by_handle_at, sys_open_by_handle_at),// 371
//ZZ LINXY(__NR_clock_adjtime, sys_clock_adjtime) // 372
};
|