From: Peter Seiderer Date: Wed, 15 Jan 2025 10:52:11 +0000 (+0100) Subject: selftests: pid_namespace: add missing sys/mount.h include in pid_max.c X-Git-Tag: v6.16-rc1~203^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=11f6dcf784533fd72ceddbc69884f8d7f82109fd;p=thirdparty%2Fkernel%2Flinux.git selftests: pid_namespace: add missing sys/mount.h include in pid_max.c Fix compile on openSUSE Tumbleweed (gcc-14.2.1, glibc-2.40): - add missing sys/mount.h include Fixes: pid_max.c: In function ‘pid_max_cb’: pid_max.c:42:15: error: implicit declaration of function ‘mount’ [-Wimplicit-function-declaration] 42 | ret = mount("", "/", NULL, MS_PRIVATE | MS_REC, 0); | ^~~~~ Link: https://lore.kernel.org/r/20250115105211.390370-3-ps.report@gmx.net Signed-off-by: Peter Seiderer Reviewed-by: T.J. Mercier Signed-off-by: Shuah Khan --- diff --git a/tools/testing/selftests/pid_namespace/pid_max.c b/tools/testing/selftests/pid_namespace/pid_max.c index 51c414faabb0f..96f274f0582b6 100644 --- a/tools/testing/selftests/pid_namespace/pid_max.c +++ b/tools/testing/selftests/pid_namespace/pid_max.c @@ -10,6 +10,7 @@ #include #include #include +#include #include #include "../kselftest_harness.h"