/* -*- c -*- --------------------------------------------------------------- *1*2* linux/fs/autofs/symlink.c3*4* Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved5*6* This file is part of the Linux kernel and is made available under7* the terms of the GNU General Public License, version 2, or at your8* option, any later version, incorporated herein by reference.9*10* ------------------------------------------------------------------------- */1112#include "autofs_i.h"1314static void *autofs4_follow_link(struct dentry *dentry, struct nameidata *nd)15{16nd_set_link(nd, dentry->d_inode->i_private);17return NULL;18}1920const struct inode_operations autofs4_symlink_inode_operations = {21.readlink = generic_readlink,22.follow_link = autofs4_follow_link23};242526