1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /* -*- mode: c; c-basic-offset: 8; -*-
3 * vim: noexpandtab sw=8 ts=8 sts=0:
9 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
15 #define OCFS2_DIO_ORPHAN_PREFIX "dio-"
16 #define OCFS2_DIO_ORPHAN_PREFIX_LEN 4
18 extern const struct inode_operations ocfs2_dir_iops
;
20 struct dentry
*ocfs2_get_parent(struct dentry
*child
);
22 int ocfs2_orphan_del(struct ocfs2_super
*osb
,
24 struct inode
*orphan_dir_inode
,
26 struct buffer_head
*orphan_dir_bh
,
28 int ocfs2_create_inode_in_orphan(struct inode
*dir
,
30 struct inode
**new_inode
);
31 int ocfs2_add_inode_to_orphan(struct ocfs2_super
*osb
,
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
);
40 #endif /* OCFS2_NAMEI_H */