From e26573ae8e491675a03fd02108a786723cd4e687 Mon Sep 17 00:00:00 2001 From: Auke Kok Date: Wed, 10 May 2023 16:46:14 -0400 Subject: [PATCH] Fix argument test for __posix_acl_valid. The argument is fixed to be user_namespace, instead of user_ns. Signed-off-by: Auke Kok --- kmod/src/Makefile.kernelcompat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kmod/src/Makefile.kernelcompat b/kmod/src/Makefile.kernelcompat index 570be1e5..f1e0b8bb 100644 --- a/kmod/src/Makefile.kernelcompat +++ b/kmod/src/Makefile.kernelcompat @@ -50,7 +50,7 @@ endif # # Added user_ns argument to posix_acl_valid # -ifneq (,$(shell grep 'posix_acl_valid.*user_ns,' include/linux/posix_acl.h)) +ifneq (,$(shell grep 'posix_acl_valid.*user_namespace' include/linux/posix_acl.h)) ccflags-y += -DKC_POSIX_ACL_VALID_USER_NS endif