|
From: <sv...@va...> - 2014-06-26 13:35:02
|
Author: tom
Date: Thu Jun 26 13:34:53 2014
New Revision: 14113
Log:
Wire up recvmmsg on arm. BZ#334585.
Modified:
trunk/NEWS
trunk/coregrind/m_syswrap/syswrap-arm-linux.c
trunk/docs/internals/3_9_BUGSTATUS.txt
Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS (original)
+++ trunk/NEWS Thu Jun 26 13:34:53 2014
@@ -157,6 +157,7 @@
333817 Valgrind reports the memory areas written to by the SG_IO
ioctl as untouched
334049 lzcnt fails silently (x86_32)
+334585 recvmmsg unhandled (+patch) (arm)
334705 sendmsg and recvmsg should guard against bogus msghdr fields.
334727 Build fails with -Werror=format-security
334788 clarify doc about --log-file initial program directory
Modified: trunk/coregrind/m_syswrap/syswrap-arm-linux.c
==============================================================================
--- trunk/coregrind/m_syswrap/syswrap-arm-linux.c (original)
+++ trunk/coregrind/m_syswrap/syswrap-arm-linux.c Thu Jun 26 13:34:53 2014
@@ -1220,7 +1220,7 @@
LINX_(__NR_pwritev, sys_pwritev), // 362
LINXY(__NR_rt_tgsigqueueinfo, sys_rt_tgsigqueueinfo),// 363
LINXY(__NR_perf_event_open, sys_perf_event_open), // 364
-
+ LINXY(__NR_recvmmsg, sys_recvmmsg), // 365
LINXY(__NR_accept4, sys_accept4), // 366
LINXY(__NR_fanotify_init, sys_fanotify_init), // 367
LINX_(__NR_fanotify_mark, sys_fanotify_mark), // 368
Modified: trunk/docs/internals/3_9_BUGSTATUS.txt
==============================================================================
--- trunk/docs/internals/3_9_BUGSTATUS.txt (original)
+++ trunk/docs/internals/3_9_BUGSTATUS.txt Thu Jun 26 13:34:53 2014
@@ -57,7 +57,6 @@
333434 In some weird corner case Valgrind cannot execute
executable files symlinked by /proc/self/fd (related to 331311?)
333051 handling hugepages (is largely broken)
-334585 recvmmsg unhandled (+patch) (arm)
=== Debuginfo reader ===================================================
|