docs: move core-api/ioctl.rst to driver-api/
[linux-block.git] / fs / ocfs2 / namei.h
CommitLineData
328970de 1/* SPDX-License-Identifier: GPL-2.0-or-later */
ccd979bd
MF
2/* -*- mode: c; c-basic-offset: 8; -*-
3 * vim: noexpandtab sw=8 ts=8 sts=0:
4 *
5 * namei.h
6 *
7 * Function prototypes
8 *
9 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
ccd979bd
MF
10 */
11
12#ifndef OCFS2_NAMEI_H
13#define OCFS2_NAMEI_H
14
30edc43c
JQ
15#define OCFS2_DIO_ORPHAN_PREFIX "dio-"
16#define OCFS2_DIO_ORPHAN_PREFIX_LEN 4
17
92e1d5be 18extern const struct inode_operations ocfs2_dir_iops;
ccd979bd
MF
19
20struct dentry *ocfs2_get_parent(struct dentry *child);
21
ccd979bd 22int ocfs2_orphan_del(struct ocfs2_super *osb,
1fabe148 23 handle_t *handle,
ccd979bd
MF
24 struct inode *orphan_dir_inode,
25 struct inode *inode,
06ee5c75
JQ
26 struct buffer_head *orphan_dir_bh,
27 bool dio);
bc13d347
TM
28int ocfs2_create_inode_in_orphan(struct inode *dir,
29 int mode,
30 struct inode **new_inode);
06ee5c75
JQ
31int ocfs2_add_inode_to_orphan(struct ocfs2_super *osb,
32 struct inode *inode);
33int ocfs2_del_inode_from_orphan(struct ocfs2_super *osb,
cf1776a9
JQ
34 struct inode *inode, struct buffer_head *di_bh,
35 int update_isize, loff_t end);
bc13d347
TM
36int ocfs2_mv_orphaned_inode_to_new(struct inode *dir,
37 struct inode *new_inode,
38 struct dentry *new_dentry);
ccd979bd 39
ccd979bd 40#endif /* OCFS2_NAMEI_H */