2015-07-17 22:38:15 +08:00
|
|
|
/*
|
|
|
|
* (C) 2001 Clemson University and The University of Chicago
|
|
|
|
*
|
|
|
|
* See COPYING in top-level directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "protocol.h"
|
2015-12-05 01:56:14 +08:00
|
|
|
#include "orangefs-kernel.h"
|
|
|
|
#include "orangefs-bufmap.h"
|
2015-07-17 22:38:15 +08:00
|
|
|
|
2016-05-15 06:46:32 +08:00
|
|
|
const struct inode_operations orangefs_symlink_inode_operations = {
|
2016-03-15 03:30:03 +08:00
|
|
|
.get_link = simple_get_link,
|
2015-11-25 04:12:14 +08:00
|
|
|
.setattr = orangefs_setattr,
|
|
|
|
.getattr = orangefs_getattr,
|
|
|
|
.listxattr = orangefs_listxattr,
|
2016-01-31 02:46:54 +08:00
|
|
|
.permission = orangefs_permission,
|
2015-07-17 22:38:15 +08:00
|
|
|
};
|