]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * linux/fs/ufs/symlink.c | |
3 | * | |
4 | * Only fast symlinks left here - the rest is done by generic code. AV, 1999 | |
5 | * | |
6 | * Copyright (C) 1998 | |
7 | * Daniel Pirkl <[email protected]> | |
8 | * Charles University, Faculty of Mathematics and Physics | |
9 | * | |
10 | * from | |
11 | * | |
12 | * linux/fs/ext2/symlink.c | |
13 | * | |
14 | * Copyright (C) 1992, 1993, 1994, 1995 | |
15 | * Remy Card ([email protected]) | |
16 | * Laboratoire MASI - Institut Blaise Pascal | |
17 | * Universite Pierre et Marie Curie (Paris VI) | |
18 | * | |
19 | * from | |
20 | * | |
21 | * linux/fs/minix/symlink.c | |
22 | * | |
23 | * Copyright (C) 1991, 1992 Linus Torvalds | |
24 | * | |
25 | * ext2 symlink handling code | |
26 | */ | |
27 | ||
28 | #include <linux/fs.h> | |
29 | #include <linux/namei.h> | |
30 | #include <linux/ufs_fs.h> | |
31 | ||
008b150a | 32 | static void *ufs_follow_link(struct dentry *dentry, struct nameidata *nd) |
1da177e4 LT |
33 | { |
34 | struct ufs_inode_info *p = UFS_I(dentry->d_inode); | |
35 | nd_set_link(nd, (char*)p->i_u1.i_symlink); | |
008b150a | 36 | return NULL; |
1da177e4 LT |
37 | } |
38 | ||
c5ef1c42 | 39 | const struct inode_operations ufs_fast_symlink_inode_operations = { |
1da177e4 LT |
40 | .readlink = generic_readlink, |
41 | .follow_link = ufs_follow_link, | |
42 | }; |