symlink.c 497 B

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