diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2015-05-02 13:37:52 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2015-05-10 22:20:15 -0400 |
commit | 6e77137b363b8d866ac29c5a0c95e953614fb2d8 (patch) | |
tree | 63a8918e58914c9ae8b35fbad37d5472e943405d /Documentation/filesystems/vfs.txt | |
parent | 8402752ecf829f67527072151fa680292a519193 (diff) | |
download | blackbird-op-linux-6e77137b363b8d866ac29c5a0c95e953614fb2d8.tar.gz blackbird-op-linux-6e77137b363b8d866ac29c5a0c95e953614fb2d8.zip |
don't pass nameidata to ->follow_link()
its only use is getting passed to nd_jump_link(), which can obtain
it from current->nameidata
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'Documentation/filesystems/vfs.txt')
-rw-r--r-- | Documentation/filesystems/vfs.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/filesystems/vfs.txt b/Documentation/filesystems/vfs.txt index 1c6b03ac2e5a..0dec8c880be6 100644 --- a/Documentation/filesystems/vfs.txt +++ b/Documentation/filesystems/vfs.txt @@ -350,7 +350,7 @@ struct inode_operations { int (*rename2) (struct inode *, struct dentry *, struct inode *, struct dentry *, unsigned int); int (*readlink) (struct dentry *, char __user *,int); - const char *(*follow_link) (struct dentry *, void **, struct nameidata *); + const char *(*follow_link) (struct dentry *, void **); void (*put_link) (struct dentry *, void *); int (*permission) (struct inode *, int); int (*get_acl)(struct inode *, int); |