diff options
author | NeilBrown <neilb@suse.de> | 2015-03-23 02:37:39 (GMT) |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2015-05-11 02:18:29 (GMT) |
commit | 37882db0546c759ff75b561c188539ac96fd0bfe (patch) | |
tree | 2bf5152d8ee7963d5d46d9fe25c1cb3c10be29c6 /fs | |
parent | b4272646293b46fb8c7bc9b5176eb94d8141a278 (diff) | |
download | linux-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |