diff options
author | Hridya Valsaraju <hridya@google.com> | 2020-02-01 17:46:23 -0800 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2020-02-05 18:23:13 -0500 |
commit | a20456aef80fa6dda500b46c4bd04e39135097c6 (patch) | |
tree | 4a92c2e994fb6a487e27fb33be38c10870026ea3 /security | |
parent | 98aa00345de54b8340dc2ddcd87f446d33387b5e (diff) | |
download | linux-a20456aef80fa6dda500b46c4bd04e39135097c6.tar.gz linux-a20456aef80fa6dda500b46c4bd04e39135097c6.tar.bz2 linux-a20456aef80fa6dda500b46c4bd04e39135097c6.zip |
selinux: fix typo in filesystem name
Correct the filesystem name to "binder" to enable genfscon per-file
labelling for binderfs.
Fixes: 7a4b5194747 ("selinux: allow per-file labelling for binderfs")
Signed-off-by: Hridya Valsaraju <hridya@google.com>
Acked-by: Stephen Smalley <sds@tycho.nsa.gov>
[PM: slight style changes to the subj/description]
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'security')
-rw-r--r-- | security/selinux/hooks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c index d9e8b2131a65..6ef606a3c7f9 100644 --- a/security/selinux/hooks.c +++ b/security/selinux/hooks.c @@ -698,7 +698,7 @@ static int selinux_set_mnt_opts(struct super_block *sb, if (!strcmp(sb->s_type->name, "debugfs") || !strcmp(sb->s_type->name, "tracefs") || - !strcmp(sb->s_type->name, "binderfs") || + !strcmp(sb->s_type->name, "binder") || !strcmp(sb->s_type->name, "pstore")) sbsec->flags |= SE_SBGENFS; |