symlink.c 546 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
 * JFFS2 -- Journalling Flash File System, Version 2.
 *
4
 * Copyright © 2001-2007 Red Hat, Inc.
L
Linus Torvalds 已提交
5 6 7 8 9 10 11 12 13
 *
 * Created by David Woodhouse <dwmw2@infradead.org>
 *
 * For licensing information, see the file 'LICENCE' in this directory.
 *
 */

#include "nodelist.h"

14
const struct inode_operations jffs2_symlink_inode_operations =
15
{
L
Linus Torvalds 已提交
16
	.readlink =	generic_readlink,
17
	.get_link =	simple_get_link,
18
	.setattr =	jffs2_setattr,
19 20
	.setxattr =	generic_setxattr,
	.getxattr =	generic_getxattr,
21
	.listxattr =	jffs2_listxattr,
22
	.removexattr =	generic_removexattr
L
Linus Torvalds 已提交
23
};