symlink.c 546 B

1234567891011121314151617181920212223
  1. /*
  2. * JFFS2 -- Journalling Flash File System, Version 2.
  3. *
  4. * Copyright © 2001-2007 Red Hat, Inc.
  5. *
  6. * Created by David Woodhouse <dwmw2@infradead.org>
  7. *
  8. * For licensing information, see the file 'LICENCE' in this directory.
  9. *
  10. */
  11. #include "nodelist.h"
  12. const struct inode_operations jffs2_symlink_inode_operations =
  13. {
  14. .readlink = generic_readlink,
  15. .follow_link = simple_follow_link,
  16. .setattr = jffs2_setattr,
  17. .setxattr = jffs2_setxattr,
  18. .getxattr = jffs2_getxattr,
  19. .listxattr = jffs2_listxattr,
  20. .removexattr = jffs2_removexattr
  21. };