Blame SOURCES/valgrind-3.14.0-ppc64-quotactl.patch
|
|
560544 |
commit 7f74ba249ead48f351676c37d498b17305212123
|
|
|
560544 |
Author: Mark Wielaard <mark@klomp.org>
|
|
|
560544 |
Date: Mon Mar 4 17:22:56 2019 +0100
|
|
|
560544 |
|
|
|
560544 |
Bug 405079 - unhandled ppc64le-linux syscall: 131 (quotactl)
|
|
|
560544 |
|
|
|
560544 |
quotactl is really a "generic" linux syscall that just happened to not
|
|
|
560544 |
have been hooked up for ppc64le. Add it to syswrap-ppc64-linux.c.
|
|
|
560544 |
|
|
|
560544 |
diff --git a/coregrind/m_syswrap/syswrap-ppc64-linux.c b/coregrind/m_syswrap/syswrap-ppc64-linux.c
|
|
|
560544 |
index 0fdcc8e..eada099 100644
|
|
|
560544 |
--- a/coregrind/m_syswrap/syswrap-ppc64-linux.c
|
|
|
560544 |
+++ b/coregrind/m_syswrap/syswrap-ppc64-linux.c
|
|
|
560544 |
@@ -755,7 +755,7 @@ static SyscallTableEntry syscall_table[] = {
|
|
|
560544 |
LINX_(__NR_delete_module, sys_delete_module), // 129
|
|
|
560544 |
|
|
|
560544 |
// _____(__NR_get_kernel_syms, sys_get_kernel_syms), // 130
|
|
|
560544 |
-// _____(__NR_quotactl, sys_quotactl), // 131
|
|
|
560544 |
+ LINX_(__NR_quotactl, sys_quotactl), // 131
|
|
|
560544 |
GENX_(__NR_getpgid, sys_getpgid), // 132
|
|
|
560544 |
GENX_(__NR_fchdir, sys_fchdir), // 133
|
|
|
560544 |
// _____(__NR_bdflush, sys_bdflush), // 134
|