symlink.c (27fd38c5226ed0f1712d071880fa8e739eb78650) symlink.c (6f3fc1070be028170b0f4c0c326480c9fcd1da3e)
1/*
2 * (C) 2001 Clemson University and The University of Chicago
3 *
4 * See COPYING in top-level directory.
5 */
6
7#include "protocol.h"
8#include "orangefs-kernel.h"
9#include "orangefs-bufmap.h"
10
1/*
2 * (C) 2001 Clemson University and The University of Chicago
3 *
4 * See COPYING in top-level directory.
5 */
6
7#include "protocol.h"
8#include "orangefs-kernel.h"
9#include "orangefs-bufmap.h"
10
11struct inode_operations orangefs_symlink_inode_operations = {
11const struct inode_operations orangefs_symlink_inode_operations = {
12 .readlink = generic_readlink,
13 .get_link = simple_get_link,
14 .setattr = orangefs_setattr,
15 .getattr = orangefs_getattr,
16 .listxattr = orangefs_listxattr,
17 .setxattr = generic_setxattr,
18 .permission = orangefs_permission,
19};
12 .readlink = generic_readlink,
13 .get_link = simple_get_link,
14 .setattr = orangefs_setattr,
15 .getattr = orangefs_getattr,
16 .listxattr = orangefs_listxattr,
17 .setxattr = generic_setxattr,
18 .permission = orangefs_permission,
19};