2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* JFFS2 -- Journalling Flash File System, Version 2.
|
|
|
|
*
|
2007-04-25 21:16:47 +08:00
|
|
|
* Copyright © 2001-2007 Red Hat, Inc.
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* Created by David Woodhouse <dwmw2@infradead.org>
|
|
|
|
*
|
|
|
|
* For licensing information, see the file 'LICENCE' in this directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nodelist.h"
|
|
|
|
|
2007-02-12 16:55:39 +08:00
|
|
|
const struct inode_operations jffs2_symlink_inode_operations =
|
2005-11-07 19:16:07 +08:00
|
|
|
{
|
2005-04-17 06:20:36 +08:00
|
|
|
.readlink = generic_readlink,
|
2015-11-17 23:20:54 +08:00
|
|
|
.get_link = simple_get_link,
|
2006-05-13 14:09:47 +08:00
|
|
|
.setattr = jffs2_setattr,
|
|
|
|
.setxattr = jffs2_setxattr,
|
|
|
|
.getxattr = jffs2_getxattr,
|
|
|
|
.listxattr = jffs2_listxattr,
|
|
|
|
.removexattr = jffs2_removexattr
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|