blob: 5b772bb0210ff006c37df3a9155510ce6c3fdfe9 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
10#include <linux/sched.h>
11#include <linux/slab.h>
12#include <linux/spinlock.h>
13#include <linux/completion.h>
14#include <linux/buffer_head.h>
15#include <linux/delay.h>
16#include <linux/sort.h>
17#include <linux/jhash.h>
Steven Whitehoused0dc80d2006-03-29 14:36:49 -050018#include <linux/kallsyms.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050019#include <linux/gfs2_ondisk.h>
Steven Whitehouse24264432006-09-11 21:40:30 -040020#include <linux/list.h>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020021#include <linux/lm_interface.h>
Steven Whitehousefee852e2007-01-17 15:33:23 +000022#include <linux/wait.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000023#include <asm/uaccess.h>
24
25#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050026#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000027#include "glock.h"
28#include "glops.h"
29#include "inode.h"
30#include "lm.h"
31#include "lops.h"
32#include "meta_io.h"
33#include "quota.h"
34#include "super.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050035#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000036
Steven Whitehouse37b2fa62006-09-08 13:35:56 -040037struct gfs2_gl_hash_bucket {
Steven Whitehouseb6397892006-09-12 10:10:01 -040038 struct hlist_head hb_list;
Steven Whitehouse37b2fa62006-09-08 13:35:56 -040039};
40
David Teiglandb3b94fa2006-01-16 16:50:04 +000041typedef void (*glock_examiner) (struct gfs2_glock * gl);
42
Adrian Bunk08bc2db2006-04-28 10:59:12 -040043static int gfs2_dump_lockstate(struct gfs2_sbd *sdp);
Steven Whitehouse320dd102006-05-18 16:25:27 -040044static int dump_glock(struct gfs2_glock *gl);
Steven Whitehouse24264432006-09-11 21:40:30 -040045static int dump_inode(struct gfs2_inode *ip);
Steven Whitehouseb5d32be2007-01-22 12:15:34 -050046static void gfs2_glock_xmote_th(struct gfs2_holder *gh);
47static void gfs2_glock_drop_th(struct gfs2_glock *gl);
Adrian Bunk08bc2db2006-04-28 10:59:12 -040048
Steven Whitehouseb6397892006-09-12 10:10:01 -040049#define GFS2_GL_HASH_SHIFT 15
Steven Whitehouse087efdd2006-09-09 16:59:11 -040050#define GFS2_GL_HASH_SIZE (1 << GFS2_GL_HASH_SHIFT)
51#define GFS2_GL_HASH_MASK (GFS2_GL_HASH_SIZE - 1)
52
Steven Whitehouse85d1da62006-09-07 14:40:21 -040053static struct gfs2_gl_hash_bucket gl_hash_table[GFS2_GL_HASH_SIZE];
Steven Whitehouse087efdd2006-09-09 16:59:11 -040054
55/*
56 * Despite what you might think, the numbers below are not arbitrary :-)
57 * They are taken from the ipv4 routing hash code, which is well tested
58 * and thus should be nearly optimal. Later on we might tweek the numbers
59 * but for now this should be fine.
60 *
61 * The reason for putting the locks in a separate array from the list heads
62 * is that we can have fewer locks than list heads and save memory. We use
63 * the same hash function for both, but with a different hash mask.
64 */
65#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK) || \
66 defined(CONFIG_PROVE_LOCKING)
67
68#ifdef CONFIG_LOCKDEP
69# define GL_HASH_LOCK_SZ 256
70#else
71# if NR_CPUS >= 32
72# define GL_HASH_LOCK_SZ 4096
73# elif NR_CPUS >= 16
74# define GL_HASH_LOCK_SZ 2048
75# elif NR_CPUS >= 8
76# define GL_HASH_LOCK_SZ 1024
77# elif NR_CPUS >= 4
78# define GL_HASH_LOCK_SZ 512
79# else
80# define GL_HASH_LOCK_SZ 256
81# endif
82#endif
83
84/* We never want more locks than chains */
85#if GFS2_GL_HASH_SIZE < GL_HASH_LOCK_SZ
86# undef GL_HASH_LOCK_SZ
87# define GL_HASH_LOCK_SZ GFS2_GL_HASH_SIZE
88#endif
89
90static rwlock_t gl_hash_locks[GL_HASH_LOCK_SZ];
91
92static inline rwlock_t *gl_lock_addr(unsigned int x)
93{
Steven Whitehouse94610612006-09-09 18:59:27 -040094 return &gl_hash_locks[x & (GL_HASH_LOCK_SZ-1)];
Steven Whitehouse087efdd2006-09-09 16:59:11 -040095}
96#else /* not SMP, so no spinlocks required */
Randy Dunlap0ac23062006-11-28 22:29:19 -080097static inline rwlock_t *gl_lock_addr(unsigned int x)
Steven Whitehouse087efdd2006-09-09 16:59:11 -040098{
99 return NULL;
100}
101#endif
Steven Whitehouse85d1da62006-09-07 14:40:21 -0400102
David Teiglandb3b94fa2006-01-16 16:50:04 +0000103/**
104 * relaxed_state_ok - is a requested lock compatible with the current lock mode?
105 * @actual: the current state of the lock
106 * @requested: the lock state that was requested by the caller
107 * @flags: the modifier flags passed in by the caller
108 *
109 * Returns: 1 if the locks are compatible, 0 otherwise
110 */
111
112static inline int relaxed_state_ok(unsigned int actual, unsigned requested,
113 int flags)
114{
115 if (actual == requested)
116 return 1;
117
118 if (flags & GL_EXACT)
119 return 0;
120
121 if (actual == LM_ST_EXCLUSIVE && requested == LM_ST_SHARED)
122 return 1;
123
124 if (actual != LM_ST_UNLOCKED && (flags & LM_FLAG_ANY))
125 return 1;
126
127 return 0;
128}
129
130/**
131 * gl_hash() - Turn glock number into hash bucket number
132 * @lock: The glock number
133 *
134 * Returns: The number of the corresponding hash bucket
135 */
136
Steven Whitehouseb8547852006-09-07 13:12:27 -0400137static unsigned int gl_hash(const struct gfs2_sbd *sdp,
138 const struct lm_lockname *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000139{
140 unsigned int h;
141
Steven Whitehousecd915492006-09-04 12:49:07 -0400142 h = jhash(&name->ln_number, sizeof(u64), 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000143 h = jhash(&name->ln_type, sizeof(unsigned int), h);
Steven Whitehouseb8547852006-09-07 13:12:27 -0400144 h = jhash(&sdp, sizeof(struct gfs2_sbd *), h);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000145 h &= GFS2_GL_HASH_MASK;
146
147 return h;
148}
149
150/**
151 * glock_free() - Perform a few checks and then release struct gfs2_glock
152 * @gl: The glock to release
153 *
154 * Also calls lock module to release its internal structure for this glock.
155 *
156 */
157
158static void glock_free(struct gfs2_glock *gl)
159{
160 struct gfs2_sbd *sdp = gl->gl_sbd;
161 struct inode *aspace = gl->gl_aspace;
162
163 gfs2_lm_put_lock(sdp, gl->gl_lock);
164
165 if (aspace)
166 gfs2_aspace_put(aspace);
167
168 kmem_cache_free(gfs2_glock_cachep, gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000169}
170
171/**
172 * gfs2_glock_hold() - increment reference count on glock
173 * @gl: The glock to hold
174 *
175 */
176
177void gfs2_glock_hold(struct gfs2_glock *gl)
178{
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400179 atomic_inc(&gl->gl_ref);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000180}
181
182/**
183 * gfs2_glock_put() - Decrement reference count on glock
184 * @gl: The glock to put
185 *
186 */
187
188int gfs2_glock_put(struct gfs2_glock *gl)
189{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000190 int rv = 0;
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400191 struct gfs2_sbd *sdp = gl->gl_sbd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000192
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400193 write_lock(gl_lock_addr(gl->gl_hash));
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400194 if (atomic_dec_and_test(&gl->gl_ref)) {
Steven Whitehouseb6397892006-09-12 10:10:01 -0400195 hlist_del(&gl->gl_list);
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400196 write_unlock(gl_lock_addr(gl->gl_hash));
Steven Whitehouse190562b2006-04-20 16:57:23 -0400197 BUG_ON(spin_is_locked(&gl->gl_spin));
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400198 gfs2_assert(sdp, gl->gl_state == LM_ST_UNLOCKED);
199 gfs2_assert(sdp, list_empty(&gl->gl_reclaim));
200 gfs2_assert(sdp, list_empty(&gl->gl_holders));
201 gfs2_assert(sdp, list_empty(&gl->gl_waiters1));
202 gfs2_assert(sdp, list_empty(&gl->gl_waiters2));
203 gfs2_assert(sdp, list_empty(&gl->gl_waiters3));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000204 glock_free(gl);
205 rv = 1;
206 goto out;
207 }
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400208 write_unlock(gl_lock_addr(gl->gl_hash));
Steven Whitehousea2242db2006-08-24 17:03:05 -0400209out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000210 return rv;
211}
212
213/**
214 * queue_empty - check to see if a glock's queue is empty
215 * @gl: the glock
216 * @head: the head of the queue to check
217 *
218 * This function protects the list in the event that a process already
219 * has a holder on the list and is adding a second holder for itself.
220 * The glmutex lock is what generally prevents processes from working
221 * on the same glock at once, but the special case of adding a second
222 * holder for yourself ("recursive" locking) doesn't involve locking
223 * glmutex, making the spin lock necessary.
224 *
225 * Returns: 1 if the queue is empty
226 */
227
228static inline int queue_empty(struct gfs2_glock *gl, struct list_head *head)
229{
230 int empty;
231 spin_lock(&gl->gl_spin);
232 empty = list_empty(head);
233 spin_unlock(&gl->gl_spin);
234 return empty;
235}
236
237/**
238 * search_bucket() - Find struct gfs2_glock by lock number
239 * @bucket: the bucket to search
240 * @name: The lock name
241 *
242 * Returns: NULL, or the struct gfs2_glock with the requested number
243 */
244
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400245static struct gfs2_glock *search_bucket(unsigned int hash,
Steven Whitehouse899be4d2006-08-30 12:50:28 -0400246 const struct gfs2_sbd *sdp,
Steven Whitehoused6a53722006-08-30 11:16:23 -0400247 const struct lm_lockname *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000248{
249 struct gfs2_glock *gl;
Steven Whitehouseb6397892006-09-12 10:10:01 -0400250 struct hlist_node *h;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000251
Steven Whitehouseb6397892006-09-12 10:10:01 -0400252 hlist_for_each_entry(gl, h, &gl_hash_table[hash].hb_list, gl_list) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000253 if (!lm_name_equal(&gl->gl_name, name))
254 continue;
Steven Whitehouse899be4d2006-08-30 12:50:28 -0400255 if (gl->gl_sbd != sdp)
256 continue;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000257
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400258 atomic_inc(&gl->gl_ref);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000259
260 return gl;
261 }
262
263 return NULL;
264}
265
266/**
267 * gfs2_glock_find() - Find glock by lock number
268 * @sdp: The GFS2 superblock
269 * @name: The lock name
270 *
271 * Returns: NULL, or the struct gfs2_glock with the requested number
272 */
273
Steven Whitehouse85d1da62006-09-07 14:40:21 -0400274static struct gfs2_glock *gfs2_glock_find(const struct gfs2_sbd *sdp,
Steven Whitehoused6a53722006-08-30 11:16:23 -0400275 const struct lm_lockname *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000276{
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400277 unsigned int hash = gl_hash(sdp, name);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000278 struct gfs2_glock *gl;
279
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400280 read_lock(gl_lock_addr(hash));
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400281 gl = search_bucket(hash, sdp, name);
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400282 read_unlock(gl_lock_addr(hash));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000283
284 return gl;
285}
286
287/**
288 * gfs2_glock_get() - Get a glock, or create one if one doesn't exist
289 * @sdp: The GFS2 superblock
290 * @number: the lock number
291 * @glops: The glock_operations to use
292 * @create: If 0, don't create the glock if it doesn't exist
293 * @glp: the glock is returned here
294 *
295 * This does not lock a glock, just finds/creates structures for one.
296 *
297 * Returns: errno
298 */
299
Steven Whitehousecd915492006-09-04 12:49:07 -0400300int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number,
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400301 const struct gfs2_glock_operations *glops, int create,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000302 struct gfs2_glock **glp)
303{
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400304 struct lm_lockname name = { .ln_number = number, .ln_type = glops->go_type };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000305 struct gfs2_glock *gl, *tmp;
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400306 unsigned int hash = gl_hash(sdp, &name);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000307 int error;
308
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400309 read_lock(gl_lock_addr(hash));
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400310 gl = search_bucket(hash, sdp, &name);
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400311 read_unlock(gl_lock_addr(hash));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000312
313 if (gl || !create) {
314 *glp = gl;
315 return 0;
316 }
317
318 gl = kmem_cache_alloc(gfs2_glock_cachep, GFP_KERNEL);
319 if (!gl)
320 return -ENOMEM;
321
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400322 gl->gl_flags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000323 gl->gl_name = name;
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400324 atomic_set(&gl->gl_ref, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000325 gl->gl_state = LM_ST_UNLOCKED;
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400326 gl->gl_hash = hash;
Steven Whitehouse320dd102006-05-18 16:25:27 -0400327 gl->gl_owner = NULL;
328 gl->gl_ip = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000329 gl->gl_ops = glops;
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400330 gl->gl_req_gh = NULL;
331 gl->gl_req_bh = NULL;
332 gl->gl_vn = 0;
333 gl->gl_stamp = jiffies;
334 gl->gl_object = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000335 gl->gl_sbd = sdp;
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400336 gl->gl_aspace = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000337 lops_init_le(&gl->gl_le, &gfs2_glock_lops);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000338
339 /* If this glock protects actual on-disk data or metadata blocks,
340 create a VFS inode to manage the pages/buffers holding them. */
Steven Whitehouse50299962006-09-04 09:49:55 -0400341 if (glops == &gfs2_inode_glops || glops == &gfs2_rgrp_glops) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000342 gl->gl_aspace = gfs2_aspace_get(sdp);
343 if (!gl->gl_aspace) {
344 error = -ENOMEM;
345 goto fail;
346 }
347 }
348
349 error = gfs2_lm_get_lock(sdp, &name, &gl->gl_lock);
350 if (error)
351 goto fail_aspace;
352
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400353 write_lock(gl_lock_addr(hash));
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400354 tmp = search_bucket(hash, sdp, &name);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000355 if (tmp) {
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400356 write_unlock(gl_lock_addr(hash));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000357 glock_free(gl);
358 gl = tmp;
359 } else {
Steven Whitehouseb6397892006-09-12 10:10:01 -0400360 hlist_add_head(&gl->gl_list, &gl_hash_table[hash].hb_list);
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400361 write_unlock(gl_lock_addr(hash));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000362 }
363
364 *glp = gl;
365
366 return 0;
367
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400368fail_aspace:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000369 if (gl->gl_aspace)
370 gfs2_aspace_put(gl->gl_aspace);
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400371fail:
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400372 kmem_cache_free(gfs2_glock_cachep, gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000373 return error;
374}
375
376/**
377 * gfs2_holder_init - initialize a struct gfs2_holder in the default way
378 * @gl: the glock
379 * @state: the state we're requesting
380 * @flags: the modifier flags
381 * @gh: the holder structure
382 *
383 */
384
Steven Whitehouse190562b2006-04-20 16:57:23 -0400385void gfs2_holder_init(struct gfs2_glock *gl, unsigned int state, unsigned flags,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000386 struct gfs2_holder *gh)
387{
388 INIT_LIST_HEAD(&gh->gh_list);
389 gh->gh_gl = gl;
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500390 gh->gh_ip = (unsigned long)__builtin_return_address(0);
Steven Whitehouse190562b2006-04-20 16:57:23 -0400391 gh->gh_owner = current;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000392 gh->gh_state = state;
393 gh->gh_flags = flags;
394 gh->gh_error = 0;
395 gh->gh_iflags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000396 gfs2_glock_hold(gl);
397}
398
399/**
400 * gfs2_holder_reinit - reinitialize a struct gfs2_holder so we can requeue it
401 * @state: the state we're requesting
402 * @flags: the modifier flags
403 * @gh: the holder structure
404 *
405 * Don't mess with the glock.
406 *
407 */
408
Steven Whitehouse190562b2006-04-20 16:57:23 -0400409void gfs2_holder_reinit(unsigned int state, unsigned flags, struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000410{
411 gh->gh_state = state;
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400412 gh->gh_flags = flags;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000413 gh->gh_iflags &= 1 << HIF_ALLOCED;
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500414 gh->gh_ip = (unsigned long)__builtin_return_address(0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000415}
416
417/**
418 * gfs2_holder_uninit - uninitialize a holder structure (drop glock reference)
419 * @gh: the holder structure
420 *
421 */
422
423void gfs2_holder_uninit(struct gfs2_holder *gh)
424{
425 gfs2_glock_put(gh->gh_gl);
426 gh->gh_gl = NULL;
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500427 gh->gh_ip = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000428}
429
430/**
431 * gfs2_holder_get - get a struct gfs2_holder structure
432 * @gl: the glock
433 * @state: the state we're requesting
434 * @flags: the modifier flags
Steven Whitehouseaf18ddb82006-06-24 15:42:21 -0400435 * @gfp_flags:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000436 *
437 * Figure out how big an impact this function has. Either:
438 * 1) Replace it with a cache of structures hanging off the struct gfs2_sbd
439 * 2) Leave it like it is
440 *
441 * Returns: the holder structure, NULL on ENOMEM
442 */
443
Adrian Bunk08bc2db2006-04-28 10:59:12 -0400444static struct gfs2_holder *gfs2_holder_get(struct gfs2_glock *gl,
445 unsigned int state,
446 int flags, gfp_t gfp_flags)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000447{
448 struct gfs2_holder *gh;
449
450 gh = kmalloc(sizeof(struct gfs2_holder), gfp_flags);
451 if (!gh)
452 return NULL;
453
454 gfs2_holder_init(gl, state, flags, gh);
455 set_bit(HIF_ALLOCED, &gh->gh_iflags);
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500456 gh->gh_ip = (unsigned long)__builtin_return_address(0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000457 return gh;
458}
459
460/**
461 * gfs2_holder_put - get rid of a struct gfs2_holder structure
462 * @gh: the holder structure
463 *
464 */
465
Adrian Bunk08bc2db2006-04-28 10:59:12 -0400466static void gfs2_holder_put(struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000467{
468 gfs2_holder_uninit(gh);
469 kfree(gh);
470}
471
Steven Whitehousefee852e2007-01-17 15:33:23 +0000472static void gfs2_holder_dispose_or_wake(struct gfs2_holder *gh)
473{
474 if (test_bit(HIF_DEALLOC, &gh->gh_iflags)) {
475 gfs2_holder_put(gh);
476 return;
477 }
478 clear_bit(HIF_WAIT, &gh->gh_iflags);
479 smp_mb();
480 wake_up_bit(&gh->gh_iflags, HIF_WAIT);
481}
482
483static int holder_wait(void *word)
484{
485 schedule();
486 return 0;
487}
488
489static void wait_on_holder(struct gfs2_holder *gh)
490{
491 might_sleep();
492 wait_on_bit(&gh->gh_iflags, HIF_WAIT, holder_wait, TASK_UNINTERRUPTIBLE);
493}
494
David Teiglandb3b94fa2006-01-16 16:50:04 +0000495/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000496 * rq_mutex - process a mutex request in the queue
497 * @gh: the glock holder
498 *
499 * Returns: 1 if the queue is blocked
500 */
501
502static int rq_mutex(struct gfs2_holder *gh)
503{
504 struct gfs2_glock *gl = gh->gh_gl;
505
506 list_del_init(&gh->gh_list);
507 /* gh->gh_error never examined. */
508 set_bit(GLF_LOCK, &gl->gl_flags);
Steven Whitehousefee852e2007-01-17 15:33:23 +0000509 clear_bit(HIF_WAIT, &gh->gh_flags);
510 smp_mb();
511 wake_up_bit(&gh->gh_iflags, HIF_WAIT);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000512
513 return 1;
514}
515
516/**
517 * rq_promote - process a promote request in the queue
518 * @gh: the glock holder
519 *
520 * Acquire a new inter-node lock, or change a lock state to more restrictive.
521 *
522 * Returns: 1 if the queue is blocked
523 */
524
525static int rq_promote(struct gfs2_holder *gh)
526{
527 struct gfs2_glock *gl = gh->gh_gl;
528 struct gfs2_sbd *sdp = gl->gl_sbd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000529
530 if (!relaxed_state_ok(gl->gl_state, gh->gh_state, gh->gh_flags)) {
531 if (list_empty(&gl->gl_holders)) {
532 gl->gl_req_gh = gh;
533 set_bit(GLF_LOCK, &gl->gl_flags);
534 spin_unlock(&gl->gl_spin);
535
536 if (atomic_read(&sdp->sd_reclaim_count) >
537 gfs2_tune_get(sdp, gt_reclaim_limit) &&
538 !(gh->gh_flags & LM_FLAG_PRIORITY)) {
539 gfs2_reclaim_glock(sdp);
540 gfs2_reclaim_glock(sdp);
541 }
542
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500543 gfs2_glock_xmote_th(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000544 spin_lock(&gl->gl_spin);
545 }
546 return 1;
547 }
548
549 if (list_empty(&gl->gl_holders)) {
550 set_bit(HIF_FIRST, &gh->gh_iflags);
551 set_bit(GLF_LOCK, &gl->gl_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000552 } else {
553 struct gfs2_holder *next_gh;
Steven Whitehouse1c0f4872007-01-22 12:10:39 -0500554 if (gh->gh_state == LM_ST_EXCLUSIVE)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000555 return 1;
556 next_gh = list_entry(gl->gl_holders.next, struct gfs2_holder,
557 gh_list);
Steven Whitehouse1c0f4872007-01-22 12:10:39 -0500558 if (next_gh->gh_state == LM_ST_EXCLUSIVE)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000559 return 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000560 }
561
562 list_move_tail(&gh->gh_list, &gl->gl_holders);
563 gh->gh_error = 0;
564 set_bit(HIF_HOLDER, &gh->gh_iflags);
565
Steven Whitehousefee852e2007-01-17 15:33:23 +0000566 gfs2_holder_dispose_or_wake(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000567
568 return 0;
569}
570
571/**
572 * rq_demote - process a demote request in the queue
573 * @gh: the glock holder
574 *
575 * Returns: 1 if the queue is blocked
576 */
577
578static int rq_demote(struct gfs2_holder *gh)
579{
580 struct gfs2_glock *gl = gh->gh_gl;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000581
582 if (!list_empty(&gl->gl_holders))
583 return 1;
584
585 if (gl->gl_state == gh->gh_state || gl->gl_state == LM_ST_UNLOCKED) {
586 list_del_init(&gh->gh_list);
587 gh->gh_error = 0;
588 spin_unlock(&gl->gl_spin);
Steven Whitehousefee852e2007-01-17 15:33:23 +0000589 gfs2_holder_dispose_or_wake(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000590 spin_lock(&gl->gl_spin);
591 } else {
592 gl->gl_req_gh = gh;
593 set_bit(GLF_LOCK, &gl->gl_flags);
594 spin_unlock(&gl->gl_spin);
595
596 if (gh->gh_state == LM_ST_UNLOCKED ||
597 gl->gl_state != LM_ST_EXCLUSIVE)
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500598 gfs2_glock_drop_th(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000599 else
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500600 gfs2_glock_xmote_th(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000601
602 spin_lock(&gl->gl_spin);
603 }
604
605 return 0;
606}
607
608/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000609 * run_queue - process holder structures on a glock
610 * @gl: the glock
611 *
612 */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000613static void run_queue(struct gfs2_glock *gl)
614{
615 struct gfs2_holder *gh;
616 int blocked = 1;
617
618 for (;;) {
619 if (test_bit(GLF_LOCK, &gl->gl_flags))
620 break;
621
622 if (!list_empty(&gl->gl_waiters1)) {
623 gh = list_entry(gl->gl_waiters1.next,
624 struct gfs2_holder, gh_list);
625
626 if (test_bit(HIF_MUTEX, &gh->gh_iflags))
627 blocked = rq_mutex(gh);
628 else
629 gfs2_assert_warn(gl->gl_sbd, 0);
630
631 } else if (!list_empty(&gl->gl_waiters2) &&
632 !test_bit(GLF_SKIP_WAITERS2, &gl->gl_flags)) {
633 gh = list_entry(gl->gl_waiters2.next,
634 struct gfs2_holder, gh_list);
635
636 if (test_bit(HIF_DEMOTE, &gh->gh_iflags))
637 blocked = rq_demote(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000638 else
639 gfs2_assert_warn(gl->gl_sbd, 0);
640
641 } else if (!list_empty(&gl->gl_waiters3)) {
642 gh = list_entry(gl->gl_waiters3.next,
643 struct gfs2_holder, gh_list);
644
645 if (test_bit(HIF_PROMOTE, &gh->gh_iflags))
646 blocked = rq_promote(gh);
647 else
648 gfs2_assert_warn(gl->gl_sbd, 0);
649
650 } else
651 break;
652
653 if (blocked)
654 break;
655 }
656}
657
658/**
659 * gfs2_glmutex_lock - acquire a local lock on a glock
660 * @gl: the glock
661 *
662 * Gives caller exclusive access to manipulate a glock structure.
663 */
664
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400665static void gfs2_glmutex_lock(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000666{
667 struct gfs2_holder gh;
668
669 gfs2_holder_init(gl, 0, 0, &gh);
670 set_bit(HIF_MUTEX, &gh.gh_iflags);
Steven Whitehousefee852e2007-01-17 15:33:23 +0000671 if (test_and_set_bit(HIF_WAIT, &gh.gh_iflags))
672 BUG();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000673
674 spin_lock(&gl->gl_spin);
Steven Whitehouse85d1da62006-09-07 14:40:21 -0400675 if (test_and_set_bit(GLF_LOCK, &gl->gl_flags)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000676 list_add_tail(&gh.gh_list, &gl->gl_waiters1);
Steven Whitehouse85d1da62006-09-07 14:40:21 -0400677 } else {
Steven Whitehouse320dd102006-05-18 16:25:27 -0400678 gl->gl_owner = current;
679 gl->gl_ip = (unsigned long)__builtin_return_address(0);
Steven Whitehousefee852e2007-01-17 15:33:23 +0000680 clear_bit(HIF_WAIT, &gh.gh_iflags);
681 smp_mb();
682 wake_up_bit(&gh.gh_iflags, HIF_WAIT);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400683 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000684 spin_unlock(&gl->gl_spin);
685
Steven Whitehousefee852e2007-01-17 15:33:23 +0000686 wait_on_holder(&gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000687 gfs2_holder_uninit(&gh);
688}
689
690/**
691 * gfs2_glmutex_trylock - try to acquire a local lock on a glock
692 * @gl: the glock
693 *
694 * Returns: 1 if the glock is acquired
695 */
696
Adrian Bunk08bc2db2006-04-28 10:59:12 -0400697static int gfs2_glmutex_trylock(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000698{
699 int acquired = 1;
700
701 spin_lock(&gl->gl_spin);
Steven Whitehouse85d1da62006-09-07 14:40:21 -0400702 if (test_and_set_bit(GLF_LOCK, &gl->gl_flags)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000703 acquired = 0;
Steven Whitehouse85d1da62006-09-07 14:40:21 -0400704 } else {
Steven Whitehouse320dd102006-05-18 16:25:27 -0400705 gl->gl_owner = current;
706 gl->gl_ip = (unsigned long)__builtin_return_address(0);
707 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000708 spin_unlock(&gl->gl_spin);
709
710 return acquired;
711}
712
713/**
714 * gfs2_glmutex_unlock - release a local lock on a glock
715 * @gl: the glock
716 *
717 */
718
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400719static void gfs2_glmutex_unlock(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000720{
721 spin_lock(&gl->gl_spin);
722 clear_bit(GLF_LOCK, &gl->gl_flags);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400723 gl->gl_owner = NULL;
724 gl->gl_ip = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000725 run_queue(gl);
Steven Whitehouse190562b2006-04-20 16:57:23 -0400726 BUG_ON(!spin_is_locked(&gl->gl_spin));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000727 spin_unlock(&gl->gl_spin);
728}
729
730/**
731 * handle_callback - add a demote request to a lock's queue
732 * @gl: the glock
733 * @state: the state the caller wants us to change to
734 *
Steven Whitehouseaf18ddb82006-06-24 15:42:21 -0400735 * Note: This may fail sliently if we are out of memory.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000736 */
737
738static void handle_callback(struct gfs2_glock *gl, unsigned int state)
739{
740 struct gfs2_holder *gh, *new_gh = NULL;
741
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400742restart:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000743 spin_lock(&gl->gl_spin);
744
745 list_for_each_entry(gh, &gl->gl_waiters2, gh_list) {
746 if (test_bit(HIF_DEMOTE, &gh->gh_iflags) &&
747 gl->gl_req_gh != gh) {
748 if (gh->gh_state != state)
749 gh->gh_state = LM_ST_UNLOCKED;
750 goto out;
751 }
752 }
753
754 if (new_gh) {
755 list_add_tail(&new_gh->gh_list, &gl->gl_waiters2);
756 new_gh = NULL;
757 } else {
758 spin_unlock(&gl->gl_spin);
759
Steven Whitehouseab923032006-11-15 15:17:03 -0500760 new_gh = gfs2_holder_get(gl, state, LM_FLAG_TRY, GFP_NOFS);
Steven Whitehouseaf18ddb82006-06-24 15:42:21 -0400761 if (!new_gh)
762 return;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000763 set_bit(HIF_DEMOTE, &new_gh->gh_iflags);
764 set_bit(HIF_DEALLOC, &new_gh->gh_iflags);
Steven Whitehousefee852e2007-01-17 15:33:23 +0000765 set_bit(HIF_WAIT, &new_gh->gh_iflags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000766
767 goto restart;
768 }
769
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400770out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000771 spin_unlock(&gl->gl_spin);
772
773 if (new_gh)
774 gfs2_holder_put(new_gh);
775}
776
777/**
778 * state_change - record that the glock is now in a different state
779 * @gl: the glock
780 * @new_state the new state
781 *
782 */
783
784static void state_change(struct gfs2_glock *gl, unsigned int new_state)
785{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000786 int held1, held2;
787
788 held1 = (gl->gl_state != LM_ST_UNLOCKED);
789 held2 = (new_state != LM_ST_UNLOCKED);
790
791 if (held1 != held2) {
David Teigland6a6b3d02006-02-23 10:11:47 +0000792 if (held2)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000793 gfs2_glock_hold(gl);
David Teigland6a6b3d02006-02-23 10:11:47 +0000794 else
David Teiglandb3b94fa2006-01-16 16:50:04 +0000795 gfs2_glock_put(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000796 }
797
798 gl->gl_state = new_state;
799}
800
801/**
802 * xmote_bh - Called after the lock module is done acquiring a lock
803 * @gl: The glock in question
804 * @ret: the int returned from the lock module
805 *
806 */
807
808static void xmote_bh(struct gfs2_glock *gl, unsigned int ret)
809{
810 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400811 const struct gfs2_glock_operations *glops = gl->gl_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000812 struct gfs2_holder *gh = gl->gl_req_gh;
813 int prev_state = gl->gl_state;
814 int op_done = 1;
815
816 gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
817 gfs2_assert_warn(sdp, queue_empty(gl, &gl->gl_holders));
818 gfs2_assert_warn(sdp, !(ret & LM_OUT_ASYNC));
819
820 state_change(gl, ret & LM_OUT_ST_MASK);
821
822 if (prev_state != LM_ST_UNLOCKED && !(ret & LM_OUT_CACHEABLE)) {
823 if (glops->go_inval)
Steven Whitehouse1a14d3a2006-11-20 10:37:45 -0500824 glops->go_inval(gl, DIO_METADATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000825 } else if (gl->gl_state == LM_ST_DEFERRED) {
826 /* We might not want to do this here.
827 Look at moving to the inode glops. */
828 if (glops->go_inval)
Steven Whitehouse1a14d3a2006-11-20 10:37:45 -0500829 glops->go_inval(gl, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000830 }
831
832 /* Deal with each possible exit condition */
833
834 if (!gh)
835 gl->gl_stamp = jiffies;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000836 else if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags))) {
837 spin_lock(&gl->gl_spin);
838 list_del_init(&gh->gh_list);
839 gh->gh_error = -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000840 spin_unlock(&gl->gl_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000841 } else if (test_bit(HIF_DEMOTE, &gh->gh_iflags)) {
842 spin_lock(&gl->gl_spin);
843 list_del_init(&gh->gh_list);
844 if (gl->gl_state == gh->gh_state ||
Steven Whitehouse85d1da62006-09-07 14:40:21 -0400845 gl->gl_state == LM_ST_UNLOCKED) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000846 gh->gh_error = 0;
Steven Whitehouse85d1da62006-09-07 14:40:21 -0400847 } else {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000848 if (gfs2_assert_warn(sdp, gh->gh_flags &
849 (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) == -1)
850 fs_warn(sdp, "ret = 0x%.8X\n", ret);
851 gh->gh_error = GLR_TRYFAILED;
852 }
853 spin_unlock(&gl->gl_spin);
854
855 if (ret & LM_OUT_CANCELED)
Steven Whitehouse50299962006-09-04 09:49:55 -0400856 handle_callback(gl, LM_ST_UNLOCKED);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000857
858 } else if (ret & LM_OUT_CANCELED) {
859 spin_lock(&gl->gl_spin);
860 list_del_init(&gh->gh_list);
861 gh->gh_error = GLR_CANCELED;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000862 spin_unlock(&gl->gl_spin);
863
864 } else if (relaxed_state_ok(gl->gl_state, gh->gh_state, gh->gh_flags)) {
865 spin_lock(&gl->gl_spin);
866 list_move_tail(&gh->gh_list, &gl->gl_holders);
867 gh->gh_error = 0;
868 set_bit(HIF_HOLDER, &gh->gh_iflags);
869 spin_unlock(&gl->gl_spin);
870
871 set_bit(HIF_FIRST, &gh->gh_iflags);
872
873 op_done = 0;
874
875 } else if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) {
876 spin_lock(&gl->gl_spin);
877 list_del_init(&gh->gh_list);
878 gh->gh_error = GLR_TRYFAILED;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000879 spin_unlock(&gl->gl_spin);
880
881 } else {
882 if (gfs2_assert_withdraw(sdp, 0) == -1)
883 fs_err(sdp, "ret = 0x%.8X\n", ret);
884 }
885
886 if (glops->go_xmote_bh)
887 glops->go_xmote_bh(gl);
888
889 if (op_done) {
890 spin_lock(&gl->gl_spin);
891 gl->gl_req_gh = NULL;
892 gl->gl_req_bh = NULL;
893 clear_bit(GLF_LOCK, &gl->gl_flags);
894 run_queue(gl);
895 spin_unlock(&gl->gl_spin);
896 }
897
898 gfs2_glock_put(gl);
899
Steven Whitehousefee852e2007-01-17 15:33:23 +0000900 if (gh)
901 gfs2_holder_dispose_or_wake(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000902}
903
904/**
905 * gfs2_glock_xmote_th - Call into the lock module to acquire or change a glock
906 * @gl: The glock in question
907 * @state: the requested state
908 * @flags: modifier flags to the lock call
909 *
910 */
911
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500912void gfs2_glock_xmote_th(struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000913{
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500914 struct gfs2_glock *gl = gh->gh_gl;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000915 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500916 int flags = gh->gh_flags;
917 unsigned state = gh->gh_state;
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400918 const struct gfs2_glock_operations *glops = gl->gl_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000919 int lck_flags = flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB |
920 LM_FLAG_NOEXP | LM_FLAG_ANY |
921 LM_FLAG_PRIORITY);
922 unsigned int lck_ret;
923
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500924 if (glops->go_xmote_th)
925 glops->go_xmote_th(gl);
926
David Teiglandb3b94fa2006-01-16 16:50:04 +0000927 gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
928 gfs2_assert_warn(sdp, queue_empty(gl, &gl->gl_holders));
929 gfs2_assert_warn(sdp, state != LM_ST_UNLOCKED);
930 gfs2_assert_warn(sdp, state != gl->gl_state);
931
David Teiglandb3b94fa2006-01-16 16:50:04 +0000932 gfs2_glock_hold(gl);
933 gl->gl_req_bh = xmote_bh;
934
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400935 lck_ret = gfs2_lm_lock(sdp, gl->gl_lock, gl->gl_state, state, lck_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000936
937 if (gfs2_assert_withdraw(sdp, !(lck_ret & LM_OUT_ERROR)))
938 return;
939
940 if (lck_ret & LM_OUT_ASYNC)
941 gfs2_assert_warn(sdp, lck_ret == LM_OUT_ASYNC);
942 else
943 xmote_bh(gl, lck_ret);
944}
945
946/**
947 * drop_bh - Called after a lock module unlock completes
948 * @gl: the glock
949 * @ret: the return status
950 *
951 * Doesn't wake up the process waiting on the struct gfs2_holder (if any)
952 * Doesn't drop the reference on the glock the top half took out
953 *
954 */
955
956static void drop_bh(struct gfs2_glock *gl, unsigned int ret)
957{
958 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400959 const struct gfs2_glock_operations *glops = gl->gl_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000960 struct gfs2_holder *gh = gl->gl_req_gh;
961
David Teiglandb3b94fa2006-01-16 16:50:04 +0000962 gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
963 gfs2_assert_warn(sdp, queue_empty(gl, &gl->gl_holders));
964 gfs2_assert_warn(sdp, !ret);
965
966 state_change(gl, LM_ST_UNLOCKED);
967
968 if (glops->go_inval)
Steven Whitehouse1a14d3a2006-11-20 10:37:45 -0500969 glops->go_inval(gl, DIO_METADATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000970
971 if (gh) {
972 spin_lock(&gl->gl_spin);
973 list_del_init(&gh->gh_list);
974 gh->gh_error = 0;
975 spin_unlock(&gl->gl_spin);
976 }
977
978 if (glops->go_drop_bh)
979 glops->go_drop_bh(gl);
980
981 spin_lock(&gl->gl_spin);
982 gl->gl_req_gh = NULL;
983 gl->gl_req_bh = NULL;
984 clear_bit(GLF_LOCK, &gl->gl_flags);
985 run_queue(gl);
986 spin_unlock(&gl->gl_spin);
987
988 gfs2_glock_put(gl);
989
Steven Whitehousefee852e2007-01-17 15:33:23 +0000990 if (gh)
991 gfs2_holder_dispose_or_wake(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000992}
993
994/**
995 * gfs2_glock_drop_th - call into the lock module to unlock a lock
996 * @gl: the glock
997 *
998 */
999
Steven Whitehouseb5d32be2007-01-22 12:15:34 -05001000static void gfs2_glock_drop_th(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001001{
1002 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001003 const struct gfs2_glock_operations *glops = gl->gl_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001004 unsigned int ret;
1005
Steven Whitehouseb5d32be2007-01-22 12:15:34 -05001006 if (glops->go_drop_th)
1007 glops->go_drop_th(gl);
1008
David Teiglandb3b94fa2006-01-16 16:50:04 +00001009 gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
1010 gfs2_assert_warn(sdp, queue_empty(gl, &gl->gl_holders));
1011 gfs2_assert_warn(sdp, gl->gl_state != LM_ST_UNLOCKED);
1012
David Teiglandb3b94fa2006-01-16 16:50:04 +00001013 gfs2_glock_hold(gl);
1014 gl->gl_req_bh = drop_bh;
1015
David Teiglandb3b94fa2006-01-16 16:50:04 +00001016 ret = gfs2_lm_unlock(sdp, gl->gl_lock, gl->gl_state);
1017
1018 if (gfs2_assert_withdraw(sdp, !(ret & LM_OUT_ERROR)))
1019 return;
1020
1021 if (!ret)
1022 drop_bh(gl, ret);
1023 else
1024 gfs2_assert_warn(sdp, ret == LM_OUT_ASYNC);
1025}
1026
1027/**
1028 * do_cancels - cancel requests for locks stuck waiting on an expire flag
1029 * @gh: the LM_FLAG_PRIORITY holder waiting to acquire the lock
1030 *
1031 * Don't cancel GL_NOCANCEL requests.
1032 */
1033
1034static void do_cancels(struct gfs2_holder *gh)
1035{
1036 struct gfs2_glock *gl = gh->gh_gl;
1037
1038 spin_lock(&gl->gl_spin);
1039
1040 while (gl->gl_req_gh != gh &&
1041 !test_bit(HIF_HOLDER, &gh->gh_iflags) &&
1042 !list_empty(&gh->gh_list)) {
Steven Whitehouse50299962006-09-04 09:49:55 -04001043 if (gl->gl_req_bh && !(gl->gl_req_gh &&
1044 (gl->gl_req_gh->gh_flags & GL_NOCANCEL))) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001045 spin_unlock(&gl->gl_spin);
1046 gfs2_lm_cancel(gl->gl_sbd, gl->gl_lock);
1047 msleep(100);
1048 spin_lock(&gl->gl_spin);
1049 } else {
1050 spin_unlock(&gl->gl_spin);
1051 msleep(100);
1052 spin_lock(&gl->gl_spin);
1053 }
1054 }
1055
1056 spin_unlock(&gl->gl_spin);
1057}
1058
1059/**
1060 * glock_wait_internal - wait on a glock acquisition
1061 * @gh: the glock holder
1062 *
1063 * Returns: 0 on success
1064 */
1065
1066static int glock_wait_internal(struct gfs2_holder *gh)
1067{
1068 struct gfs2_glock *gl = gh->gh_gl;
1069 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001070 const struct gfs2_glock_operations *glops = gl->gl_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001071
1072 if (test_bit(HIF_ABORTED, &gh->gh_iflags))
1073 return -EIO;
1074
1075 if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) {
1076 spin_lock(&gl->gl_spin);
1077 if (gl->gl_req_gh != gh &&
1078 !test_bit(HIF_HOLDER, &gh->gh_iflags) &&
1079 !list_empty(&gh->gh_list)) {
1080 list_del_init(&gh->gh_list);
1081 gh->gh_error = GLR_TRYFAILED;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001082 run_queue(gl);
1083 spin_unlock(&gl->gl_spin);
1084 return gh->gh_error;
1085 }
1086 spin_unlock(&gl->gl_spin);
1087 }
1088
1089 if (gh->gh_flags & LM_FLAG_PRIORITY)
1090 do_cancels(gh);
1091
Steven Whitehousefee852e2007-01-17 15:33:23 +00001092 wait_on_holder(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001093 if (gh->gh_error)
1094 return gh->gh_error;
1095
1096 gfs2_assert_withdraw(sdp, test_bit(HIF_HOLDER, &gh->gh_iflags));
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001097 gfs2_assert_withdraw(sdp, relaxed_state_ok(gl->gl_state, gh->gh_state,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001098 gh->gh_flags));
1099
1100 if (test_bit(HIF_FIRST, &gh->gh_iflags)) {
1101 gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
1102
1103 if (glops->go_lock) {
1104 gh->gh_error = glops->go_lock(gh);
1105 if (gh->gh_error) {
1106 spin_lock(&gl->gl_spin);
1107 list_del_init(&gh->gh_list);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001108 spin_unlock(&gl->gl_spin);
1109 }
1110 }
1111
1112 spin_lock(&gl->gl_spin);
1113 gl->gl_req_gh = NULL;
1114 gl->gl_req_bh = NULL;
1115 clear_bit(GLF_LOCK, &gl->gl_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001116 run_queue(gl);
1117 spin_unlock(&gl->gl_spin);
1118 }
1119
1120 return gh->gh_error;
1121}
1122
1123static inline struct gfs2_holder *
1124find_holder_by_owner(struct list_head *head, struct task_struct *owner)
1125{
1126 struct gfs2_holder *gh;
1127
1128 list_for_each_entry(gh, head, gh_list) {
1129 if (gh->gh_owner == owner)
1130 return gh;
1131 }
1132
1133 return NULL;
1134}
1135
1136/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001137 * add_to_queue - Add a holder to the wait queue (but look for recursion)
1138 * @gh: the holder structure to add
1139 *
1140 */
1141
1142static void add_to_queue(struct gfs2_holder *gh)
1143{
1144 struct gfs2_glock *gl = gh->gh_gl;
1145 struct gfs2_holder *existing;
1146
Steven Whitehouse190562b2006-04-20 16:57:23 -04001147 BUG_ON(!gh->gh_owner);
Steven Whitehousefee852e2007-01-17 15:33:23 +00001148 if (test_and_set_bit(HIF_WAIT, &gh->gh_iflags))
1149 BUG();
Steven Whitehouse190562b2006-04-20 16:57:23 -04001150
David Teiglandb3b94fa2006-01-16 16:50:04 +00001151 existing = find_holder_by_owner(&gl->gl_holders, gh->gh_owner);
1152 if (existing) {
Steven Whitehouse5965b1f2006-04-26 13:21:55 -04001153 print_symbol(KERN_WARNING "original: %s\n", existing->gh_ip);
Abhijith Das86384602006-08-25 11:13:37 -05001154 printk(KERN_INFO "pid : %d\n", existing->gh_owner->pid);
Steven Whitehouse907b9bc2006-09-25 09:26:04 -04001155 printk(KERN_INFO "lock type : %d lock state : %d\n",
Abhijith Das86384602006-08-25 11:13:37 -05001156 existing->gh_gl->gl_name.ln_type, existing->gh_gl->gl_state);
Steven Whitehouse5965b1f2006-04-26 13:21:55 -04001157 print_symbol(KERN_WARNING "new: %s\n", gh->gh_ip);
Abhijith Das86384602006-08-25 11:13:37 -05001158 printk(KERN_INFO "pid : %d\n", gh->gh_owner->pid);
Steven Whitehouse907b9bc2006-09-25 09:26:04 -04001159 printk(KERN_INFO "lock type : %d lock state : %d\n",
Abhijith Das86384602006-08-25 11:13:37 -05001160 gl->gl_name.ln_type, gl->gl_state);
Steven Whitehouse5965b1f2006-04-26 13:21:55 -04001161 BUG();
David Teiglandb3b94fa2006-01-16 16:50:04 +00001162 }
1163
1164 existing = find_holder_by_owner(&gl->gl_waiters3, gh->gh_owner);
1165 if (existing) {
Steven Whitehouse5965b1f2006-04-26 13:21:55 -04001166 print_symbol(KERN_WARNING "original: %s\n", existing->gh_ip);
1167 print_symbol(KERN_WARNING "new: %s\n", gh->gh_ip);
1168 BUG();
David Teiglandb3b94fa2006-01-16 16:50:04 +00001169 }
1170
David Teiglandb3b94fa2006-01-16 16:50:04 +00001171 if (gh->gh_flags & LM_FLAG_PRIORITY)
1172 list_add(&gh->gh_list, &gl->gl_waiters3);
1173 else
Steven Whitehouse907b9bc2006-09-25 09:26:04 -04001174 list_add_tail(&gh->gh_list, &gl->gl_waiters3);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001175}
1176
1177/**
1178 * gfs2_glock_nq - enqueue a struct gfs2_holder onto a glock (acquire a glock)
1179 * @gh: the holder structure
1180 *
1181 * if (gh->gh_flags & GL_ASYNC), this never returns an error
1182 *
1183 * Returns: 0, GLR_TRYFAILED, or errno on failure
1184 */
1185
1186int gfs2_glock_nq(struct gfs2_holder *gh)
1187{
1188 struct gfs2_glock *gl = gh->gh_gl;
1189 struct gfs2_sbd *sdp = gl->gl_sbd;
1190 int error = 0;
1191
Steven Whitehouse320dd102006-05-18 16:25:27 -04001192restart:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001193 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags))) {
1194 set_bit(HIF_ABORTED, &gh->gh_iflags);
1195 return -EIO;
1196 }
1197
1198 set_bit(HIF_PROMOTE, &gh->gh_iflags);
1199
1200 spin_lock(&gl->gl_spin);
1201 add_to_queue(gh);
1202 run_queue(gl);
1203 spin_unlock(&gl->gl_spin);
1204
1205 if (!(gh->gh_flags & GL_ASYNC)) {
1206 error = glock_wait_internal(gh);
1207 if (error == GLR_CANCELED) {
Steven Whitehouse190562b2006-04-20 16:57:23 -04001208 msleep(100);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001209 goto restart;
1210 }
1211 }
1212
David Teiglandb3b94fa2006-01-16 16:50:04 +00001213 return error;
1214}
1215
1216/**
1217 * gfs2_glock_poll - poll to see if an async request has been completed
1218 * @gh: the holder
1219 *
1220 * Returns: 1 if the request is ready to be gfs2_glock_wait()ed on
1221 */
1222
1223int gfs2_glock_poll(struct gfs2_holder *gh)
1224{
1225 struct gfs2_glock *gl = gh->gh_gl;
1226 int ready = 0;
1227
1228 spin_lock(&gl->gl_spin);
1229
1230 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
1231 ready = 1;
1232 else if (list_empty(&gh->gh_list)) {
1233 if (gh->gh_error == GLR_CANCELED) {
1234 spin_unlock(&gl->gl_spin);
Steven Whitehouse190562b2006-04-20 16:57:23 -04001235 msleep(100);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001236 if (gfs2_glock_nq(gh))
1237 return 1;
1238 return 0;
1239 } else
1240 ready = 1;
1241 }
1242
1243 spin_unlock(&gl->gl_spin);
1244
1245 return ready;
1246}
1247
1248/**
1249 * gfs2_glock_wait - wait for a lock acquisition that ended in a GLR_ASYNC
1250 * @gh: the holder structure
1251 *
1252 * Returns: 0, GLR_TRYFAILED, or errno on failure
1253 */
1254
1255int gfs2_glock_wait(struct gfs2_holder *gh)
1256{
1257 int error;
1258
1259 error = glock_wait_internal(gh);
1260 if (error == GLR_CANCELED) {
Steven Whitehouse190562b2006-04-20 16:57:23 -04001261 msleep(100);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001262 gh->gh_flags &= ~GL_ASYNC;
1263 error = gfs2_glock_nq(gh);
1264 }
1265
1266 return error;
1267}
1268
1269/**
1270 * gfs2_glock_dq - dequeue a struct gfs2_holder from a glock (release a glock)
1271 * @gh: the glock holder
1272 *
1273 */
1274
1275void gfs2_glock_dq(struct gfs2_holder *gh)
1276{
1277 struct gfs2_glock *gl = gh->gh_gl;
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001278 const struct gfs2_glock_operations *glops = gl->gl_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001279
David Teiglandb3b94fa2006-01-16 16:50:04 +00001280 if (gh->gh_flags & GL_NOCACHE)
1281 handle_callback(gl, LM_ST_UNLOCKED);
1282
1283 gfs2_glmutex_lock(gl);
1284
1285 spin_lock(&gl->gl_spin);
1286 list_del_init(&gh->gh_list);
1287
1288 if (list_empty(&gl->gl_holders)) {
1289 spin_unlock(&gl->gl_spin);
1290
1291 if (glops->go_unlock)
1292 glops->go_unlock(gh);
1293
David Teiglandb3b94fa2006-01-16 16:50:04 +00001294 gl->gl_stamp = jiffies;
1295
1296 spin_lock(&gl->gl_spin);
1297 }
1298
1299 clear_bit(GLF_LOCK, &gl->gl_flags);
1300 run_queue(gl);
1301 spin_unlock(&gl->gl_spin);
1302}
1303
David Teiglandb3b94fa2006-01-16 16:50:04 +00001304/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001305 * gfs2_glock_dq_uninit - dequeue a holder from a glock and initialize it
1306 * @gh: the holder structure
1307 *
1308 */
1309
1310void gfs2_glock_dq_uninit(struct gfs2_holder *gh)
1311{
1312 gfs2_glock_dq(gh);
1313 gfs2_holder_uninit(gh);
1314}
1315
1316/**
1317 * gfs2_glock_nq_num - acquire a glock based on lock number
1318 * @sdp: the filesystem
1319 * @number: the lock number
1320 * @glops: the glock operations for the type of glock
1321 * @state: the state to acquire the glock in
1322 * @flags: modifier flags for the aquisition
1323 * @gh: the struct gfs2_holder
1324 *
1325 * Returns: errno
1326 */
1327
Steven Whitehousecd915492006-09-04 12:49:07 -04001328int gfs2_glock_nq_num(struct gfs2_sbd *sdp, u64 number,
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001329 const struct gfs2_glock_operations *glops,
1330 unsigned int state, int flags, struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001331{
1332 struct gfs2_glock *gl;
1333 int error;
1334
1335 error = gfs2_glock_get(sdp, number, glops, CREATE, &gl);
1336 if (!error) {
1337 error = gfs2_glock_nq_init(gl, state, flags, gh);
1338 gfs2_glock_put(gl);
1339 }
1340
1341 return error;
1342}
1343
1344/**
1345 * glock_compare - Compare two struct gfs2_glock structures for sorting
1346 * @arg_a: the first structure
1347 * @arg_b: the second structure
1348 *
1349 */
1350
1351static int glock_compare(const void *arg_a, const void *arg_b)
1352{
Steven Whitehousea5e08a92006-09-09 17:07:05 -04001353 const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1354 const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1355 const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1356 const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001357
1358 if (a->ln_number > b->ln_number)
Steven Whitehousea5e08a92006-09-09 17:07:05 -04001359 return 1;
1360 if (a->ln_number < b->ln_number)
1361 return -1;
Steven Whitehouse1c0f4872007-01-22 12:10:39 -05001362 BUG_ON(gh_a->gh_gl->gl_ops->go_type == gh_b->gh_gl->gl_ops->go_type);
Steven Whitehousea5e08a92006-09-09 17:07:05 -04001363 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001364}
1365
1366/**
1367 * nq_m_sync - synchonously acquire more than one glock in deadlock free order
1368 * @num_gh: the number of structures
1369 * @ghs: an array of struct gfs2_holder structures
1370 *
1371 * Returns: 0 on success (all glocks acquired),
1372 * errno on failure (no glocks acquired)
1373 */
1374
1375static int nq_m_sync(unsigned int num_gh, struct gfs2_holder *ghs,
1376 struct gfs2_holder **p)
1377{
1378 unsigned int x;
1379 int error = 0;
1380
1381 for (x = 0; x < num_gh; x++)
1382 p[x] = &ghs[x];
1383
1384 sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare, NULL);
1385
1386 for (x = 0; x < num_gh; x++) {
1387 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1388
1389 error = gfs2_glock_nq(p[x]);
1390 if (error) {
1391 while (x--)
1392 gfs2_glock_dq(p[x]);
1393 break;
1394 }
1395 }
1396
1397 return error;
1398}
1399
1400/**
1401 * gfs2_glock_nq_m - acquire multiple glocks
1402 * @num_gh: the number of structures
1403 * @ghs: an array of struct gfs2_holder structures
1404 *
1405 * Figure out how big an impact this function has. Either:
1406 * 1) Replace this code with code that calls gfs2_glock_prefetch()
1407 * 2) Forget async stuff and just call nq_m_sync()
1408 * 3) Leave it like it is
1409 *
1410 * Returns: 0 on success (all glocks acquired),
1411 * errno on failure (no glocks acquired)
1412 */
1413
1414int gfs2_glock_nq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1415{
1416 int *e;
1417 unsigned int x;
1418 int borked = 0, serious = 0;
1419 int error = 0;
1420
1421 if (!num_gh)
1422 return 0;
1423
1424 if (num_gh == 1) {
1425 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1426 return gfs2_glock_nq(ghs);
1427 }
1428
1429 e = kcalloc(num_gh, sizeof(struct gfs2_holder *), GFP_KERNEL);
1430 if (!e)
1431 return -ENOMEM;
1432
1433 for (x = 0; x < num_gh; x++) {
1434 ghs[x].gh_flags |= LM_FLAG_TRY | GL_ASYNC;
1435 error = gfs2_glock_nq(&ghs[x]);
1436 if (error) {
1437 borked = 1;
1438 serious = error;
1439 num_gh = x;
1440 break;
1441 }
1442 }
1443
1444 for (x = 0; x < num_gh; x++) {
1445 error = e[x] = glock_wait_internal(&ghs[x]);
1446 if (error) {
1447 borked = 1;
1448 if (error != GLR_TRYFAILED && error != GLR_CANCELED)
1449 serious = error;
1450 }
1451 }
1452
1453 if (!borked) {
1454 kfree(e);
1455 return 0;
1456 }
1457
1458 for (x = 0; x < num_gh; x++)
1459 if (!e[x])
1460 gfs2_glock_dq(&ghs[x]);
1461
1462 if (serious)
1463 error = serious;
1464 else {
1465 for (x = 0; x < num_gh; x++)
1466 gfs2_holder_reinit(ghs[x].gh_state, ghs[x].gh_flags,
1467 &ghs[x]);
1468 error = nq_m_sync(num_gh, ghs, (struct gfs2_holder **)e);
1469 }
1470
1471 kfree(e);
1472
1473 return error;
1474}
1475
1476/**
1477 * gfs2_glock_dq_m - release multiple glocks
1478 * @num_gh: the number of structures
1479 * @ghs: an array of struct gfs2_holder structures
1480 *
1481 */
1482
1483void gfs2_glock_dq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1484{
1485 unsigned int x;
1486
1487 for (x = 0; x < num_gh; x++)
1488 gfs2_glock_dq(&ghs[x]);
1489}
1490
1491/**
1492 * gfs2_glock_dq_uninit_m - release multiple glocks
1493 * @num_gh: the number of structures
1494 * @ghs: an array of struct gfs2_holder structures
1495 *
1496 */
1497
1498void gfs2_glock_dq_uninit_m(unsigned int num_gh, struct gfs2_holder *ghs)
1499{
1500 unsigned int x;
1501
1502 for (x = 0; x < num_gh; x++)
1503 gfs2_glock_dq_uninit(&ghs[x]);
1504}
1505
1506/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001507 * gfs2_lvb_hold - attach a LVB from a glock
1508 * @gl: The glock in question
1509 *
1510 */
1511
1512int gfs2_lvb_hold(struct gfs2_glock *gl)
1513{
1514 int error;
1515
1516 gfs2_glmutex_lock(gl);
1517
1518 if (!atomic_read(&gl->gl_lvb_count)) {
1519 error = gfs2_lm_hold_lvb(gl->gl_sbd, gl->gl_lock, &gl->gl_lvb);
1520 if (error) {
1521 gfs2_glmutex_unlock(gl);
1522 return error;
1523 }
1524 gfs2_glock_hold(gl);
1525 }
1526 atomic_inc(&gl->gl_lvb_count);
1527
1528 gfs2_glmutex_unlock(gl);
1529
1530 return 0;
1531}
1532
1533/**
1534 * gfs2_lvb_unhold - detach a LVB from a glock
1535 * @gl: The glock in question
1536 *
1537 */
1538
1539void gfs2_lvb_unhold(struct gfs2_glock *gl)
1540{
1541 gfs2_glock_hold(gl);
1542 gfs2_glmutex_lock(gl);
1543
1544 gfs2_assert(gl->gl_sbd, atomic_read(&gl->gl_lvb_count) > 0);
1545 if (atomic_dec_and_test(&gl->gl_lvb_count)) {
1546 gfs2_lm_unhold_lvb(gl->gl_sbd, gl->gl_lock, gl->gl_lvb);
1547 gl->gl_lvb = NULL;
1548 gfs2_glock_put(gl);
1549 }
1550
1551 gfs2_glmutex_unlock(gl);
1552 gfs2_glock_put(gl);
1553}
1554
David Teiglandb3b94fa2006-01-16 16:50:04 +00001555static void blocking_cb(struct gfs2_sbd *sdp, struct lm_lockname *name,
1556 unsigned int state)
1557{
1558 struct gfs2_glock *gl;
1559
1560 gl = gfs2_glock_find(sdp, name);
1561 if (!gl)
1562 return;
1563
David Teiglandb3b94fa2006-01-16 16:50:04 +00001564 handle_callback(gl, state);
1565
1566 spin_lock(&gl->gl_spin);
1567 run_queue(gl);
1568 spin_unlock(&gl->gl_spin);
1569
1570 gfs2_glock_put(gl);
1571}
1572
1573/**
1574 * gfs2_glock_cb - Callback used by locking module
Steven Whitehouse1c089c32006-09-07 15:50:20 -04001575 * @sdp: Pointer to the superblock
David Teiglandb3b94fa2006-01-16 16:50:04 +00001576 * @type: Type of callback
1577 * @data: Type dependent data pointer
1578 *
1579 * Called by the locking module when it wants to tell us something.
1580 * Either we need to drop a lock, one of our ASYNC requests completed, or
1581 * a journal from another client needs to be recovered.
1582 */
1583
Steven Whitehouse9b47c112006-09-08 10:17:58 -04001584void gfs2_glock_cb(void *cb_data, unsigned int type, void *data)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001585{
Steven Whitehouse9b47c112006-09-08 10:17:58 -04001586 struct gfs2_sbd *sdp = cb_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001587
David Teiglandb3b94fa2006-01-16 16:50:04 +00001588 switch (type) {
1589 case LM_CB_NEED_E:
David Teiglande7f5c012006-04-27 11:25:45 -04001590 blocking_cb(sdp, data, LM_ST_UNLOCKED);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001591 return;
1592
1593 case LM_CB_NEED_D:
David Teiglande7f5c012006-04-27 11:25:45 -04001594 blocking_cb(sdp, data, LM_ST_DEFERRED);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001595 return;
1596
1597 case LM_CB_NEED_S:
David Teiglande7f5c012006-04-27 11:25:45 -04001598 blocking_cb(sdp, data, LM_ST_SHARED);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001599 return;
1600
1601 case LM_CB_ASYNC: {
David Teiglande7f5c012006-04-27 11:25:45 -04001602 struct lm_async_cb *async = data;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001603 struct gfs2_glock *gl;
1604
1605 gl = gfs2_glock_find(sdp, &async->lc_name);
1606 if (gfs2_assert_warn(sdp, gl))
1607 return;
1608 if (!gfs2_assert_warn(sdp, gl->gl_req_bh))
1609 gl->gl_req_bh(gl, async->lc_ret);
1610 gfs2_glock_put(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001611 return;
1612 }
1613
1614 case LM_CB_NEED_RECOVERY:
1615 gfs2_jdesc_make_dirty(sdp, *(unsigned int *)data);
1616 if (sdp->sd_recoverd_process)
1617 wake_up_process(sdp->sd_recoverd_process);
1618 return;
1619
1620 case LM_CB_DROPLOCKS:
1621 gfs2_gl_hash_clear(sdp, NO_WAIT);
1622 gfs2_quota_scan(sdp);
1623 return;
1624
1625 default:
1626 gfs2_assert_warn(sdp, 0);
1627 return;
1628 }
1629}
1630
1631/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001632 * demote_ok - Check to see if it's ok to unlock a glock
1633 * @gl: the glock
1634 *
1635 * Returns: 1 if it's ok
1636 */
1637
1638static int demote_ok(struct gfs2_glock *gl)
1639{
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001640 const struct gfs2_glock_operations *glops = gl->gl_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001641 int demote = 1;
1642
1643 if (test_bit(GLF_STICKY, &gl->gl_flags))
1644 demote = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001645 else if (glops->go_demote_ok)
1646 demote = glops->go_demote_ok(gl);
1647
1648 return demote;
1649}
1650
1651/**
1652 * gfs2_glock_schedule_for_reclaim - Add a glock to the reclaim list
1653 * @gl: the glock
1654 *
1655 */
1656
1657void gfs2_glock_schedule_for_reclaim(struct gfs2_glock *gl)
1658{
1659 struct gfs2_sbd *sdp = gl->gl_sbd;
1660
1661 spin_lock(&sdp->sd_reclaim_lock);
1662 if (list_empty(&gl->gl_reclaim)) {
1663 gfs2_glock_hold(gl);
1664 list_add(&gl->gl_reclaim, &sdp->sd_reclaim_list);
1665 atomic_inc(&sdp->sd_reclaim_count);
1666 }
1667 spin_unlock(&sdp->sd_reclaim_lock);
1668
1669 wake_up(&sdp->sd_reclaim_wq);
1670}
1671
1672/**
1673 * gfs2_reclaim_glock - process the next glock on the filesystem's reclaim list
1674 * @sdp: the filesystem
1675 *
1676 * Called from gfs2_glockd() glock reclaim daemon, or when promoting a
1677 * different glock and we notice that there are a lot of glocks in the
1678 * reclaim list.
1679 *
1680 */
1681
1682void gfs2_reclaim_glock(struct gfs2_sbd *sdp)
1683{
1684 struct gfs2_glock *gl;
1685
1686 spin_lock(&sdp->sd_reclaim_lock);
1687 if (list_empty(&sdp->sd_reclaim_list)) {
1688 spin_unlock(&sdp->sd_reclaim_lock);
1689 return;
1690 }
1691 gl = list_entry(sdp->sd_reclaim_list.next,
1692 struct gfs2_glock, gl_reclaim);
1693 list_del_init(&gl->gl_reclaim);
1694 spin_unlock(&sdp->sd_reclaim_lock);
1695
1696 atomic_dec(&sdp->sd_reclaim_count);
1697 atomic_inc(&sdp->sd_reclaimed);
1698
1699 if (gfs2_glmutex_trylock(gl)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001700 if (queue_empty(gl, &gl->gl_holders) &&
Steven Whitehouse50299962006-09-04 09:49:55 -04001701 gl->gl_state != LM_ST_UNLOCKED && demote_ok(gl))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001702 handle_callback(gl, LM_ST_UNLOCKED);
1703 gfs2_glmutex_unlock(gl);
1704 }
1705
1706 gfs2_glock_put(gl);
1707}
1708
1709/**
1710 * examine_bucket - Call a function for glock in a hash bucket
1711 * @examiner: the function
1712 * @sdp: the filesystem
1713 * @bucket: the bucket
1714 *
1715 * Returns: 1 if the bucket has entries
1716 */
1717
1718static int examine_bucket(glock_examiner examiner, struct gfs2_sbd *sdp,
Steven Whitehouse37b2fa62006-09-08 13:35:56 -04001719 unsigned int hash)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001720{
Steven Whitehouse24264432006-09-11 21:40:30 -04001721 struct gfs2_glock *gl, *prev = NULL;
1722 int has_entries = 0;
Steven Whitehouseb6397892006-09-12 10:10:01 -04001723 struct hlist_head *head = &gl_hash_table[hash].hb_list;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001724
Steven Whitehouse24264432006-09-11 21:40:30 -04001725 read_lock(gl_lock_addr(hash));
Steven Whitehouseb6397892006-09-12 10:10:01 -04001726 /* Can't use hlist_for_each_entry - don't want prefetch here */
1727 if (hlist_empty(head))
Steven Whitehouse24264432006-09-11 21:40:30 -04001728 goto out;
Steven Whitehouseb6397892006-09-12 10:10:01 -04001729 gl = list_entry(head->first, struct gfs2_glock, gl_list);
1730 while(1) {
Steven Whitehouse24264432006-09-11 21:40:30 -04001731 if (gl->gl_sbd == sdp) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001732 gfs2_glock_hold(gl);
Steven Whitehouse24264432006-09-11 21:40:30 -04001733 read_unlock(gl_lock_addr(hash));
1734 if (prev)
1735 gfs2_glock_put(prev);
1736 prev = gl;
1737 examiner(gl);
Steven Whitehousea8336342006-09-14 13:57:38 -04001738 has_entries = 1;
Steven Whitehouse24264432006-09-11 21:40:30 -04001739 read_lock(gl_lock_addr(hash));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001740 }
Steven Whitehouseb6397892006-09-12 10:10:01 -04001741 if (gl->gl_list.next == NULL)
1742 break;
Steven Whitehouse24264432006-09-11 21:40:30 -04001743 gl = list_entry(gl->gl_list.next, struct gfs2_glock, gl_list);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001744 }
Steven Whitehouse24264432006-09-11 21:40:30 -04001745out:
1746 read_unlock(gl_lock_addr(hash));
1747 if (prev)
1748 gfs2_glock_put(prev);
1749 return has_entries;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001750}
1751
1752/**
1753 * scan_glock - look at a glock and see if we can reclaim it
1754 * @gl: the glock to look at
1755 *
1756 */
1757
1758static void scan_glock(struct gfs2_glock *gl)
1759{
Steven Whitehouseb0041572006-11-23 10:51:34 -05001760 if (gl->gl_ops == &gfs2_inode_glops && gl->gl_object)
Steven Whitehouse24264432006-09-11 21:40:30 -04001761 return;
Steven Whitehousea2242db2006-08-24 17:03:05 -04001762
David Teiglandb3b94fa2006-01-16 16:50:04 +00001763 if (gfs2_glmutex_trylock(gl)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001764 if (queue_empty(gl, &gl->gl_holders) &&
Steven Whitehouse24264432006-09-11 21:40:30 -04001765 gl->gl_state != LM_ST_UNLOCKED && demote_ok(gl))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001766 goto out_schedule;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001767 gfs2_glmutex_unlock(gl);
1768 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001769 return;
1770
Steven Whitehouse627add22006-07-05 13:16:19 -04001771out_schedule:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001772 gfs2_glmutex_unlock(gl);
1773 gfs2_glock_schedule_for_reclaim(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001774}
1775
1776/**
1777 * gfs2_scand_internal - Look for glocks and inodes to toss from memory
1778 * @sdp: the filesystem
1779 *
1780 */
1781
1782void gfs2_scand_internal(struct gfs2_sbd *sdp)
1783{
1784 unsigned int x;
1785
Steven Whitehouse94610612006-09-09 18:59:27 -04001786 for (x = 0; x < GFS2_GL_HASH_SIZE; x++)
Steven Whitehouse37b2fa62006-09-08 13:35:56 -04001787 examine_bucket(scan_glock, sdp, x);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001788}
1789
1790/**
1791 * clear_glock - look at a glock and see if we can free it from glock cache
1792 * @gl: the glock to look at
1793 *
1794 */
1795
1796static void clear_glock(struct gfs2_glock *gl)
1797{
1798 struct gfs2_sbd *sdp = gl->gl_sbd;
1799 int released;
1800
1801 spin_lock(&sdp->sd_reclaim_lock);
1802 if (!list_empty(&gl->gl_reclaim)) {
1803 list_del_init(&gl->gl_reclaim);
1804 atomic_dec(&sdp->sd_reclaim_count);
Steven Whitehouse190562b2006-04-20 16:57:23 -04001805 spin_unlock(&sdp->sd_reclaim_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001806 released = gfs2_glock_put(gl);
1807 gfs2_assert(sdp, !released);
Steven Whitehouse190562b2006-04-20 16:57:23 -04001808 } else {
1809 spin_unlock(&sdp->sd_reclaim_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001810 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001811
1812 if (gfs2_glmutex_trylock(gl)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001813 if (queue_empty(gl, &gl->gl_holders) &&
1814 gl->gl_state != LM_ST_UNLOCKED)
1815 handle_callback(gl, LM_ST_UNLOCKED);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001816 gfs2_glmutex_unlock(gl);
1817 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001818}
1819
1820/**
1821 * gfs2_gl_hash_clear - Empty out the glock hash table
1822 * @sdp: the filesystem
1823 * @wait: wait until it's all gone
1824 *
1825 * Called when unmounting the filesystem, or when inter-node lock manager
1826 * requests DROPLOCKS because it is running out of capacity.
1827 */
1828
1829void gfs2_gl_hash_clear(struct gfs2_sbd *sdp, int wait)
1830{
1831 unsigned long t;
1832 unsigned int x;
1833 int cont;
1834
1835 t = jiffies;
1836
1837 for (;;) {
1838 cont = 0;
Steven Whitehouse24264432006-09-11 21:40:30 -04001839 for (x = 0; x < GFS2_GL_HASH_SIZE; x++) {
Steven Whitehouse907b9bc2006-09-25 09:26:04 -04001840 if (examine_bucket(clear_glock, sdp, x))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001841 cont = 1;
Steven Whitehouse24264432006-09-11 21:40:30 -04001842 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001843
1844 if (!wait || !cont)
1845 break;
1846
1847 if (time_after_eq(jiffies,
1848 t + gfs2_tune_get(sdp, gt_stall_secs) * HZ)) {
1849 fs_warn(sdp, "Unmount seems to be stalled. "
1850 "Dumping lock state...\n");
1851 gfs2_dump_lockstate(sdp);
1852 t = jiffies;
1853 }
1854
David Teiglandb3b94fa2006-01-16 16:50:04 +00001855 invalidate_inodes(sdp->sd_vfs);
Steven Whitehousefd88de562006-05-05 16:59:11 -04001856 msleep(10);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001857 }
1858}
1859
1860/*
1861 * Diagnostic routines to help debug distributed deadlock
1862 */
1863
1864/**
1865 * dump_holder - print information about a glock holder
1866 * @str: a string naming the type of holder
1867 * @gh: the glock holder
1868 *
1869 * Returns: 0 on success, -ENOBUFS when we run out of space
1870 */
1871
1872static int dump_holder(char *str, struct gfs2_holder *gh)
1873{
1874 unsigned int x;
1875 int error = -ENOBUFS;
1876
Steven Whitehoused92a8d42006-02-27 10:57:14 -05001877 printk(KERN_INFO " %s\n", str);
1878 printk(KERN_INFO " owner = %ld\n",
David Teiglandb3b94fa2006-01-16 16:50:04 +00001879 (gh->gh_owner) ? (long)gh->gh_owner->pid : -1);
Steven Whitehoused92a8d42006-02-27 10:57:14 -05001880 printk(KERN_INFO " gh_state = %u\n", gh->gh_state);
1881 printk(KERN_INFO " gh_flags =");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001882 for (x = 0; x < 32; x++)
1883 if (gh->gh_flags & (1 << x))
1884 printk(" %u", x);
1885 printk(" \n");
Steven Whitehoused92a8d42006-02-27 10:57:14 -05001886 printk(KERN_INFO " error = %d\n", gh->gh_error);
1887 printk(KERN_INFO " gh_iflags =");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001888 for (x = 0; x < 32; x++)
1889 if (test_bit(x, &gh->gh_iflags))
1890 printk(" %u", x);
1891 printk(" \n");
Steven Whitehoused0dc80d2006-03-29 14:36:49 -05001892 print_symbol(KERN_INFO " initialized at: %s\n", gh->gh_ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001893
1894 error = 0;
1895
1896 return error;
1897}
1898
1899/**
1900 * dump_inode - print information about an inode
1901 * @ip: the inode
1902 *
1903 * Returns: 0 on success, -ENOBUFS when we run out of space
1904 */
1905
1906static int dump_inode(struct gfs2_inode *ip)
1907{
1908 unsigned int x;
1909 int error = -ENOBUFS;
1910
Steven Whitehoused92a8d42006-02-27 10:57:14 -05001911 printk(KERN_INFO " Inode:\n");
1912 printk(KERN_INFO " num = %llu %llu\n",
Steven Whitehouse382066d2006-05-24 10:22:09 -04001913 (unsigned long long)ip->i_num.no_formal_ino,
1914 (unsigned long long)ip->i_num.no_addr);
Steven Whitehouseb60623c2006-11-01 12:22:46 -05001915 printk(KERN_INFO " type = %u\n", IF2DT(ip->i_inode.i_mode));
Steven Whitehoused92a8d42006-02-27 10:57:14 -05001916 printk(KERN_INFO " i_flags =");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001917 for (x = 0; x < 32; x++)
1918 if (test_bit(x, &ip->i_flags))
1919 printk(" %u", x);
1920 printk(" \n");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001921
1922 error = 0;
1923
1924 return error;
1925}
1926
1927/**
1928 * dump_glock - print information about a glock
1929 * @gl: the glock
1930 * @count: where we are in the buffer
1931 *
1932 * Returns: 0 on success, -ENOBUFS when we run out of space
1933 */
1934
1935static int dump_glock(struct gfs2_glock *gl)
1936{
1937 struct gfs2_holder *gh;
1938 unsigned int x;
1939 int error = -ENOBUFS;
1940
1941 spin_lock(&gl->gl_spin);
1942
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001943 printk(KERN_INFO "Glock 0x%p (%u, %llu)\n", gl, gl->gl_name.ln_type,
Steven Whitehouse382066d2006-05-24 10:22:09 -04001944 (unsigned long long)gl->gl_name.ln_number);
Steven Whitehoused92a8d42006-02-27 10:57:14 -05001945 printk(KERN_INFO " gl_flags =");
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001946 for (x = 0; x < 32; x++) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001947 if (test_bit(x, &gl->gl_flags))
1948 printk(" %u", x);
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001949 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001950 printk(" \n");
Steven Whitehouse16feb9f2006-09-13 10:43:37 -04001951 printk(KERN_INFO " gl_ref = %d\n", atomic_read(&gl->gl_ref));
Steven Whitehoused92a8d42006-02-27 10:57:14 -05001952 printk(KERN_INFO " gl_state = %u\n", gl->gl_state);
Steven Whitehouse320dd102006-05-18 16:25:27 -04001953 printk(KERN_INFO " gl_owner = %s\n", gl->gl_owner->comm);
1954 print_symbol(KERN_INFO " gl_ip = %s\n", gl->gl_ip);
Steven Whitehoused92a8d42006-02-27 10:57:14 -05001955 printk(KERN_INFO " req_gh = %s\n", (gl->gl_req_gh) ? "yes" : "no");
1956 printk(KERN_INFO " req_bh = %s\n", (gl->gl_req_bh) ? "yes" : "no");
1957 printk(KERN_INFO " lvb_count = %d\n", atomic_read(&gl->gl_lvb_count));
1958 printk(KERN_INFO " object = %s\n", (gl->gl_object) ? "yes" : "no");
1959 printk(KERN_INFO " le = %s\n",
David Teiglandb3b94fa2006-01-16 16:50:04 +00001960 (list_empty(&gl->gl_le.le_list)) ? "no" : "yes");
Steven Whitehoused92a8d42006-02-27 10:57:14 -05001961 printk(KERN_INFO " reclaim = %s\n",
David Teiglandb3b94fa2006-01-16 16:50:04 +00001962 (list_empty(&gl->gl_reclaim)) ? "no" : "yes");
1963 if (gl->gl_aspace)
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001964 printk(KERN_INFO " aspace = 0x%p nrpages = %lu\n", gl->gl_aspace,
Russell Cattelan88721872006-08-10 11:08:40 -05001965 gl->gl_aspace->i_mapping->nrpages);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001966 else
Steven Whitehoused92a8d42006-02-27 10:57:14 -05001967 printk(KERN_INFO " aspace = no\n");
1968 printk(KERN_INFO " ail = %d\n", atomic_read(&gl->gl_ail_count));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001969 if (gl->gl_req_gh) {
1970 error = dump_holder("Request", gl->gl_req_gh);
1971 if (error)
1972 goto out;
1973 }
1974 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
1975 error = dump_holder("Holder", gh);
1976 if (error)
1977 goto out;
1978 }
1979 list_for_each_entry(gh, &gl->gl_waiters1, gh_list) {
1980 error = dump_holder("Waiter1", gh);
1981 if (error)
1982 goto out;
1983 }
1984 list_for_each_entry(gh, &gl->gl_waiters2, gh_list) {
1985 error = dump_holder("Waiter2", gh);
1986 if (error)
1987 goto out;
1988 }
1989 list_for_each_entry(gh, &gl->gl_waiters3, gh_list) {
1990 error = dump_holder("Waiter3", gh);
1991 if (error)
1992 goto out;
1993 }
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001994 if (gl->gl_ops == &gfs2_inode_glops && gl->gl_object) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001995 if (!test_bit(GLF_LOCK, &gl->gl_flags) &&
1996 list_empty(&gl->gl_holders)) {
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001997 error = dump_inode(gl->gl_object);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001998 if (error)
1999 goto out;
2000 } else {
2001 error = -ENOBUFS;
Steven Whitehoused92a8d42006-02-27 10:57:14 -05002002 printk(KERN_INFO " Inode: busy\n");
David Teiglandb3b94fa2006-01-16 16:50:04 +00002003 }
2004 }
2005
2006 error = 0;
2007
Steven Whitehousea91ea692006-09-04 12:04:26 -04002008out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00002009 spin_unlock(&gl->gl_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002010 return error;
2011}
2012
2013/**
2014 * gfs2_dump_lockstate - print out the current lockstate
2015 * @sdp: the filesystem
2016 * @ub: the buffer to copy the information into
2017 *
2018 * If @ub is NULL, dump the lockstate to the console.
2019 *
2020 */
2021
Adrian Bunk08bc2db2006-04-28 10:59:12 -04002022static int gfs2_dump_lockstate(struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002023{
David Teiglandb3b94fa2006-01-16 16:50:04 +00002024 struct gfs2_glock *gl;
Steven Whitehouseb6397892006-09-12 10:10:01 -04002025 struct hlist_node *h;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002026 unsigned int x;
2027 int error = 0;
2028
2029 for (x = 0; x < GFS2_GL_HASH_SIZE; x++) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00002030
Steven Whitehouse087efdd2006-09-09 16:59:11 -04002031 read_lock(gl_lock_addr(x));
David Teiglandb3b94fa2006-01-16 16:50:04 +00002032
Steven Whitehouseb6397892006-09-12 10:10:01 -04002033 hlist_for_each_entry(gl, h, &gl_hash_table[x].hb_list, gl_list) {
Steven Whitehouse85d1da62006-09-07 14:40:21 -04002034 if (gl->gl_sbd != sdp)
2035 continue;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002036
2037 error = dump_glock(gl);
2038 if (error)
2039 break;
2040 }
2041
Steven Whitehouse087efdd2006-09-09 16:59:11 -04002042 read_unlock(gl_lock_addr(x));
David Teiglandb3b94fa2006-01-16 16:50:04 +00002043
2044 if (error)
2045 break;
2046 }
2047
2048
2049 return error;
2050}
2051
Steven Whitehouse85d1da62006-09-07 14:40:21 -04002052int __init gfs2_glock_init(void)
2053{
2054 unsigned i;
2055 for(i = 0; i < GFS2_GL_HASH_SIZE; i++) {
Steven Whitehouseb6397892006-09-12 10:10:01 -04002056 INIT_HLIST_HEAD(&gl_hash_table[i].hb_list);
Steven Whitehouse85d1da62006-09-07 14:40:21 -04002057 }
Steven Whitehouse087efdd2006-09-09 16:59:11 -04002058#ifdef GL_HASH_LOCK_SZ
2059 for(i = 0; i < GL_HASH_LOCK_SZ; i++) {
2060 rwlock_init(&gl_hash_locks[i]);
2061 }
2062#endif
Steven Whitehouse85d1da62006-09-07 14:40:21 -04002063 return 0;
2064}
2065