stress-ng: fix build on musl (disable linux5.2 syscalls)

[ci skip]
This commit is contained in:
q66 2019-10-23 19:02:05 +02:00 committed by Leah Neukirchen
parent f102034511
commit 115690b5f7
2 changed files with 53 additions and 4 deletions

View file

@ -0,0 +1,53 @@
This disables usage of new Linux 5.2 system calls.
This is necessary as musl has picked up the syscall numbers for these in its
most recent release, but our kernel-libc-headers is still 4.19, which breaks
build.
Glibc is fine because it uses syscall numbers from these kernel headers
instead of defining its own.
--- core-shim.c
+++ core-shim.c
@@ -24,6 +24,19 @@
*/
#include "stress-ng.h"
+#ifdef __NR_fsopen
+#undef __NR_fsopen
+#endif
+#ifdef __NR_fsmount
+#undef __NR_fsmount
+#endif
+#ifdef __NR_fsconfig
+#undef __NR_fsconfig
+#endif
+#ifdef __NR_move_mount
+#undef __NR_move_mount
+#endif
+
/*
* Various shim abstraction wrappers around systems calls and
* GCC helper functions that may not be supported by some
--- stress-ramfs.c
+++ stress-ramfs.c
@@ -24,6 +24,19 @@
*/
#include "stress-ng.h"
+#ifdef __NR_fsopen
+#undef __NR_fsopen
+#endif
+#ifdef __NR_fsmount
+#undef __NR_fsmount
+#endif
+#ifdef __NR_fsconfig
+#undef __NR_fsconfig
+#endif
+#ifdef __NR_move_mount
+#undef __NR_move_mount
+#endif
+
static const help_t help[] = {
{ NULL, "ramfs N", "start N workers exercising ramfs mounts" },
{ NULL, "ramfs-ops N", "stop after N bogo ramfs mount operations" },

View file

@ -10,7 +10,3 @@ license="GPL-2.0-or-later"
homepage="http://kernel.ubuntu.com/~cking/stress-ng/"
distfiles="http://kernel.ubuntu.com/~cking/tarballs/stress-ng/${pkgname}-${version}.tar.xz"
checksum=4addeaabcfcb709581cbc4c61182317b8d91bcf31f529bfa899d170facfd75ce
case "$XBPS_TARGET_MACHINE" in
*-musl) broken="https://build.voidlinux.org/builders/armv7l-musl_builder/builds/21516/steps/shell_3/logs/stdio"
esac