symlink.c 454 B

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