1
2
3
4
5
6
7
8
9
10
11
12 #ifndef OCFS2_NAMEI_H
13 #define OCFS2_NAMEI_H
14
15 #define OCFS2_DIO_ORPHAN_PREFIX "dio-"
16 #define OCFS2_DIO_ORPHAN_PREFIX_LEN 4
17
18 extern const struct inode_operations ocfs2_dir_iops;
19
20 struct dentry *ocfs2_get_parent(struct dentry *child);
21
22 int ocfs2_orphan_del(struct ocfs2_super *osb,
23 handle_t *handle,
24 struct inode *orphan_dir_inode,
25 struct inode *inode,
26 struct buffer_head *orphan_dir_bh,
27 bool dio);
28 int ocfs2_create_inode_in_orphan(struct inode *dir,
29 int mode,
30 struct inode **new_inode);
31 int ocfs2_add_inode_to_orphan(struct ocfs2_super *osb,
32 struct inode *inode);
33 int ocfs2_del_inode_from_orphan(struct ocfs2_super *osb,
34 struct inode *inode, struct buffer_head *di_bh,
35 int update_isize, loff_t end);
36 int ocfs2_mv_orphaned_inode_to_new(struct inode *dir,
37 struct inode *new_inode,
38 struct dentry *new_dentry);
39
40 #endif