summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2015-03-23 02:37:39 (GMT)
committerAl Viro <viro@zeniv.linux.org.uk>2015-05-11 02:18:29 (GMT)
commit37882db0546c759ff75b561c188539ac96fd0bfe (patch)
tree2bf5152d8ee7963d5d46d9fe25c1cb3c10be29c6 /fs
parentb4272646293b46fb8c7bc9b5176eb94d8141a278 (diff)
downloadlinux-37882db0546c759ff75b561c188539ac96fd0bfe.tar.xz
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 'fs')
-rw-r--r--fs/namei.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/namei.c b/fs/namei.c
index fe30d3b..7f20b40 100644
--- a/fs/namei.c
+++ b/fs/namei.c
@@ -871,7 +871,7 @@ follow_link(struct path *link, struct nameidata *nd, void **p)
touch_atime(link);
nd_set_link(nd, NULL);
- error = security_inode_follow_link(link->dentry, nd);
+ error = security_inode_follow_link(dentry);
if (error)
goto out_put_nd_path;