diff options
Diffstat (limited to 'kernel/fs/autofs4/symlink.c')
-rw-r--r-- | kernel/fs/autofs4/symlink.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/kernel/fs/autofs4/symlink.c b/kernel/fs/autofs4/symlink.c index de58cc7b8..da0c33481 100644 --- a/kernel/fs/autofs4/symlink.c +++ b/kernel/fs/autofs4/symlink.c @@ -12,14 +12,13 @@ #include "autofs_i.h" -static void *autofs4_follow_link(struct dentry *dentry, struct nameidata *nd) +static const char *autofs4_follow_link(struct dentry *dentry, void **cookie) { struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb); struct autofs_info *ino = autofs4_dentry_ino(dentry); if (ino && !autofs4_oz_mode(sbi)) ino->last_used = jiffies; - nd_set_link(nd, d_inode(dentry)->i_private); - return NULL; + return d_inode(dentry)->i_private; } const struct inode_operations autofs4_symlink_inode_operations = { |