aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4/symlink.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2015-05-02 10:13:58 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2015-05-10 22:18:23 -0400
commit75e7566bea0c9b2a257441b66294be94863ef929 (patch)
tree96df7c9aeb61071973455e8d52d9742634d3d6e8 /fs/ext4/symlink.c
parent115b4205120dd5347858837dcdc17de0750bddef (diff)
downloadlinux-75e7566bea0c9b2a257441b66294be94863ef929.tar.gz
ext4: switch to simple_follow_link()
for fast symlinks only, of course... Reviewed-by: Jan Kara <jack@suse.cz> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ext4/symlink.c')
-rw-r--r--fs/ext4/symlink.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/fs/ext4/symlink.c b/fs/ext4/symlink.c
index 49575ff7a7bbed..4264fb1e341a3c 100644
--- a/fs/ext4/symlink.c
+++ b/fs/ext4/symlink.c
@@ -106,13 +106,6 @@ const struct inode_operations ext4_encrypted_symlink_inode_operations = {
};
#endif
-static void *ext4_follow_fast_link(struct dentry *dentry, struct nameidata *nd)
-{
- struct ext4_inode_info *ei = EXT4_I(d_inode(dentry));
- nd_set_link(nd, (char *) ei->i_data);
- return NULL;
-}
-
const struct inode_operations ext4_symlink_inode_operations = {
.readlink = generic_readlink,
.follow_link = page_follow_link_light,
@@ -126,7 +119,7 @@ const struct inode_operations ext4_symlink_inode_operations = {
const struct inode_operations ext4_fast_symlink_inode_operations = {
.readlink = generic_readlink,
- .follow_link = ext4_follow_fast_link,
+ .follow_link = simple_follow_link,
.setattr = ext4_setattr,
.setxattr = generic_setxattr,
.getxattr = generic_getxattr,