From: Jarkko Sakkinen Date: Fri, 14 Oct 2011 10:16:24 +0000 (+0300) Subject: Smack: compilation fix X-Git-Tag: firefly_0821_release~3680^2~4222^2~4 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=16014d87509e26d6ed6935adbbf437a571fb5870;p=firefly-linux-kernel-4.4.55.git Smack: compilation fix On some build configurations PER_CLEAR_ON_SETID symbol was not found when compiling smack_lsm.c. This patch fixes the issue by explicitly doing #include . Signed-off-by: Jarkko Sakkinen Signed-off-by: Casey Schaufler --- diff --git a/security/smack/smack_lsm.c b/security/smack/smack_lsm.c index d55b991268d5..7db62b48eb42 100644 --- a/security/smack/smack_lsm.c +++ b/security/smack/smack_lsm.c @@ -35,6 +35,7 @@ #include #include #include +#include #include "smack.h" #define task_security(task) (task_cred_xxx((task), security))