blob: 8ce2f240125b39803b4ebf2d681b6a95d40c33f5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * JFFS2 -- Journalling Flash File System, Version 2.
3 *
David Woodhousec00c3102007-04-25 14:16:47 +01004 * Copyright © 2001-2007 Red Hat, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Created by David Woodhouse <dwmw2@infradead.org>
7 *
8 * For licensing information, see the file 'LICENCE' in this directory.
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include "nodelist.h"
13
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -080014const struct inode_operations jffs2_symlink_inode_operations =
Thomas Gleixner182ec4e2005-11-07 11:16:07 +000015{
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 .readlink = generic_readlink,
Al Viroa8db1492015-05-02 10:21:20 -040017 .follow_link = simple_follow_link,
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090018 .setattr = jffs2_setattr,
19 .setxattr = jffs2_setxattr,
20 .getxattr = jffs2_getxattr,
21 .listxattr = jffs2_listxattr,
22 .removexattr = jffs2_removexattr
Linus Torvalds1da177e2005-04-16 15:20:36 -070023};