Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0-or-later
0002 /*
0003  *   Copyright (C) Christoph Hellwig, 2001-2002
0004  */
0005 
0006 #include <linux/fs.h>
0007 #include "jfs_incore.h"
0008 #include "jfs_inode.h"
0009 #include "jfs_xattr.h"
0010 
0011 const struct inode_operations jfs_fast_symlink_inode_operations = {
0012     .get_link   = simple_get_link,
0013     .setattr    = jfs_setattr,
0014     .listxattr  = jfs_listxattr,
0015 };
0016 
0017 const struct inode_operations jfs_symlink_inode_operations = {
0018     .get_link   = page_get_link,
0019     .setattr    = jfs_setattr,
0020     .listxattr  = jfs_listxattr,
0021 };
0022