GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / fs / ufs / symlink.c
blobd283628b4778bc4fef3a07d8bf8b267458c1e389
1 /*
2 * linux/fs/ufs/symlink.c
4 * Only fast symlinks left here - the rest is done by generic code. AV, 1999
6 * Copyright (C) 1998
7 * Daniel Pirkl <daniel.pirkl@emai.cz>
8 * Charles University, Faculty of Mathematics and Physics
10 * from
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)
19 * from
21 * linux/fs/minix/symlink.c
23 * Copyright (C) 1991, 1992 Linus Torvalds
25 * ext2 symlink handling code
28 #include <linux/fs.h>
29 #include <linux/namei.h>
31 #include "ufs_fs.h"
32 #include "ufs.h"
35 static void *ufs_follow_link(struct dentry *dentry, struct nameidata *nd)
37 struct ufs_inode_info *p = UFS_I(dentry->d_inode);
38 nd_set_link(nd, (char*)p->i_u1.i_symlink);
39 return NULL;
42 const struct inode_operations ufs_fast_symlink_inode_operations = {
43 .readlink = generic_readlink,
44 .follow_link = ufs_follow_link,
45 .setattr = ufs_setattr,
48 const struct inode_operations ufs_symlink_inode_operations = {
49 .readlink = generic_readlink,
50 .follow_link = page_follow_link_light,
51 .put_link = page_put_link,
52 .setattr = ufs_setattr,