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