| Summary: | [x86_64] WARNING: unhandled syscall: 125/126/179 (capget/capset/quotactl) | ||
|---|---|---|---|
| Product: | [Developer tools] valgrind | Reporter: | Kyle Moffett <kyle> |
| Component: | general | Assignee: | Julian Seward <jseward> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | vl |
| Priority: | NOR | ||
| Version First Reported In: | 3.3.1 | ||
| Target Milestone: | --- | ||
| Platform: | Debian testing | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Kyle Moffett
2008-10-20 06:06:59 UTC
sys_capget and sys_capset are already supported in the svn trunk on amd64-linux (although not in 3.3.1). That just leaves sys_quotactl. Could you check out the trunk as described at http://www.valgrind.org/downloads/repository.html, apply the patch below, build, and let me know if it works correctly? Index: coregrind/m_syswrap/syswrap-amd64-linux.c =================================================================== --- coregrind/m_syswrap/syswrap-amd64-linux.c (revision 8708) +++ coregrind/m_syswrap/syswrap-amd64-linux.c (working copy) @@ -1229,7 +1229,7 @@ LINX_(__NR_delete_module, sys_delete_module), // 176 // (__NR_get_kernel_syms, sys_ni_syscall), // 177 // (__NR_query_module, sys_ni_syscall), // 178 - //LINX_(__NR_quotactl, sys_quotactl), // 179 + LINX_(__NR_quotactl, sys_quotactl), // 179 // (__NR_nfsservctl, sys_nfsservctl), // 180 // (__NR_getpmsg, sys_ni_syscall), // 181 Closing this in the absence of further feedback. Patch above committed as r8720. If you do get an opportunity to test it, I'd appreciate hearing the results. *** Bug 154268 has been marked as a duplicate of this bug. *** |