symlink.c 1.3 KB
Newer Older
1
/*
2
 *  linux/fs/ext4/symlink.c
3 4 5 6 7 8 9 10 11 12 13 14 15 16
 *
 * Only fast symlinks left here - the rest is done by generic code. AV, 1999
 *
 * Copyright (C) 1992, 1993, 1994, 1995
 * Remy Card (card@masi.ibp.fr)
 * Laboratoire MASI - Institut Blaise Pascal
 * Universite Pierre et Marie Curie (Paris VI)
 *
 *  from
 *
 *  linux/fs/minix/symlink.c
 *
 *  Copyright (C) 1991, 1992  Linus Torvalds
 *
17
 *  ext4 symlink handling code
18 19 20
 */

#include <linux/fs.h>
21
#include <linux/jbd2.h>
22
#include <linux/namei.h>
23
#include "ext4.h"
24 25
#include "xattr.h"

26
static void *ext4_follow_link(struct dentry *dentry, struct nameidata *nd)
27
{
28
	struct ext4_inode_info *ei = EXT4_I(dentry->d_inode);
29
	nd_set_link(nd, (char *) ei->i_data);
30 31 32
	return NULL;
}

33
const struct inode_operations ext4_symlink_inode_operations = {
34 35 36
	.readlink	= generic_readlink,
	.follow_link	= page_follow_link_light,
	.put_link	= page_put_link,
37
#ifdef CONFIG_EXT4DEV_FS_XATTR
38 39
	.setxattr	= generic_setxattr,
	.getxattr	= generic_getxattr,
40
	.listxattr	= ext4_listxattr,
41 42 43 44
	.removexattr	= generic_removexattr,
#endif
};

45
const struct inode_operations ext4_fast_symlink_inode_operations = {
46
	.readlink	= generic_readlink,
47 48
	.follow_link	= ext4_follow_link,
#ifdef CONFIG_EXT4DEV_FS_XATTR
49 50
	.setxattr	= generic_setxattr,
	.getxattr	= generic_getxattr,
51
	.listxattr	= ext4_listxattr,
52 53 54
	.removexattr	= generic_removexattr,
#endif
};