diff options
author | John Johansen <john.johansen@canonical.com> | 2017-01-16 00:42:28 -0800 |
---|---|---|
committer | John Johansen <john.johansen@canonical.com> | 2017-01-16 01:18:24 -0800 |
commit | efeee83a7060c225fac5ac794e9c11183c267f81 (patch) | |
tree | 02e0821e9b5baea604bc248c6f64b1d105091cc4 /security/apparmor/include/lib.h | |
parent | 680cd62e910d7b7e3c1fcde6ba67c6ca770c2286 (diff) | |
download | talos-obmc-linux-efeee83a7060c225fac5ac794e9c11183c267f81.tar.gz talos-obmc-linux-efeee83a7060c225fac5ac794e9c11183c267f81.zip |
apparmor: rename mediated_filesystem() to path_mediated_fs()
Rename to indicate the test is only about whether path mediation is used,
not whether other types of mediation might be used.
Signed-off-by: John Johansen <john.johansen@canonical.com>
Diffstat (limited to 'security/apparmor/include/lib.h')
-rw-r--r-- | security/apparmor/include/lib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/apparmor/include/lib.h b/security/apparmor/include/lib.h index d507c73ac9b8..4ff09ed813b5 100644 --- a/security/apparmor/include/lib.h +++ b/security/apparmor/include/lib.h @@ -111,7 +111,7 @@ static inline unsigned int aa_dfa_null_transition(struct aa_dfa *dfa, return aa_dfa_next(dfa, start, 0); } -static inline bool mediated_filesystem(struct dentry *dentry) +static inline bool path_mediated_fs(struct dentry *dentry) { return !(dentry->d_sb->s_flags & MS_NOUSER); } |