From: Mukesh Ojha Date: Wed, 27 Mar 2019 07:50:18 +0000 (+0530) Subject: Yama: mark function as static X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ecb8e74dac1aaeea4005c9d8f21337f9423f3d8b;p=linux.git Yama: mark function as static Sparse complains yama_task_prctl can be static. Fix it by making it static. Signed-off-by: Mukesh Ojha Signed-off-by: James Morris --- diff --git a/security/yama/yama_lsm.c b/security/yama/yama_lsm.c index 06b14a57b0a40..efac68556b457 100644 --- a/security/yama/yama_lsm.c +++ b/security/yama/yama_lsm.c @@ -222,7 +222,7 @@ static void yama_task_free(struct task_struct *task) * Return 0 on success, -ve on error. -ENOSYS is returned when Yama * does not handle the given option. */ -int yama_task_prctl(int option, unsigned long arg2, unsigned long arg3, +static int yama_task_prctl(int option, unsigned long arg2, unsigned long arg3, unsigned long arg4, unsigned long arg5) { int rc = -ENOSYS;