2 * linux/fs/ufs/symlink.c
4 * Only fast symlinks left here - the rest is done by generic code. AV, 1999
7 * Daniel Pirkl <daniel.pirkl@emai.cz>
8 * Charles University, Faculty of Mathematics and Physics
12 * linux/fs/ext2/symlink.c
14 * Copyright (C) 1992, 1993, 1994, 1995
15 * Remy Card (card@masi.ibp.fr)
16 * Laboratoire MASI - Institut Blaise Pascal
17 * Universite Pierre et Marie Curie (Paris VI)
21 * linux/fs/minix/symlink.c
23 * Copyright (C) 1991, 1992 Linus Torvalds
25 * ext2 symlink handling code
30 static int ufs_readlink(struct dentry
*dentry
, char *buffer
, int buflen
)
32 char *s
= (char *)dentry
->d_inode
->u
.ufs_i
.i_u1
.i_symlink
;
33 return vfs_readlink(dentry
, buffer
, buflen
, s
);
36 static int ufs_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
38 char *s
= (char *)dentry
->d_inode
->u
.ufs_i
.i_u1
.i_symlink
;
39 return vfs_follow_link(nd
, s
);
42 struct inode_operations ufs_fast_symlink_inode_operations
= {
43 readlink
: ufs_readlink
,
44 follow_link
: ufs_follow_link
,