Blame view

fs/jfs/symlink.c 1.62 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
  /*
1868f4aa5   Dave Kleikamp   JFS: fix sparse w...
2
   *   Copyright (C) Christoph Hellwig, 2001-2002
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3
4
5
   *
   *   This program is free software;  you can redistribute it and/or modify
   *   it under the terms of the GNU General Public License as published by
63f83c9fc   Dave Kleikamp   JFS: White space ...
6
   *   the Free Software Foundation; either version 2 of the License, or
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
7
   *   (at your option) any later version.
63f83c9fc   Dave Kleikamp   JFS: White space ...
8
   *
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
9
10
11
12
13
14
   *   This program is distributed in the hope that it will be useful,
   *   but WITHOUT ANY WARRANTY;  without even the implied warranty of
   *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
   *   the GNU General Public License for more details.
   *
   *   You should have received a copy of the GNU General Public License
63f83c9fc   Dave Kleikamp   JFS: White space ...
15
   *   along with this program;  if not, write to the Free Software
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
16
17
18
19
20
21
   *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
   */
  
  #include <linux/fs.h>
  #include <linux/namei.h>
  #include "jfs_incore.h"
1868f4aa5   Dave Kleikamp   JFS: fix sparse w...
22
  #include "jfs_inode.h"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
23
  #include "jfs_xattr.h"
008b150a3   Al Viro   [PATCH] Fix up sy...
24
  static void *jfs_follow_link(struct dentry *dentry, struct nameidata *nd)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
25
26
27
  {
  	char *s = JFS_IP(dentry->d_inode)->i_inline;
  	nd_set_link(nd, s);
008b150a3   Al Viro   [PATCH] Fix up sy...
28
  	return NULL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
29
  }
c7f2e1f0a   Dmitry Monakhov   jfs: add jfs spec...
30
  const struct inode_operations jfs_fast_symlink_inode_operations = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
31
32
  	.readlink	= generic_readlink,
  	.follow_link	= jfs_follow_link,
c7f2e1f0a   Dmitry Monakhov   jfs: add jfs spec...
33
34
35
36
37
38
39
40
41
42
43
44
  	.setattr	= jfs_setattr,
  	.setxattr	= jfs_setxattr,
  	.getxattr	= jfs_getxattr,
  	.listxattr	= jfs_listxattr,
  	.removexattr	= jfs_removexattr,
  };
  
  const struct inode_operations jfs_symlink_inode_operations = {
  	.readlink	= generic_readlink,
  	.follow_link	= page_follow_link_light,
  	.put_link	= page_put_link,
  	.setattr	= jfs_setattr,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
45
46
47
48
49
  	.setxattr	= jfs_setxattr,
  	.getxattr	= jfs_getxattr,
  	.listxattr	= jfs_listxattr,
  	.removexattr	= jfs_removexattr,
  };