From: Karel Zak Date: Mon, 13 May 2024 09:43:57 +0000 (+0200) Subject: include/pidfd-utils: remove hardcoded syscall fallback X-Git-Tag: v2.42-start~346 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=057080b5c89fa63cece8a5d4a6da4959bd004aa1;p=thirdparty%2Futil-linux.git include/pidfd-utils: remove hardcoded syscall fallback Based on https://github.com/util-linux/util-linux/pull/3018 The syscall numbers should not be hardcoded in the header file. If we really need them, there is UL_CHECK_SYSCALL() to define the numbers for different architectures. I doubt it's really necessary. Just update your kernel header files to get the latest kernel updates ... Signed-off-by: Karel Zak --- diff --git a/include/pidfd-utils.h b/include/pidfd-utils.h index 0ee55f3ba..4f6f51b81 100644 --- a/include/pidfd-utils.h +++ b/include/pidfd-utils.h @@ -9,19 +9,6 @@ # include # include -/* - * If the kernel headers are too old to provide the syscall numbers, let's - * define them ourselves. This can be helpful while cross-compiling. - */ -#ifndef __NR_pidfd_send_signal -#define __NR_pidfd_send_signal 424 -#define SYS_pidfd_send_signal __NR_pidfd_send_signal -#endif -#ifndef __NR_pidfd_open -#define __NR_pidfd_open 434 -#define SYS_pidfd_open __NR_pidfd_open -#endif - # if defined(SYS_pidfd_send_signal) && defined(SYS_pidfd_open) # ifdef HAVE_SYS_PIDFD_H # include