symlink.c 499 B

12345678910111213141516171819202122
  1. // SPDX-License-Identifier: GPL-2.0-or-later
  2. /*
  3. * Copyright (C) Christoph Hellwig, 2001-2002
  4. */
  5. #include <linux/fs.h>
  6. #include "jfs_incore.h"
  7. #include "jfs_inode.h"
  8. #include "jfs_xattr.h"
  9. const struct inode_operations jfs_fast_symlink_inode_operations = {
  10. .get_link = simple_get_link,
  11. .setattr = jfs_setattr,
  12. .listxattr = jfs_listxattr,
  13. };
  14. const struct inode_operations jfs_symlink_inode_operations = {
  15. .get_link = page_get_link,
  16. .setattr = jfs_setattr,
  17. .listxattr = jfs_listxattr,
  18. };