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