namei.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * namei.h
  4. *
  5. * Function prototypes
  6. *
  7. * Copyright (C) 2002, 2004 Oracle. All rights reserved.
  8. */
  9. #ifndef OCFS2_NAMEI_H
  10. #define OCFS2_NAMEI_H
  11. #define OCFS2_DIO_ORPHAN_PREFIX "dio-"
  12. #define OCFS2_DIO_ORPHAN_PREFIX_LEN 4
  13. extern const struct inode_operations ocfs2_dir_iops;
  14. struct dentry *ocfs2_get_parent(struct dentry *child);
  15. int ocfs2_orphan_del(struct ocfs2_super *osb,
  16. handle_t *handle,
  17. struct inode *orphan_dir_inode,
  18. struct inode *inode,
  19. struct buffer_head *orphan_dir_bh,
  20. bool dio);
  21. int ocfs2_create_inode_in_orphan(struct inode *dir,
  22. int mode,
  23. struct inode **new_inode);
  24. int ocfs2_add_inode_to_orphan(struct ocfs2_super *osb,
  25. struct inode *inode);
  26. int ocfs2_del_inode_from_orphan(struct ocfs2_super *osb,
  27. struct inode *inode, struct buffer_head *di_bh,
  28. int update_isize, loff_t end);
  29. int ocfs2_mv_orphaned_inode_to_new(struct inode *dir,
  30. struct inode *new_inode,
  31. struct dentry *new_dentry);
  32. #endif /* OCFS2_NAMEI_H */