From: Adrian Bunk Date: Mon, 28 Jan 2008 22:11:52 +0000 (+0200) Subject: selinux: make selinux_set_mnt_opts() static X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=374ea019cacfa8b69ae49eea993b74cb5968970b;p=linux-beck.git selinux: make selinux_set_mnt_opts() static selinux_set_mnt_opts() can become static. Signed-off-by: Adrian Bunk Signed-off-by: James Morris --- diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c index 81bfcf114484..be6de0b8734f 100644 --- a/security/selinux/hooks.c +++ b/security/selinux/hooks.c @@ -583,8 +583,8 @@ static int bad_option(struct superblock_security_struct *sbsec, char flag, * Allow filesystems with binary mount data to explicitly set mount point * labeling information. */ -int selinux_set_mnt_opts(struct super_block *sb, char **mount_options, - int *flags, int num_opts) +static int selinux_set_mnt_opts(struct super_block *sb, char **mount_options, + int *flags, int num_opts) { int rc = 0, i; struct task_security_struct *tsec = current->security;