xref: /openbmc/linux/fs/gfs2/glock.h (revision e9fc2aa0)
1b3b94faaSDavid Teigland /*
2b3b94faaSDavid Teigland  * Copyright (C) Sistina Software, Inc.  1997-2003 All rights reserved.
33a8a9a10SSteven Whitehouse  * Copyright (C) 2004-2006 Red Hat, Inc.  All rights reserved.
4b3b94faaSDavid Teigland  *
5b3b94faaSDavid Teigland  * This copyrighted material is made available to anyone wishing to use,
6b3b94faaSDavid Teigland  * modify, copy, or redistribute it subject to the terms and conditions
7e9fc2aa0SSteven Whitehouse  * of the GNU General Public License version 2.
8b3b94faaSDavid Teigland  */
9b3b94faaSDavid Teigland 
10b3b94faaSDavid Teigland #ifndef __GLOCK_DOT_H__
11b3b94faaSDavid Teigland #define __GLOCK_DOT_H__
12b3b94faaSDavid Teigland 
13b3b94faaSDavid Teigland /* Flags for lock requests; used in gfs2_holder gh_flag field.
14b3b94faaSDavid Teigland    From lm_interface.h:
15b3b94faaSDavid Teigland #define LM_FLAG_TRY		0x00000001
16b3b94faaSDavid Teigland #define LM_FLAG_TRY_1CB		0x00000002
17b3b94faaSDavid Teigland #define LM_FLAG_NOEXP		0x00000004
18b3b94faaSDavid Teigland #define LM_FLAG_ANY		0x00000008
19b3b94faaSDavid Teigland #define LM_FLAG_PRIORITY	0x00000010 */
20b3b94faaSDavid Teigland 
21b3b94faaSDavid Teigland #define GL_LOCAL_EXCL		0x00000020
22b3b94faaSDavid Teigland #define GL_ASYNC		0x00000040
23b3b94faaSDavid Teigland #define GL_EXACT		0x00000080
24b3b94faaSDavid Teigland #define GL_SKIP			0x00000100
25b3b94faaSDavid Teigland #define GL_ATIME		0x00000200
26b3b94faaSDavid Teigland #define GL_NOCACHE		0x00000400
27b3b94faaSDavid Teigland #define GL_NOCANCEL		0x00001000
28fe1bdedcSSteven Whitehouse #define GL_AOP			0x00004000
29320dd101SSteven Whitehouse #define GL_DUMP			0x00008000
30b3b94faaSDavid Teigland 
31b3b94faaSDavid Teigland #define GLR_TRYFAILED		13
32b3b94faaSDavid Teigland #define GLR_CANCELED		14
33b3b94faaSDavid Teigland 
34b3b94faaSDavid Teigland static inline int gfs2_glock_is_locked_by_me(struct gfs2_glock *gl)
35b3b94faaSDavid Teigland {
36b3b94faaSDavid Teigland 	struct gfs2_holder *gh;
37b3b94faaSDavid Teigland 	int locked = 0;
38b3b94faaSDavid Teigland 
39b3b94faaSDavid Teigland 	/* Look in glock's list of holders for one with current task as owner */
40b3b94faaSDavid Teigland 	spin_lock(&gl->gl_spin);
41b3b94faaSDavid Teigland 	list_for_each_entry(gh, &gl->gl_holders, gh_list) {
42b3b94faaSDavid Teigland 		if (gh->gh_owner == current) {
43b3b94faaSDavid Teigland 			locked = 1;
44b3b94faaSDavid Teigland 			break;
45b3b94faaSDavid Teigland 		}
46b3b94faaSDavid Teigland 	}
47b3b94faaSDavid Teigland 	spin_unlock(&gl->gl_spin);
48b3b94faaSDavid Teigland 
49b3b94faaSDavid Teigland 	return locked;
50b3b94faaSDavid Teigland }
51b3b94faaSDavid Teigland 
52b3b94faaSDavid Teigland static inline int gfs2_glock_is_held_excl(struct gfs2_glock *gl)
53b3b94faaSDavid Teigland {
54b3b94faaSDavid Teigland 	return (gl->gl_state == LM_ST_EXCLUSIVE);
55b3b94faaSDavid Teigland }
56b3b94faaSDavid Teigland 
57b3b94faaSDavid Teigland static inline int gfs2_glock_is_held_dfrd(struct gfs2_glock *gl)
58b3b94faaSDavid Teigland {
59b3b94faaSDavid Teigland 	return (gl->gl_state == LM_ST_DEFERRED);
60b3b94faaSDavid Teigland }
61b3b94faaSDavid Teigland 
62b3b94faaSDavid Teigland static inline int gfs2_glock_is_held_shrd(struct gfs2_glock *gl)
63b3b94faaSDavid Teigland {
64b3b94faaSDavid Teigland 	return (gl->gl_state == LM_ST_SHARED);
65b3b94faaSDavid Teigland }
66b3b94faaSDavid Teigland 
67b3b94faaSDavid Teigland static inline int gfs2_glock_is_blocking(struct gfs2_glock *gl)
68b3b94faaSDavid Teigland {
69b3b94faaSDavid Teigland 	int ret;
70b3b94faaSDavid Teigland 	spin_lock(&gl->gl_spin);
71b3b94faaSDavid Teigland 	ret = !list_empty(&gl->gl_waiters2) || !list_empty(&gl->gl_waiters3);
72b3b94faaSDavid Teigland 	spin_unlock(&gl->gl_spin);
73b3b94faaSDavid Teigland 	return ret;
74b3b94faaSDavid Teigland }
75b3b94faaSDavid Teigland 
76b3b94faaSDavid Teigland int gfs2_glock_get(struct gfs2_sbd *sdp,
778fb4b536SSteven Whitehouse 		   uint64_t number, const struct gfs2_glock_operations *glops,
78b3b94faaSDavid Teigland 		   int create, struct gfs2_glock **glp);
79b3b94faaSDavid Teigland void gfs2_glock_hold(struct gfs2_glock *gl);
80b3b94faaSDavid Teigland int gfs2_glock_put(struct gfs2_glock *gl);
81190562bdSSteven Whitehouse void gfs2_holder_init(struct gfs2_glock *gl, unsigned int state, unsigned flags,
82b3b94faaSDavid Teigland 		      struct gfs2_holder *gh);
83190562bdSSteven Whitehouse void gfs2_holder_reinit(unsigned int state, unsigned flags,
84190562bdSSteven Whitehouse 			struct gfs2_holder *gh);
85b3b94faaSDavid Teigland void gfs2_holder_uninit(struct gfs2_holder *gh);
86b3b94faaSDavid Teigland 
87b3b94faaSDavid Teigland void gfs2_glock_xmote_th(struct gfs2_glock *gl, unsigned int state, int flags);
88b3b94faaSDavid Teigland void gfs2_glock_drop_th(struct gfs2_glock *gl);
89b3b94faaSDavid Teigland 
90b3b94faaSDavid Teigland int gfs2_glock_nq(struct gfs2_holder *gh);
91b3b94faaSDavid Teigland int gfs2_glock_poll(struct gfs2_holder *gh);
92b3b94faaSDavid Teigland int gfs2_glock_wait(struct gfs2_holder *gh);
93b3b94faaSDavid Teigland void gfs2_glock_dq(struct gfs2_holder *gh);
94b3b94faaSDavid Teigland 
95b3b94faaSDavid Teigland int gfs2_glock_be_greedy(struct gfs2_glock *gl, unsigned int time);
96b3b94faaSDavid Teigland 
97b3b94faaSDavid Teigland void gfs2_glock_dq_uninit(struct gfs2_holder *gh);
98b3b94faaSDavid Teigland int gfs2_glock_nq_num(struct gfs2_sbd *sdp,
998fb4b536SSteven Whitehouse 		      uint64_t number, const struct gfs2_glock_operations *glops,
100b3b94faaSDavid Teigland 		      unsigned int state, int flags, struct gfs2_holder *gh);
101b3b94faaSDavid Teigland 
102b3b94faaSDavid Teigland int gfs2_glock_nq_m(unsigned int num_gh, struct gfs2_holder *ghs);
103b3b94faaSDavid Teigland void gfs2_glock_dq_m(unsigned int num_gh, struct gfs2_holder *ghs);
104b3b94faaSDavid Teigland void gfs2_glock_dq_uninit_m(unsigned int num_gh, struct gfs2_holder *ghs);
105b3b94faaSDavid Teigland 
106b3b94faaSDavid Teigland void gfs2_glock_prefetch_num(struct gfs2_sbd *sdp, uint64_t number,
1078fb4b536SSteven Whitehouse 			     const struct gfs2_glock_operations *glops,
108b3b94faaSDavid Teigland 			     unsigned int state, int flags);
109feaa7bbaSSteven Whitehouse void gfs2_glock_inode_squish(struct inode *inode);
110b3b94faaSDavid Teigland 
111d0dc80dbSSteven Whitehouse /**
112d0dc80dbSSteven Whitehouse  * gfs2_glock_nq_init - intialize a holder and enqueue it on a glock
113d0dc80dbSSteven Whitehouse  * @gl: the glock
114d0dc80dbSSteven Whitehouse  * @state: the state we're requesting
115d0dc80dbSSteven Whitehouse  * @flags: the modifier flags
116d0dc80dbSSteven Whitehouse  * @gh: the holder structure
117d0dc80dbSSteven Whitehouse  *
118d0dc80dbSSteven Whitehouse  * Returns: 0, GLR_*, or errno
119d0dc80dbSSteven Whitehouse  */
120d0dc80dbSSteven Whitehouse 
121d0dc80dbSSteven Whitehouse static inline int gfs2_glock_nq_init(struct gfs2_glock *gl,
122d0dc80dbSSteven Whitehouse 				     unsigned int state, int flags,
123d0dc80dbSSteven Whitehouse 				     struct gfs2_holder *gh)
124d0dc80dbSSteven Whitehouse {
125d0dc80dbSSteven Whitehouse 	int error;
126d0dc80dbSSteven Whitehouse 
127d0dc80dbSSteven Whitehouse 	gfs2_holder_init(gl, state, flags, gh);
128d0dc80dbSSteven Whitehouse 
129d0dc80dbSSteven Whitehouse 	error = gfs2_glock_nq(gh);
130d0dc80dbSSteven Whitehouse 	if (error)
131d0dc80dbSSteven Whitehouse 		gfs2_holder_uninit(gh);
132d0dc80dbSSteven Whitehouse 
133d0dc80dbSSteven Whitehouse 	return error;
134d0dc80dbSSteven Whitehouse }
135d0dc80dbSSteven Whitehouse 
136b3b94faaSDavid Teigland /*  Lock Value Block functions  */
137b3b94faaSDavid Teigland 
138b3b94faaSDavid Teigland int gfs2_lvb_hold(struct gfs2_glock *gl);
139b3b94faaSDavid Teigland void gfs2_lvb_unhold(struct gfs2_glock *gl);
140b3b94faaSDavid Teigland 
141b3b94faaSDavid Teigland void gfs2_glock_cb(lm_fsdata_t *fsdata, unsigned int type, void *data);
142b3b94faaSDavid Teigland 
143b3b94faaSDavid Teigland void gfs2_iopen_go_callback(struct gfs2_glock *gl, unsigned int state);
144b3b94faaSDavid Teigland 
145b3b94faaSDavid Teigland void gfs2_glock_schedule_for_reclaim(struct gfs2_glock *gl);
146b3b94faaSDavid Teigland void gfs2_reclaim_glock(struct gfs2_sbd *sdp);
147b3b94faaSDavid Teigland 
148b3b94faaSDavid Teigland void gfs2_scand_internal(struct gfs2_sbd *sdp);
149b3b94faaSDavid Teigland void gfs2_gl_hash_clear(struct gfs2_sbd *sdp, int wait);
150b3b94faaSDavid Teigland 
151b3b94faaSDavid Teigland #endif /* __GLOCK_DOT_H__ */
152