Blame view

fs/autofs4/symlink.c 776 Bytes
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
  /* -*- c -*- --------------------------------------------------------------- *
   *
   * linux/fs/autofs/symlink.c
   *
   *  Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved
   *
   * This file is part of the Linux kernel and is made available under
   * the terms of the GNU General Public License, version 2, or at your
   * option, any later version, incorporated herein by reference.
   *
   * ------------------------------------------------------------------------- */
  
  #include "autofs_i.h"
008b150a3   Al Viro   [PATCH] Fix up sy...
14
  static void *autofs4_follow_link(struct dentry *dentry, struct nameidata *nd)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15
  {
292c5ee80   Al Viro   autofs4: keep sym...
16
  	nd_set_link(nd, dentry->d_inode->i_private);
008b150a3   Al Viro   [PATCH] Fix up sy...
17
  	return NULL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
18
  }
754661f14   Arjan van de Ven   [PATCH] mark stru...
19
  const struct inode_operations autofs4_symlink_inode_operations = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
20
21
22
  	.readlink	= generic_readlink,
  	.follow_link	= autofs4_follow_link
  };