From: Geliang Tang Date: Wed, 21 Oct 2015 21:44:27 +0000 (-0400) Subject: selinux: ioctl_has_perm should be static X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=1d2a168a085f1c65b895f258ee11a52813d25af6;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git selinux: ioctl_has_perm should be static Fixes the following sparse warning: security/selinux/hooks.c:3242:5: warning: symbol 'ioctl_has_perm' was not declared. Should it be static? Signed-off-by: Geliang Tang Acked-by: Jeff Vander Stoep Acked-by: Stephen Smalley Signed-off-by: Paul Moore --- diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c index 1530f661ef85..799d15aa35f9 100644 --- a/security/selinux/hooks.c +++ b/security/selinux/hooks.c @@ -3235,7 +3235,7 @@ static void selinux_file_free_security(struct file *file) * Check whether a task has the ioctl permission and cmd * operation to an inode. */ -int ioctl_has_perm(const struct cred *cred, struct file *file, +static int ioctl_has_perm(const struct cred *cred, struct file *file, u32 requested, u16 cmd) { struct common_audit_data ad;