diff options
author | NeilBrown <neilb@suse.de> | 2015-03-22 22:37:39 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2015-05-10 22:18:29 -0400 |
commit | 37882db0546c759ff75b561c188539ac96fd0bfe (patch) | |
tree | 2bf5152d8ee7963d5d46d9fe25c1cb3c10be29c6 /security/selinux/hooks.c | |
parent | b4272646293b46fb8c7bc9b5176eb94d8141a278 (diff) |
SECURITY: remove nameidata arg from inode_follow_link.
No ->inode_follow_link() methods use the nameidata arg, and
it is about to become private to namei.c.
So remove from all inode_follow_link() functions.
Signed-off-by: NeilBrown <neilb@suse.de>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'security/selinux/hooks.c')
-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 7dade28affba..801622947282 100644 --- a/security/selinux/hooks.c +++ b/security/selinux/hooks.c | |||
@@ -2861,7 +2861,7 @@ static int selinux_inode_readlink(struct dentry *dentry) | |||
2861 | return dentry_has_perm(cred, dentry, FILE__READ); | 2861 | return dentry_has_perm(cred, dentry, FILE__READ); |
2862 | } | 2862 | } |
2863 | 2863 | ||
2864 | static int selinux_inode_follow_link(struct dentry *dentry, struct nameidata *nameidata) | 2864 | static int selinux_inode_follow_link(struct dentry *dentry) |
2865 | { | 2865 | { |
2866 | const struct cred *cred = current_cred(); | 2866 | const struct cred *cred = current_cred(); |
2867 | 2867 | ||