aboutsummaryrefslogtreecommitdiff
path: root/fs/autofs4/symlink.c
diff options
context:
space:
mode:
authorGravatar Al Viro <viro@zeniv.linux.org.uk> 2011-01-17 00:47:38 -0500
committerGravatar Al Viro <viro@zeniv.linux.org.uk> 2011-01-18 01:21:27 -0500
commit292c5ee802e9b969b84ee671a5e3001d94230f5b (patch)
tree616b0a583d17c50aedbb87082943248333d63c2b /fs/autofs4/symlink.c
parentautofs4 - fix debug print in autofs4_lookup() (diff)
downloadlinux-292c5ee802e9b969b84ee671a5e3001d94230f5b.tar.gz
linux-292c5ee802e9b969b84ee671a5e3001d94230f5b.tar.bz2
linux-292c5ee802e9b969b84ee671a5e3001d94230f5b.zip
autofs4: keep symlink body in inode->i_private
gets rid of all ->free()/->u.symlink machinery in autofs; we simply keep symlink bodies in inode->i_private and free them in ->evict_inode(). Acked-by: Ian Kent <raven@themaw.net> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/autofs4/symlink.c')
-rw-r--r--fs/autofs4/symlink.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/autofs4/symlink.c b/fs/autofs4/symlink.c
index b4ea82934d2e..f27c094a1919 100644
--- a/fs/autofs4/symlink.c
+++ b/fs/autofs4/symlink.c
@@ -14,8 +14,7 @@
static void *autofs4_follow_link(struct dentry *dentry, struct nameidata *nd)
{
- struct autofs_info *ino = autofs4_dentry_ino(dentry);
- nd_set_link(nd, (char *)ino->u.symlink);
+ nd_set_link(nd, dentry->d_inode->i_private);
return NULL;
}