summaryrefslogtreecommitdiff
path: root/arch/nios2/include/uapi/asm/unistd.h
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2024-05-08 18:13:34 +0300
committerArnd Bergmann <arnd@arndb.de>2024-07-10 15:23:38 +0300
commit505d66d1abfb90853e24ab6cbdf83b611473d6fc (patch)
tree3af6512a4ddedb9fe9bba6217ab9621eb8d32a01 /arch/nios2/include/uapi/asm/unistd.h
parentfbb5c0606fa4506e9085e7a62c9e0098e573ce7a (diff)
downloadlinux-505d66d1abfb90853e24ab6cbdf83b611473d6fc.tar.xz
clone3: drop __ARCH_WANT_SYS_CLONE3 macro
When clone3() was introduced, it was not obvious how each architecture deals with setting up the stack and keeping the register contents in a fork()-like system call, so this was left for the architecture maintainers to implement, with __ARCH_WANT_SYS_CLONE3 defined by those that already implement it. Five years later, we still have a few architectures left that are missing clone3(), and the macro keeps getting in the way as it's fundamentally different from all the other __ARCH_WANT_SYS_* macros that are meant to provide backwards-compatibility with applications using older syscalls that are no longer provided by default. Address this by reversing the polarity of the macro, adding an __ARCH_BROKEN_SYS_CLONE3 macro to all architectures that don't already provide the syscall, and remove __ARCH_WANT_SYS_CLONE3 from all the other ones. Acked-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/nios2/include/uapi/asm/unistd.h')
-rw-r--r--arch/nios2/include/uapi/asm/unistd.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/nios2/include/uapi/asm/unistd.h b/arch/nios2/include/uapi/asm/unistd.h
index 0b4bb1d41b28..d2bc5ac975fb 100644
--- a/arch/nios2/include/uapi/asm/unistd.h
+++ b/arch/nios2/include/uapi/asm/unistd.h
@@ -23,6 +23,8 @@
#define __ARCH_WANT_SET_GET_RLIMIT
#define __ARCH_WANT_TIME32_SYSCALLS
+#define __ARCH_BROKEN_SYS_CLONE3
+
/* Use the standard ABI for syscalls */
#include <asm-generic/unistd.h>