ocfs2: Remove special casing for inode creation in ocfs2_dentry_attach_lock()
[deliverable/linux.git] / fs / ocfs2 / dlmglue.h
CommitLineData
ccd979bd
MF
1/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * dlmglue.h
5 *
6 * description here
7 *
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public
21 * License along with this program; if not, write to the
22 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 * Boston, MA 021110-1307, USA.
24 */
25
26
27#ifndef DLMGLUE_H
28#define DLMGLUE_H
29
d680efe9
MF
30#include "dcache.h"
31
ca4d147e 32#define OCFS2_LVB_VERSION 3
ccd979bd
MF
33
34struct ocfs2_meta_lvb {
35 __be32 lvb_version;
36 __be32 lvb_iclusters;
37 __be32 lvb_iuid;
38 __be32 lvb_igid;
39 __be64 lvb_iatime_packed;
40 __be64 lvb_ictime_packed;
41 __be64 lvb_imtime_packed;
42 __be64 lvb_isize;
43 __be16 lvb_imode;
44 __be16 lvb_inlink;
ca4d147e
HP
45 __be32 lvb_iattr;
46 __be32 lvb_reserved[2];
ccd979bd
MF
47};
48
49/* ocfs2_meta_lock_full() and ocfs2_data_lock_full() 'arg_flags' flags */
50/* don't wait on recovery. */
51#define OCFS2_META_LOCK_RECOVERY (0x01)
52/* Instruct the dlm not to queue ourselves on the other node. */
53#define OCFS2_META_LOCK_NOQUEUE (0x02)
54/* don't block waiting for the vote thread, instead return -EAGAIN */
55#define OCFS2_LOCK_NONBLOCK (0x04)
56
57int ocfs2_dlm_init(struct ocfs2_super *osb);
58void ocfs2_dlm_shutdown(struct ocfs2_super *osb);
59void ocfs2_lock_res_init_once(struct ocfs2_lock_res *res);
60void ocfs2_inode_lock_res_init(struct ocfs2_lock_res *res,
61 enum ocfs2_lock_type type,
62 struct inode *inode);
d680efe9
MF
63void ocfs2_dentry_lock_res_init(struct ocfs2_dentry_lock *dl,
64 u64 parent, struct inode *inode);
ccd979bd
MF
65void ocfs2_lock_res_free(struct ocfs2_lock_res *res);
66int ocfs2_create_new_inode_locks(struct inode *inode);
d680efe9
MF
67int ocfs2_create_new_lock(struct ocfs2_super *osb,
68 struct ocfs2_lock_res *lockres, int ex);
ccd979bd
MF
69int ocfs2_drop_inode_locks(struct inode *inode);
70int ocfs2_data_lock_full(struct inode *inode,
71 int write,
72 int arg_flags);
73#define ocfs2_data_lock(inode, write) ocfs2_data_lock_full(inode, write, 0)
74int ocfs2_data_lock_with_page(struct inode *inode,
75 int write,
76 struct page *page);
77void ocfs2_data_unlock(struct inode *inode,
78 int write);
79int ocfs2_rw_lock(struct inode *inode, int write);
80void ocfs2_rw_unlock(struct inode *inode, int write);
81int ocfs2_meta_lock_full(struct inode *inode,
82 struct ocfs2_journal_handle *handle,
83 struct buffer_head **ret_bh,
84 int ex,
85 int arg_flags);
86int ocfs2_meta_lock_with_page(struct inode *inode,
87 struct ocfs2_journal_handle *handle,
88 struct buffer_head **ret_bh,
89 int ex,
90 struct page *page);
91/* 99% of the time we don't want to supply any additional flags --
92 * those are for very specific cases only. */
93#define ocfs2_meta_lock(i, h, b, e) ocfs2_meta_lock_full(i, h, b, e, 0)
94void ocfs2_meta_unlock(struct inode *inode,
95 int ex);
96int ocfs2_super_lock(struct ocfs2_super *osb,
97 int ex);
98void ocfs2_super_unlock(struct ocfs2_super *osb,
99 int ex);
100int ocfs2_rename_lock(struct ocfs2_super *osb);
101void ocfs2_rename_unlock(struct ocfs2_super *osb);
d680efe9
MF
102int ocfs2_dentry_lock(struct dentry *dentry, int ex);
103void ocfs2_dentry_unlock(struct dentry *dentry, int ex);
104
ccd979bd 105void ocfs2_mark_lockres_freeing(struct ocfs2_lock_res *lockres);
d680efe9
MF
106void ocfs2_simple_drop_lockres(struct ocfs2_super *osb,
107 struct ocfs2_lock_res *lockres);
ccd979bd
MF
108
109/* for the vote thread */
110void ocfs2_process_blocked_lock(struct ocfs2_super *osb,
111 struct ocfs2_lock_res *lockres);
112
113struct ocfs2_dlm_debug *ocfs2_new_dlm_debug(void);
114void ocfs2_put_dlm_debug(struct ocfs2_dlm_debug *dlm_debug);
115
116/* aids in debugging and tracking lvbs */
117void ocfs2_dump_meta_lvb_info(u64 level,
118 const char *function,
119 unsigned int line,
120 struct ocfs2_lock_res *lockres);
121#define mlog_meta_lvb(__level, __lockres) ocfs2_dump_meta_lvb_info(__level, __PRETTY_FUNCTION__, __LINE__, __lockres)
122
123#endif /* DLMGLUE_H */
This page took 0.105463 seconds and 5 git commands to generate.