Bug 361726 - WARNING:unhandled syscall on ppc64 and amd64 (membarrier)
Summary: WARNING:unhandled syscall on ppc64 and amd64 (membarrier)
Status: RESOLVED FIXED
Alias: None
Product: valgrind
Classification: Developer tools
Component: general (show other bugs)
Version: unspecified
Platform: unspecified Linux
: NOR crash
Target Milestone: ---
Assignee: Julian Seward
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-04-13 16:51 UTC by Abhishek
Modified: 2019-05-31 13:12 UTC (History)
5 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Abhishek 2016-04-13 16:51:34 UTC
We are trying to measure heap consumption for one of our application with valgrind ( version 3.9.0)  And we are getting following warnings on ppc64 board

--11713-- WARNING: Serious error when reading debug info
--11713-- When reading debug info from /lib64/libc-2.20.so:
--11713-- parse_type_DIE: confused by the above DIE
--11713-- WARNING: unhandled syscall: 365
--11713-- You may be able to write your own handler.
--11713-- Read the file README_MISSING_SYSCALL_OR_IOCTL.
--11713-- Nevertheless we consider this a bug. Please report
--11713-- it at http://valgrind.org/support/bug_reports.html.
--11713-- WARNING: unhandled syscall: 365
--11713-- You may be able to write your own handler.
--11713-- Read the file README_MISSING_SYSCALL_OR_IOCTL.
--11713-- Nevertheless we consider this a bug. Please report
--11713-- it at http://valgrind.org/support/bug_reports.html.
QMan: Allocated lookup table at 0x8df0960, entry count 32769
--11713-- WARNING: unhandled syscall: 350
--11713-- You may be able to write your own handler.
--11713-- Read the file README_MISSING_SYSCALL_OR_IOCTL.
--11713-- Nevertheless we consider this a bug. Please report 

Reproducible: Always
Comment 1 Josef Weidendorfer 2016-04-18 21:54:38 UTC
This bug report seems to be about a problem in the debug info reader and missing
syscall handlers, and not about callgrind. Therefore, reassigning to "General".

However, 3.9.0 is quite old. You should test with newest release (3.11) or better
the current SVN version.
Comment 2 Abhishek 2016-04-19 05:25:09 UTC
Hi Josef,

Thanks.

I have checked the latest version of Valgrind 3.11 and these syscall handlers are not implemented in newer version as well on PPC64 architecture.

Please help me how can I proceed further to resolve this issue.

Regards,
Abhishek
Comment 3 Julian Seward 2016-09-13 17:09:18 UTC
350 is sys_setns.

365, I don't know.  include/vki/vki-scnums-ppc64-linux.h only lists up to 360
so I guess it needs some updating.
Comment 4 Peter Maydell 2016-09-13 17:10:50 UTC
PPC64 syscall 365 is NR_membarrier.
Comment 5 Mark Wielaard 2016-09-13 19:44:46 UTC
The membarrier() system call was added in Linux 4.3.
http://www.man7.org/linux/man-pages/man2/membarrier.2.html
Which contains a small test program that also fails on amd64-linux.
WARNING: unhandled amd64-linux syscall: 324
Comment 6 Mark Wielaard 2016-09-13 19:46:03 UTC
BTW. This is an awesome overview of all the linux syscalls by architectures:
https://fedora.juszkiewicz.com.pl/syscalls.html
Comment 7 Abhishek 2017-02-02 12:41:59 UTC
Hi,

Do we have any update how to add this 'membarrier' syscall in valgrind?

Regards,
Abhishek
Comment 8 Ivo Raisr 2017-05-05 14:03:35 UTC
Hi Abhishek,
Please follow README_MISSING_SYSCALL_OR_IOCTL and provide a patch.
Thank you!
Comment 9 Mark Wielaard 2019-05-31 13:12:59 UTC
commit 959a54cb3a631bb61420f1784a0c8585af24349e
Author: Bart Van Assche <bart.vanassche@wdc.com>
Date:   Fri Jun 15 08:24:53 2018 -0700

    Add support for the Linux membarrier() system call
    
    Signed-off-by: Bart Van Assche <bart.vanassche@wdc.com>

commit fbefb81c3cb85af61252e2f6b54f77c506bfe13a
Author: Mark Wielaard <mark@klomp.org>
Date:   Tue Sep 18 18:21:21 2018 +0200

    Hook up linux membarrier syscall for ppc64[le]
    
    Fixes none/tests/linux/membarrier on ppc64[le] platforms.