]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - fs/jffs2/symlink.c
replace ->follow_link() with new method that could stay in RCU mode
[mirror_ubuntu-artful-kernel.git] / fs / jffs2 / symlink.c
1 /*
2 * JFFS2 -- Journalling Flash File System, Version 2.
3 *
4 * Copyright © 2001-2007 Red Hat, Inc.
5 *
6 * Created by David Woodhouse <dwmw2@infradead.org>
7 *
8 * For licensing information, see the file 'LICENCE' in this directory.
9 *
10 */
11
12 #include "nodelist.h"
13
14 const struct inode_operations jffs2_symlink_inode_operations =
15 {
16 .readlink = generic_readlink,
17 .get_link = simple_get_link,
18 .setattr = jffs2_setattr,
19 .setxattr = jffs2_setxattr,
20 .getxattr = jffs2_getxattr,
21 .listxattr = jffs2_listxattr,
22 .removexattr = jffs2_removexattr
23 };