blob: cd200a564c791be53bb51eb672486e44dff7f120 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Bob Petersoncf45b752008-01-31 10:31:39 -06003 * Copyright (C) 2004-2008 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>
David Teiglandb3b94fa2006-01-16 16:50:04 +000013#include <linux/buffer_head.h>
14#include <linux/delay.h>
15#include <linux/sort.h>
16#include <linux/jhash.h>
Steven Whitehoused0dc80d2006-03-29 14:36:49 -050017#include <linux/kallsyms.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050018#include <linux/gfs2_ondisk.h>
Steven Whitehouse24264432006-09-11 21:40:30 -040019#include <linux/list.h>
Steven Whitehousefee852e2007-01-17 15:33:23 +000020#include <linux/wait.h>
akpm@linux-foundation.org95d97b72007-03-05 23:10:39 -080021#include <linux/module.h>
Steven Whitehouse61be0842007-01-29 11:51:45 +000022#include <linux/rwsem.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000023#include <asm/uaccess.h>
Robert Peterson7c52b162007-03-16 10:26:37 +000024#include <linux/seq_file.h>
25#include <linux/debugfs.h>
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +010026#include <linux/kthread.h>
27#include <linux/freezer.h>
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -050028#include <linux/workqueue.h>
29#include <linux/jiffies.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000030
31#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050032#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000033#include "glock.h"
34#include "glops.h"
35#include "inode.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000036#include "lops.h"
37#include "meta_io.h"
38#include "quota.h"
39#include "super.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050040#include "util.h"
Steven Whitehouse813e0c42008-11-18 13:38:48 +000041#include "bmap.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000042
Steven Whitehouse37b2fa62006-09-08 13:35:56 -040043struct gfs2_gl_hash_bucket {
Steven Whitehouseb6397892006-09-12 10:10:01 -040044 struct hlist_head hb_list;
Steven Whitehouse37b2fa62006-09-08 13:35:56 -040045};
46
Steven Whitehouse6802e342008-05-21 17:03:22 +010047struct gfs2_glock_iter {
48 int hash; /* hash bucket index */
49 struct gfs2_sbd *sdp; /* incore superblock */
50 struct gfs2_glock *gl; /* current glock struct */
51 char string[512]; /* scratch space */
Robert Peterson7c52b162007-03-16 10:26:37 +000052};
53
David Teiglandb3b94fa2006-01-16 16:50:04 +000054typedef void (*glock_examiner) (struct gfs2_glock * gl);
55
Adrian Bunk08bc2db2006-04-28 10:59:12 -040056static int gfs2_dump_lockstate(struct gfs2_sbd *sdp);
Steven Whitehouse6802e342008-05-21 17:03:22 +010057static int __dump_glock(struct seq_file *seq, const struct gfs2_glock *gl);
58#define GLOCK_BUG_ON(gl,x) do { if (unlikely(x)) { __dump_glock(NULL, gl); BUG(); } } while(0)
59static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -050060
Steven Whitehouse61be0842007-01-29 11:51:45 +000061static DECLARE_RWSEM(gfs2_umount_flush_sem);
Robert Peterson7c52b162007-03-16 10:26:37 +000062static struct dentry *gfs2_root;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -050063static struct workqueue_struct *glock_workqueue;
Steven Whitehouse97cc1022008-11-20 13:39:47 +000064static LIST_HEAD(lru_list);
65static atomic_t lru_count = ATOMIC_INIT(0);
Julia Lawalleb8374e2008-12-25 15:35:27 +010066static DEFINE_SPINLOCK(lru_lock);
Adrian Bunk08bc2db2006-04-28 10:59:12 -040067
Steven Whitehouseb6397892006-09-12 10:10:01 -040068#define GFS2_GL_HASH_SHIFT 15
Steven Whitehouse087efdd2006-09-09 16:59:11 -040069#define GFS2_GL_HASH_SIZE (1 << GFS2_GL_HASH_SHIFT)
70#define GFS2_GL_HASH_MASK (GFS2_GL_HASH_SIZE - 1)
71
Steven Whitehouse85d1da62006-09-07 14:40:21 -040072static struct gfs2_gl_hash_bucket gl_hash_table[GFS2_GL_HASH_SIZE];
Robert Peterson04b933f2007-03-23 17:05:15 -050073static struct dentry *gfs2_root;
Steven Whitehouse087efdd2006-09-09 16:59:11 -040074
75/*
76 * Despite what you might think, the numbers below are not arbitrary :-)
77 * They are taken from the ipv4 routing hash code, which is well tested
78 * and thus should be nearly optimal. Later on we might tweek the numbers
79 * but for now this should be fine.
80 *
81 * The reason for putting the locks in a separate array from the list heads
82 * is that we can have fewer locks than list heads and save memory. We use
83 * the same hash function for both, but with a different hash mask.
84 */
85#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK) || \
86 defined(CONFIG_PROVE_LOCKING)
87
88#ifdef CONFIG_LOCKDEP
89# define GL_HASH_LOCK_SZ 256
90#else
91# if NR_CPUS >= 32
92# define GL_HASH_LOCK_SZ 4096
93# elif NR_CPUS >= 16
94# define GL_HASH_LOCK_SZ 2048
95# elif NR_CPUS >= 8
96# define GL_HASH_LOCK_SZ 1024
97# elif NR_CPUS >= 4
98# define GL_HASH_LOCK_SZ 512
99# else
100# define GL_HASH_LOCK_SZ 256
101# endif
102#endif
103
104/* We never want more locks than chains */
105#if GFS2_GL_HASH_SIZE < GL_HASH_LOCK_SZ
106# undef GL_HASH_LOCK_SZ
107# define GL_HASH_LOCK_SZ GFS2_GL_HASH_SIZE
108#endif
109
110static rwlock_t gl_hash_locks[GL_HASH_LOCK_SZ];
111
112static inline rwlock_t *gl_lock_addr(unsigned int x)
113{
Steven Whitehouse94610612006-09-09 18:59:27 -0400114 return &gl_hash_locks[x & (GL_HASH_LOCK_SZ-1)];
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400115}
116#else /* not SMP, so no spinlocks required */
Randy Dunlap0ac23062006-11-28 22:29:19 -0800117static inline rwlock_t *gl_lock_addr(unsigned int x)
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400118{
119 return NULL;
120}
121#endif
Steven Whitehouse85d1da62006-09-07 14:40:21 -0400122
David Teiglandb3b94fa2006-01-16 16:50:04 +0000123/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000124 * gl_hash() - Turn glock number into hash bucket number
125 * @lock: The glock number
126 *
127 * Returns: The number of the corresponding hash bucket
128 */
129
Steven Whitehouseb8547852006-09-07 13:12:27 -0400130static unsigned int gl_hash(const struct gfs2_sbd *sdp,
131 const struct lm_lockname *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000132{
133 unsigned int h;
134
Steven Whitehousecd915492006-09-04 12:49:07 -0400135 h = jhash(&name->ln_number, sizeof(u64), 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000136 h = jhash(&name->ln_type, sizeof(unsigned int), h);
Steven Whitehouseb8547852006-09-07 13:12:27 -0400137 h = jhash(&sdp, sizeof(struct gfs2_sbd *), h);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000138 h &= GFS2_GL_HASH_MASK;
139
140 return h;
141}
142
143/**
144 * glock_free() - Perform a few checks and then release struct gfs2_glock
145 * @gl: The glock to release
146 *
147 * Also calls lock module to release its internal structure for this glock.
148 *
149 */
150
151static void glock_free(struct gfs2_glock *gl)
152{
153 struct gfs2_sbd *sdp = gl->gl_sbd;
154 struct inode *aspace = gl->gl_aspace;
155
David Teiglandb3b94fa2006-01-16 16:50:04 +0000156 if (aspace)
157 gfs2_aspace_put(aspace);
158
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000159 sdp->sd_lockstruct.ls_ops->lm_put_lock(gfs2_glock_cachep, gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000160}
161
162/**
163 * gfs2_glock_hold() - increment reference count on glock
164 * @gl: The glock to hold
165 *
166 */
167
Adrian Bunk048786f2008-01-29 00:11:34 +0200168static void gfs2_glock_hold(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000169{
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400170 atomic_inc(&gl->gl_ref);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000171}
172
173/**
Steven Whitehouse97cc1022008-11-20 13:39:47 +0000174 * gfs2_glock_schedule_for_reclaim - Add a glock to the reclaim list
175 * @gl: the glock
176 *
177 */
178
179static void gfs2_glock_schedule_for_reclaim(struct gfs2_glock *gl)
180{
181 spin_lock(&lru_lock);
182 if (list_empty(&gl->gl_lru) && gl->gl_state != LM_ST_UNLOCKED) {
183 list_add_tail(&gl->gl_lru, &lru_list);
184 atomic_inc(&lru_count);
185 }
186 spin_unlock(&lru_lock);
187}
188
189/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000190 * gfs2_glock_put() - Decrement reference count on glock
191 * @gl: The glock to put
192 *
193 */
194
195int gfs2_glock_put(struct gfs2_glock *gl)
196{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000197 int rv = 0;
198
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400199 write_lock(gl_lock_addr(gl->gl_hash));
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400200 if (atomic_dec_and_test(&gl->gl_ref)) {
Steven Whitehouseb6397892006-09-12 10:10:01 -0400201 hlist_del(&gl->gl_list);
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400202 write_unlock(gl_lock_addr(gl->gl_hash));
Steven Whitehouse97cc1022008-11-20 13:39:47 +0000203 spin_lock(&lru_lock);
204 if (!list_empty(&gl->gl_lru)) {
205 list_del_init(&gl->gl_lru);
206 atomic_dec(&lru_count);
207 }
208 spin_unlock(&lru_lock);
Steven Whitehouse97cc1022008-11-20 13:39:47 +0000209 GLOCK_BUG_ON(gl, !list_empty(&gl->gl_lru));
Steven Whitehouse6802e342008-05-21 17:03:22 +0100210 GLOCK_BUG_ON(gl, !list_empty(&gl->gl_holders));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000211 glock_free(gl);
212 rv = 1;
213 goto out;
214 }
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400215 write_unlock(gl_lock_addr(gl->gl_hash));
Steven Whitehouse97cc1022008-11-20 13:39:47 +0000216 /* 1 for being hashed, 1 for having state != LM_ST_UNLOCKED */
217 if (atomic_read(&gl->gl_ref) == 2)
218 gfs2_glock_schedule_for_reclaim(gl);
Steven Whitehousea2242db2006-08-24 17:03:05 -0400219out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000220 return rv;
221}
222
223/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000224 * search_bucket() - Find struct gfs2_glock by lock number
225 * @bucket: the bucket to search
226 * @name: The lock name
227 *
228 * Returns: NULL, or the struct gfs2_glock with the requested number
229 */
230
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400231static struct gfs2_glock *search_bucket(unsigned int hash,
Steven Whitehouse899be4d2006-08-30 12:50:28 -0400232 const struct gfs2_sbd *sdp,
Steven Whitehoused6a53722006-08-30 11:16:23 -0400233 const struct lm_lockname *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000234{
235 struct gfs2_glock *gl;
Steven Whitehouseb6397892006-09-12 10:10:01 -0400236 struct hlist_node *h;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000237
Steven Whitehouseb6397892006-09-12 10:10:01 -0400238 hlist_for_each_entry(gl, h, &gl_hash_table[hash].hb_list, gl_list) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000239 if (!lm_name_equal(&gl->gl_name, name))
240 continue;
Steven Whitehouse899be4d2006-08-30 12:50:28 -0400241 if (gl->gl_sbd != sdp)
242 continue;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000243
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400244 atomic_inc(&gl->gl_ref);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000245
246 return gl;
247 }
248
249 return NULL;
250}
251
252/**
Steven Whitehouse6802e342008-05-21 17:03:22 +0100253 * may_grant - check if its ok to grant a new lock
254 * @gl: The glock
255 * @gh: The lock request which we wish to grant
256 *
257 * Returns: true if its ok to grant the lock
258 */
259
260static inline int may_grant(const struct gfs2_glock *gl, const struct gfs2_holder *gh)
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500261{
Steven Whitehouse6802e342008-05-21 17:03:22 +0100262 const struct gfs2_holder *gh_head = list_entry(gl->gl_holders.next, const struct gfs2_holder, gh_list);
263 if ((gh->gh_state == LM_ST_EXCLUSIVE ||
264 gh_head->gh_state == LM_ST_EXCLUSIVE) && gh != gh_head)
265 return 0;
266 if (gl->gl_state == gh->gh_state)
267 return 1;
268 if (gh->gh_flags & GL_EXACT)
269 return 0;
Steven Whitehouse209806a2008-07-07 10:07:28 +0100270 if (gl->gl_state == LM_ST_EXCLUSIVE) {
271 if (gh->gh_state == LM_ST_SHARED && gh_head->gh_state == LM_ST_SHARED)
272 return 1;
273 if (gh->gh_state == LM_ST_DEFERRED && gh_head->gh_state == LM_ST_DEFERRED)
274 return 1;
275 }
Steven Whitehouse6802e342008-05-21 17:03:22 +0100276 if (gl->gl_state != LM_ST_UNLOCKED && (gh->gh_flags & LM_FLAG_ANY))
277 return 1;
278 return 0;
279}
280
281static void gfs2_holder_wake(struct gfs2_holder *gh)
282{
283 clear_bit(HIF_WAIT, &gh->gh_iflags);
284 smp_mb__after_clear_bit();
285 wake_up_bit(&gh->gh_iflags, HIF_WAIT);
286}
287
288/**
289 * do_promote - promote as many requests as possible on the current queue
290 * @gl: The glock
291 *
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000292 * Returns: 1 if there is a blocked holder at the head of the list, or 2
293 * if a type specific operation is underway.
Steven Whitehouse6802e342008-05-21 17:03:22 +0100294 */
295
296static int do_promote(struct gfs2_glock *gl)
Harvey Harrison55ba4742008-10-24 11:31:12 -0700297__releases(&gl->gl_spin)
298__acquires(&gl->gl_spin)
Steven Whitehouse6802e342008-05-21 17:03:22 +0100299{
300 const struct gfs2_glock_operations *glops = gl->gl_ops;
301 struct gfs2_holder *gh, *tmp;
302 int ret;
303
304restart:
305 list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) {
306 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
307 continue;
308 if (may_grant(gl, gh)) {
309 if (gh->gh_list.prev == &gl->gl_holders &&
310 glops->go_lock) {
311 spin_unlock(&gl->gl_spin);
312 /* FIXME: eliminate this eventually */
313 ret = glops->go_lock(gh);
314 spin_lock(&gl->gl_spin);
315 if (ret) {
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000316 if (ret == 1)
317 return 2;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100318 gh->gh_error = ret;
319 list_del_init(&gh->gh_list);
320 gfs2_holder_wake(gh);
321 goto restart;
322 }
323 set_bit(HIF_HOLDER, &gh->gh_iflags);
324 gfs2_holder_wake(gh);
325 goto restart;
326 }
327 set_bit(HIF_HOLDER, &gh->gh_iflags);
328 gfs2_holder_wake(gh);
329 continue;
330 }
331 if (gh->gh_list.prev == &gl->gl_holders)
332 return 1;
333 break;
334 }
335 return 0;
336}
337
338/**
339 * do_error - Something unexpected has happened during a lock request
340 *
341 */
342
343static inline void do_error(struct gfs2_glock *gl, const int ret)
344{
345 struct gfs2_holder *gh, *tmp;
346
347 list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) {
348 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
349 continue;
350 if (ret & LM_OUT_ERROR)
351 gh->gh_error = -EIO;
352 else if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))
353 gh->gh_error = GLR_TRYFAILED;
354 else
355 continue;
356 list_del_init(&gh->gh_list);
357 gfs2_holder_wake(gh);
358 }
359}
360
361/**
362 * find_first_waiter - find the first gh that's waiting for the glock
363 * @gl: the glock
364 */
365
366static inline struct gfs2_holder *find_first_waiter(const struct gfs2_glock *gl)
367{
368 struct gfs2_holder *gh;
369
370 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
371 if (!test_bit(HIF_HOLDER, &gh->gh_iflags))
372 return gh;
373 }
374 return NULL;
375}
376
377/**
378 * state_change - record that the glock is now in a different state
379 * @gl: the glock
380 * @new_state the new state
381 *
382 */
383
384static void state_change(struct gfs2_glock *gl, unsigned int new_state)
385{
386 int held1, held2;
387
388 held1 = (gl->gl_state != LM_ST_UNLOCKED);
389 held2 = (new_state != LM_ST_UNLOCKED);
390
391 if (held1 != held2) {
392 if (held2)
393 gfs2_glock_hold(gl);
394 else
395 gfs2_glock_put(gl);
396 }
397
398 gl->gl_state = new_state;
399 gl->gl_tchange = jiffies;
400}
401
402static void gfs2_demote_wake(struct gfs2_glock *gl)
403{
404 gl->gl_demote_state = LM_ST_EXCLUSIVE;
405 clear_bit(GLF_DEMOTE, &gl->gl_flags);
406 smp_mb__after_clear_bit();
407 wake_up_bit(&gl->gl_flags, GLF_DEMOTE);
408}
409
410/**
411 * finish_xmote - The DLM has replied to one of our lock requests
412 * @gl: The glock
413 * @ret: The status from the DLM
414 *
415 */
416
417static void finish_xmote(struct gfs2_glock *gl, unsigned int ret)
418{
419 const struct gfs2_glock_operations *glops = gl->gl_ops;
420 struct gfs2_holder *gh;
421 unsigned state = ret & LM_OUT_ST_MASK;
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000422 int rv;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500423
424 spin_lock(&gl->gl_spin);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100425 state_change(gl, state);
426 gh = find_first_waiter(gl);
427
428 /* Demote to UN request arrived during demote to SH or DF */
429 if (test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags) &&
430 state != LM_ST_UNLOCKED && gl->gl_demote_state == LM_ST_UNLOCKED)
431 gl->gl_target = LM_ST_UNLOCKED;
432
433 /* Check for state != intended state */
434 if (unlikely(state != gl->gl_target)) {
435 if (gh && !test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags)) {
436 /* move to back of queue and try next entry */
437 if (ret & LM_OUT_CANCELED) {
438 if ((gh->gh_flags & LM_FLAG_PRIORITY) == 0)
439 list_move_tail(&gh->gh_list, &gl->gl_holders);
440 gh = find_first_waiter(gl);
441 gl->gl_target = gh->gh_state;
442 goto retry;
443 }
444 /* Some error or failed "try lock" - report it */
445 if ((ret & LM_OUT_ERROR) ||
446 (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) {
447 gl->gl_target = gl->gl_state;
448 do_error(gl, ret);
449 goto out;
450 }
451 }
452 switch(state) {
453 /* Unlocked due to conversion deadlock, try again */
454 case LM_ST_UNLOCKED:
455retry:
456 do_xmote(gl, gh, gl->gl_target);
457 break;
458 /* Conversion fails, unlock and try again */
459 case LM_ST_SHARED:
460 case LM_ST_DEFERRED:
461 do_xmote(gl, gh, LM_ST_UNLOCKED);
462 break;
463 default: /* Everything else */
464 printk(KERN_ERR "GFS2: wanted %u got %u\n", gl->gl_target, state);
465 GLOCK_BUG_ON(gl, 1);
466 }
467 spin_unlock(&gl->gl_spin);
468 gfs2_glock_put(gl);
469 return;
470 }
471
472 /* Fast path - we got what we asked for */
473 if (test_and_clear_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags))
474 gfs2_demote_wake(gl);
475 if (state != LM_ST_UNLOCKED) {
476 if (glops->go_xmote_bh) {
Steven Whitehouse6802e342008-05-21 17:03:22 +0100477 spin_unlock(&gl->gl_spin);
478 rv = glops->go_xmote_bh(gl, gh);
479 if (rv == -EAGAIN)
480 return;
481 spin_lock(&gl->gl_spin);
482 if (rv) {
483 do_error(gl, rv);
484 goto out;
485 }
486 }
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000487 rv = do_promote(gl);
488 if (rv == 2)
489 goto out_locked;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100490 }
491out:
492 clear_bit(GLF_LOCK, &gl->gl_flags);
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000493out_locked:
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500494 spin_unlock(&gl->gl_spin);
495 gfs2_glock_put(gl);
496}
497
Steven Whitehouse6802e342008-05-21 17:03:22 +0100498static unsigned int gfs2_lm_lock(struct gfs2_sbd *sdp, void *lock,
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000499 unsigned int req_state,
Steven Whitehouse6802e342008-05-21 17:03:22 +0100500 unsigned int flags)
501{
502 int ret = LM_OUT_ERROR;
Steven Whitehouse048bca22008-05-23 14:46:04 +0100503
504 if (!sdp->sd_lockstruct.ls_ops->lm_lock)
505 return req_state == LM_ST_UNLOCKED ? 0 : req_state;
506
Steven Whitehouse6802e342008-05-21 17:03:22 +0100507 if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000508 ret = sdp->sd_lockstruct.ls_ops->lm_lock(lock,
Steven Whitehouse6802e342008-05-21 17:03:22 +0100509 req_state, flags);
510 return ret;
511}
512
513/**
514 * do_xmote - Calls the DLM to change the state of a lock
515 * @gl: The lock state
516 * @gh: The holder (only for promotes)
517 * @target: The target lock state
518 *
519 */
520
521static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target)
Harvey Harrison55ba4742008-10-24 11:31:12 -0700522__releases(&gl->gl_spin)
523__acquires(&gl->gl_spin)
Steven Whitehouse6802e342008-05-21 17:03:22 +0100524{
525 const struct gfs2_glock_operations *glops = gl->gl_ops;
526 struct gfs2_sbd *sdp = gl->gl_sbd;
527 unsigned int lck_flags = gh ? gh->gh_flags : 0;
528 int ret;
529
530 lck_flags &= (LM_FLAG_TRY | LM_FLAG_TRY_1CB | LM_FLAG_NOEXP |
531 LM_FLAG_PRIORITY);
532 BUG_ON(gl->gl_state == target);
533 BUG_ON(gl->gl_state == gl->gl_target);
534 if ((target == LM_ST_UNLOCKED || target == LM_ST_DEFERRED) &&
535 glops->go_inval) {
536 set_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags);
537 do_error(gl, 0); /* Fail queued try locks */
538 }
539 spin_unlock(&gl->gl_spin);
540 if (glops->go_xmote_th)
541 glops->go_xmote_th(gl);
542 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags))
543 glops->go_inval(gl, target == LM_ST_DEFERRED ? 0 : DIO_METADATA);
544 clear_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags);
545
546 gfs2_glock_hold(gl);
547 if (target != LM_ST_UNLOCKED && (gl->gl_state == LM_ST_SHARED ||
548 gl->gl_state == LM_ST_DEFERRED) &&
549 !(lck_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)))
550 lck_flags |= LM_FLAG_TRY_1CB;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000551 ret = gfs2_lm_lock(sdp, gl, target, lck_flags);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100552
553 if (!(ret & LM_OUT_ASYNC)) {
554 finish_xmote(gl, ret);
555 gfs2_glock_hold(gl);
556 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
557 gfs2_glock_put(gl);
558 } else {
559 GLOCK_BUG_ON(gl, ret != LM_OUT_ASYNC);
560 }
561 spin_lock(&gl->gl_spin);
562}
563
564/**
565 * find_first_holder - find the first "holder" gh
566 * @gl: the glock
567 */
568
569static inline struct gfs2_holder *find_first_holder(const struct gfs2_glock *gl)
570{
571 struct gfs2_holder *gh;
572
573 if (!list_empty(&gl->gl_holders)) {
574 gh = list_entry(gl->gl_holders.next, struct gfs2_holder, gh_list);
575 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
576 return gh;
577 }
578 return NULL;
579}
580
581/**
582 * run_queue - do all outstanding tasks related to a glock
583 * @gl: The glock in question
584 * @nonblock: True if we must not block in run_queue
585 *
586 */
587
588static void run_queue(struct gfs2_glock *gl, const int nonblock)
Harvey Harrison55ba4742008-10-24 11:31:12 -0700589__releases(&gl->gl_spin)
590__acquires(&gl->gl_spin)
Steven Whitehouse6802e342008-05-21 17:03:22 +0100591{
592 struct gfs2_holder *gh = NULL;
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000593 int ret;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100594
595 if (test_and_set_bit(GLF_LOCK, &gl->gl_flags))
596 return;
597
598 GLOCK_BUG_ON(gl, test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags));
599
600 if (test_bit(GLF_DEMOTE, &gl->gl_flags) &&
601 gl->gl_demote_state != gl->gl_state) {
602 if (find_first_holder(gl))
603 goto out;
604 if (nonblock)
605 goto out_sched;
606 set_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags);
Steven Whitehouse265d529c2008-07-07 10:02:36 +0100607 GLOCK_BUG_ON(gl, gl->gl_demote_state == LM_ST_EXCLUSIVE);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100608 gl->gl_target = gl->gl_demote_state;
609 } else {
610 if (test_bit(GLF_DEMOTE, &gl->gl_flags))
611 gfs2_demote_wake(gl);
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000612 ret = do_promote(gl);
613 if (ret == 0)
Steven Whitehouse6802e342008-05-21 17:03:22 +0100614 goto out;
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000615 if (ret == 2)
616 return;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100617 gh = find_first_waiter(gl);
618 gl->gl_target = gh->gh_state;
619 if (!(gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)))
620 do_error(gl, 0); /* Fail queued try locks */
621 }
622 do_xmote(gl, gh, gl->gl_target);
623 return;
624
625out_sched:
626 gfs2_glock_hold(gl);
627 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
628 gfs2_glock_put(gl);
629out:
630 clear_bit(GLF_LOCK, &gl->gl_flags);
631}
632
633static void glock_work_func(struct work_struct *work)
634{
635 unsigned long delay = 0;
636 struct gfs2_glock *gl = container_of(work, struct gfs2_glock, gl_work.work);
637
638 if (test_and_clear_bit(GLF_REPLY_PENDING, &gl->gl_flags))
639 finish_xmote(gl, gl->gl_reply);
640 spin_lock(&gl->gl_spin);
Steven Whitehouse265d529c2008-07-07 10:02:36 +0100641 if (test_and_clear_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
642 gl->gl_state != LM_ST_UNLOCKED &&
643 gl->gl_demote_state != LM_ST_EXCLUSIVE) {
Steven Whitehouse6802e342008-05-21 17:03:22 +0100644 unsigned long holdtime, now = jiffies;
645 holdtime = gl->gl_tchange + gl->gl_ops->go_min_hold_time;
646 if (time_before(now, holdtime))
647 delay = holdtime - now;
648 set_bit(delay ? GLF_PENDING_DEMOTE : GLF_DEMOTE, &gl->gl_flags);
649 }
650 run_queue(gl, 0);
651 spin_unlock(&gl->gl_spin);
652 if (!delay ||
653 queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
654 gfs2_glock_put(gl);
655}
656
David Teiglandb3b94fa2006-01-16 16:50:04 +0000657/**
658 * gfs2_glock_get() - Get a glock, or create one if one doesn't exist
659 * @sdp: The GFS2 superblock
660 * @number: the lock number
661 * @glops: The glock_operations to use
662 * @create: If 0, don't create the glock if it doesn't exist
663 * @glp: the glock is returned here
664 *
665 * This does not lock a glock, just finds/creates structures for one.
666 *
667 * Returns: errno
668 */
669
Steven Whitehousecd915492006-09-04 12:49:07 -0400670int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number,
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400671 const struct gfs2_glock_operations *glops, int create,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000672 struct gfs2_glock **glp)
673{
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400674 struct lm_lockname name = { .ln_number = number, .ln_type = glops->go_type };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000675 struct gfs2_glock *gl, *tmp;
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400676 unsigned int hash = gl_hash(sdp, &name);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000677 int error;
678
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400679 read_lock(gl_lock_addr(hash));
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400680 gl = search_bucket(hash, sdp, &name);
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400681 read_unlock(gl_lock_addr(hash));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000682
683 if (gl || !create) {
684 *glp = gl;
685 return 0;
686 }
687
688 gl = kmem_cache_alloc(gfs2_glock_cachep, GFP_KERNEL);
689 if (!gl)
690 return -ENOMEM;
691
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400692 gl->gl_flags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000693 gl->gl_name = name;
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400694 atomic_set(&gl->gl_ref, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000695 gl->gl_state = LM_ST_UNLOCKED;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100696 gl->gl_target = LM_ST_UNLOCKED;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500697 gl->gl_demote_state = LM_ST_EXCLUSIVE;
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400698 gl->gl_hash = hash;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000699 gl->gl_ops = glops;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000700 snprintf(gl->gl_strname, GDLM_STRNAME_BYTES, "%8x%16llx", name.ln_type, (unsigned long long)number);
701 memset(&gl->gl_lksb, 0, sizeof(struct dlm_lksb));
702 gl->gl_lksb.sb_lvbptr = gl->gl_lvb;
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400703 gl->gl_stamp = jiffies;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500704 gl->gl_tchange = jiffies;
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400705 gl->gl_object = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000706 gl->gl_sbd = sdp;
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400707 gl->gl_aspace = NULL;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500708 INIT_DELAYED_WORK(&gl->gl_work, glock_work_func);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000709
710 /* If this glock protects actual on-disk data or metadata blocks,
711 create a VFS inode to manage the pages/buffers holding them. */
Steven Whitehouse50299962006-09-04 09:49:55 -0400712 if (glops == &gfs2_inode_glops || glops == &gfs2_rgrp_glops) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000713 gl->gl_aspace = gfs2_aspace_get(sdp);
714 if (!gl->gl_aspace) {
715 error = -ENOMEM;
716 goto fail;
717 }
718 }
719
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400720 write_lock(gl_lock_addr(hash));
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400721 tmp = search_bucket(hash, sdp, &name);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000722 if (tmp) {
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400723 write_unlock(gl_lock_addr(hash));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000724 glock_free(gl);
725 gl = tmp;
726 } else {
Steven Whitehouseb6397892006-09-12 10:10:01 -0400727 hlist_add_head(&gl->gl_list, &gl_hash_table[hash].hb_list);
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400728 write_unlock(gl_lock_addr(hash));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000729 }
730
731 *glp = gl;
732
733 return 0;
734
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400735fail:
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400736 kmem_cache_free(gfs2_glock_cachep, gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000737 return error;
738}
739
740/**
741 * gfs2_holder_init - initialize a struct gfs2_holder in the default way
742 * @gl: the glock
743 * @state: the state we're requesting
744 * @flags: the modifier flags
745 * @gh: the holder structure
746 *
747 */
748
Steven Whitehouse190562b2006-04-20 16:57:23 -0400749void gfs2_holder_init(struct gfs2_glock *gl, unsigned int state, unsigned flags,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000750 struct gfs2_holder *gh)
751{
752 INIT_LIST_HEAD(&gh->gh_list);
753 gh->gh_gl = gl;
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500754 gh->gh_ip = (unsigned long)__builtin_return_address(0);
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -0800755 gh->gh_owner_pid = get_pid(task_pid(current));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000756 gh->gh_state = state;
757 gh->gh_flags = flags;
758 gh->gh_error = 0;
759 gh->gh_iflags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000760 gfs2_glock_hold(gl);
761}
762
763/**
764 * gfs2_holder_reinit - reinitialize a struct gfs2_holder so we can requeue it
765 * @state: the state we're requesting
766 * @flags: the modifier flags
767 * @gh: the holder structure
768 *
769 * Don't mess with the glock.
770 *
771 */
772
Steven Whitehouse190562b2006-04-20 16:57:23 -0400773void gfs2_holder_reinit(unsigned int state, unsigned flags, struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000774{
775 gh->gh_state = state;
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400776 gh->gh_flags = flags;
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000777 gh->gh_iflags = 0;
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500778 gh->gh_ip = (unsigned long)__builtin_return_address(0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000779}
780
781/**
782 * gfs2_holder_uninit - uninitialize a holder structure (drop glock reference)
783 * @gh: the holder structure
784 *
785 */
786
787void gfs2_holder_uninit(struct gfs2_holder *gh)
788{
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -0800789 put_pid(gh->gh_owner_pid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000790 gfs2_glock_put(gh->gh_gl);
791 gh->gh_gl = NULL;
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500792 gh->gh_ip = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000793}
794
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100795static int just_schedule(void *word)
Steven Whitehousefee852e2007-01-17 15:33:23 +0000796{
797 schedule();
798 return 0;
799}
800
801static void wait_on_holder(struct gfs2_holder *gh)
802{
803 might_sleep();
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100804 wait_on_bit(&gh->gh_iflags, HIF_WAIT, just_schedule, TASK_UNINTERRUPTIBLE);
805}
806
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100807static void wait_on_demote(struct gfs2_glock *gl)
808{
809 might_sleep();
810 wait_on_bit(&gl->gl_flags, GLF_DEMOTE, just_schedule, TASK_UNINTERRUPTIBLE);
Steven Whitehousefee852e2007-01-17 15:33:23 +0000811}
812
David Teiglandb3b94fa2006-01-16 16:50:04 +0000813/**
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000814 * handle_callback - process a demote request
David Teiglandb3b94fa2006-01-16 16:50:04 +0000815 * @gl: the glock
816 * @state: the state the caller wants us to change to
817 *
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000818 * There are only two requests that we are going to see in actual
819 * practise: LM_ST_SHARED and LM_ST_UNLOCKED
David Teiglandb3b94fa2006-01-16 16:50:04 +0000820 */
821
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500822static void handle_callback(struct gfs2_glock *gl, unsigned int state,
Steven Whitehouse97cc1022008-11-20 13:39:47 +0000823 unsigned long delay)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000824{
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500825 int bit = delay ? GLF_PENDING_DEMOTE : GLF_DEMOTE;
826
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500827 set_bit(bit, &gl->gl_flags);
828 if (gl->gl_demote_state == LM_ST_EXCLUSIVE) {
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000829 gl->gl_demote_state = state;
830 gl->gl_demote_time = jiffies;
Josef Whiter26caee52007-07-23 10:02:40 +0100831 } else if (gl->gl_demote_state != LM_ST_UNLOCKED &&
832 gl->gl_demote_state != state) {
Steven Whitehouse6802e342008-05-21 17:03:22 +0100833 gl->gl_demote_state = LM_ST_UNLOCKED;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000834 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000835}
836
837/**
Steven Whitehouse6802e342008-05-21 17:03:22 +0100838 * gfs2_glock_wait - wait on a glock acquisition
David Teiglandb3b94fa2006-01-16 16:50:04 +0000839 * @gh: the glock holder
840 *
841 * Returns: 0 on success
842 */
843
Steven Whitehouse6802e342008-05-21 17:03:22 +0100844int gfs2_glock_wait(struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000845{
Steven Whitehousefee852e2007-01-17 15:33:23 +0000846 wait_on_holder(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000847 return gh->gh_error;
848}
849
Steven Whitehouse6802e342008-05-21 17:03:22 +0100850void gfs2_print_dbg(struct seq_file *seq, const char *fmt, ...)
Robert Peterson7c52b162007-03-16 10:26:37 +0000851{
852 va_list args;
853
854 va_start(args, fmt);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100855 if (seq) {
856 struct gfs2_glock_iter *gi = seq->private;
Robert Peterson7c52b162007-03-16 10:26:37 +0000857 vsprintf(gi->string, fmt, args);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100858 seq_printf(seq, gi->string);
859 } else {
860 printk(KERN_ERR " ");
Robert Peterson7c52b162007-03-16 10:26:37 +0000861 vprintk(fmt, args);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100862 }
Robert Peterson7c52b162007-03-16 10:26:37 +0000863 va_end(args);
864}
865
David Teiglandb3b94fa2006-01-16 16:50:04 +0000866/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000867 * add_to_queue - Add a holder to the wait queue (but look for recursion)
868 * @gh: the holder structure to add
869 *
Steven Whitehouse6802e342008-05-21 17:03:22 +0100870 * Eventually we should move the recursive locking trap to a
871 * debugging option or something like that. This is the fast
872 * path and needs to have the minimum number of distractions.
873 *
David Teiglandb3b94fa2006-01-16 16:50:04 +0000874 */
875
Steven Whitehouse6802e342008-05-21 17:03:22 +0100876static inline void add_to_queue(struct gfs2_holder *gh)
Harvey Harrison55ba4742008-10-24 11:31:12 -0700877__releases(&gl->gl_spin)
878__acquires(&gl->gl_spin)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000879{
880 struct gfs2_glock *gl = gh->gh_gl;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100881 struct gfs2_sbd *sdp = gl->gl_sbd;
882 struct list_head *insert_pt = NULL;
883 struct gfs2_holder *gh2;
884 int try_lock = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000885
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -0800886 BUG_ON(gh->gh_owner_pid == NULL);
Steven Whitehousefee852e2007-01-17 15:33:23 +0000887 if (test_and_set_bit(HIF_WAIT, &gh->gh_iflags))
888 BUG();
Steven Whitehouse190562b2006-04-20 16:57:23 -0400889
Steven Whitehouse6802e342008-05-21 17:03:22 +0100890 if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) {
891 if (test_bit(GLF_LOCK, &gl->gl_flags))
892 try_lock = 1;
893 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags))
894 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000895 }
896
Steven Whitehouse6802e342008-05-21 17:03:22 +0100897 list_for_each_entry(gh2, &gl->gl_holders, gh_list) {
898 if (unlikely(gh2->gh_owner_pid == gh->gh_owner_pid &&
899 (gh->gh_gl->gl_ops->go_type != LM_TYPE_FLOCK)))
900 goto trap_recursive;
901 if (try_lock &&
902 !(gh2->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) &&
903 !may_grant(gl, gh)) {
904fail:
905 gh->gh_error = GLR_TRYFAILED;
906 gfs2_holder_wake(gh);
907 return;
908 }
909 if (test_bit(HIF_HOLDER, &gh2->gh_iflags))
910 continue;
911 if (unlikely((gh->gh_flags & LM_FLAG_PRIORITY) && !insert_pt))
912 insert_pt = &gh2->gh_list;
913 }
914 if (likely(insert_pt == NULL)) {
915 list_add_tail(&gh->gh_list, &gl->gl_holders);
916 if (unlikely(gh->gh_flags & LM_FLAG_PRIORITY))
917 goto do_cancel;
918 return;
919 }
920 list_add_tail(&gh->gh_list, insert_pt);
921do_cancel:
922 gh = list_entry(gl->gl_holders.next, struct gfs2_holder, gh_list);
923 if (!(gh->gh_flags & LM_FLAG_PRIORITY)) {
924 spin_unlock(&gl->gl_spin);
Steven Whitehouse048bca22008-05-23 14:46:04 +0100925 if (sdp->sd_lockstruct.ls_ops->lm_cancel)
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000926 sdp->sd_lockstruct.ls_ops->lm_cancel(gl);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100927 spin_lock(&gl->gl_spin);
928 }
929 return;
930
931trap_recursive:
932 print_symbol(KERN_ERR "original: %s\n", gh2->gh_ip);
933 printk(KERN_ERR "pid: %d\n", pid_nr(gh2->gh_owner_pid));
934 printk(KERN_ERR "lock type: %d req lock state : %d\n",
935 gh2->gh_gl->gl_name.ln_type, gh2->gh_state);
936 print_symbol(KERN_ERR "new: %s\n", gh->gh_ip);
937 printk(KERN_ERR "pid: %d\n", pid_nr(gh->gh_owner_pid));
938 printk(KERN_ERR "lock type: %d req lock state : %d\n",
939 gh->gh_gl->gl_name.ln_type, gh->gh_state);
940 __dump_glock(NULL, gl);
941 BUG();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000942}
943
944/**
945 * gfs2_glock_nq - enqueue a struct gfs2_holder onto a glock (acquire a glock)
946 * @gh: the holder structure
947 *
948 * if (gh->gh_flags & GL_ASYNC), this never returns an error
949 *
950 * Returns: 0, GLR_TRYFAILED, or errno on failure
951 */
952
953int gfs2_glock_nq(struct gfs2_holder *gh)
954{
955 struct gfs2_glock *gl = gh->gh_gl;
956 struct gfs2_sbd *sdp = gl->gl_sbd;
957 int error = 0;
958
Steven Whitehouse6802e342008-05-21 17:03:22 +0100959 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000960 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000961
David Teiglandb3b94fa2006-01-16 16:50:04 +0000962 spin_lock(&gl->gl_spin);
963 add_to_queue(gh);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100964 run_queue(gl, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000965 spin_unlock(&gl->gl_spin);
966
Steven Whitehouse6802e342008-05-21 17:03:22 +0100967 if (!(gh->gh_flags & GL_ASYNC))
968 error = gfs2_glock_wait(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000969
David Teiglandb3b94fa2006-01-16 16:50:04 +0000970 return error;
971}
972
973/**
974 * gfs2_glock_poll - poll to see if an async request has been completed
975 * @gh: the holder
976 *
977 * Returns: 1 if the request is ready to be gfs2_glock_wait()ed on
978 */
979
980int gfs2_glock_poll(struct gfs2_holder *gh)
981{
Steven Whitehouse6802e342008-05-21 17:03:22 +0100982 return test_bit(HIF_WAIT, &gh->gh_iflags) ? 0 : 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000983}
984
985/**
986 * gfs2_glock_dq - dequeue a struct gfs2_holder from a glock (release a glock)
987 * @gh: the glock holder
988 *
989 */
990
991void gfs2_glock_dq(struct gfs2_holder *gh)
992{
993 struct gfs2_glock *gl = gh->gh_gl;
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400994 const struct gfs2_glock_operations *glops = gl->gl_ops;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500995 unsigned delay = 0;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100996 int fast_path = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000997
Steven Whitehouse6802e342008-05-21 17:03:22 +0100998 spin_lock(&gl->gl_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000999 if (gh->gh_flags & GL_NOCACHE)
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001000 handle_callback(gl, LM_ST_UNLOCKED, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001001
David Teiglandb3b94fa2006-01-16 16:50:04 +00001002 list_del_init(&gh->gh_list);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001003 if (find_first_holder(gl) == NULL) {
Steven Whitehouse3042a2c2007-11-02 08:39:34 +00001004 if (glops->go_unlock) {
Steven Whitehouse6802e342008-05-21 17:03:22 +01001005 GLOCK_BUG_ON(gl, test_and_set_bit(GLF_LOCK, &gl->gl_flags));
Steven Whitehouse3042a2c2007-11-02 08:39:34 +00001006 spin_unlock(&gl->gl_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001007 glops->go_unlock(gh);
Steven Whitehouse3042a2c2007-11-02 08:39:34 +00001008 spin_lock(&gl->gl_spin);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001009 clear_bit(GLF_LOCK, &gl->gl_flags);
Steven Whitehouse3042a2c2007-11-02 08:39:34 +00001010 }
Steven Whitehouse3b8249f2007-03-16 09:40:31 +00001011 gl->gl_stamp = jiffies;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001012 if (list_empty(&gl->gl_holders) &&
1013 !test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
1014 !test_bit(GLF_DEMOTE, &gl->gl_flags))
1015 fast_path = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001016 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001017 spin_unlock(&gl->gl_spin);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001018 if (likely(fast_path))
1019 return;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001020
1021 gfs2_glock_hold(gl);
1022 if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
1023 !test_bit(GLF_DEMOTE, &gl->gl_flags))
1024 delay = gl->gl_ops->go_min_hold_time;
1025 if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
1026 gfs2_glock_put(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001027}
1028
Abhijith Dasd93cfa92007-06-11 08:22:32 +01001029void gfs2_glock_dq_wait(struct gfs2_holder *gh)
1030{
1031 struct gfs2_glock *gl = gh->gh_gl;
1032 gfs2_glock_dq(gh);
1033 wait_on_demote(gl);
1034}
1035
David Teiglandb3b94fa2006-01-16 16:50:04 +00001036/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001037 * gfs2_glock_dq_uninit - dequeue a holder from a glock and initialize it
1038 * @gh: the holder structure
1039 *
1040 */
1041
1042void gfs2_glock_dq_uninit(struct gfs2_holder *gh)
1043{
1044 gfs2_glock_dq(gh);
1045 gfs2_holder_uninit(gh);
1046}
1047
1048/**
1049 * gfs2_glock_nq_num - acquire a glock based on lock number
1050 * @sdp: the filesystem
1051 * @number: the lock number
1052 * @glops: the glock operations for the type of glock
1053 * @state: the state to acquire the glock in
1054 * @flags: modifier flags for the aquisition
1055 * @gh: the struct gfs2_holder
1056 *
1057 * Returns: errno
1058 */
1059
Steven Whitehousecd915492006-09-04 12:49:07 -04001060int gfs2_glock_nq_num(struct gfs2_sbd *sdp, u64 number,
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001061 const struct gfs2_glock_operations *glops,
1062 unsigned int state, int flags, struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001063{
1064 struct gfs2_glock *gl;
1065 int error;
1066
1067 error = gfs2_glock_get(sdp, number, glops, CREATE, &gl);
1068 if (!error) {
1069 error = gfs2_glock_nq_init(gl, state, flags, gh);
1070 gfs2_glock_put(gl);
1071 }
1072
1073 return error;
1074}
1075
1076/**
1077 * glock_compare - Compare two struct gfs2_glock structures for sorting
1078 * @arg_a: the first structure
1079 * @arg_b: the second structure
1080 *
1081 */
1082
1083static int glock_compare(const void *arg_a, const void *arg_b)
1084{
Steven Whitehousea5e08a92006-09-09 17:07:05 -04001085 const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1086 const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1087 const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1088 const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001089
1090 if (a->ln_number > b->ln_number)
Steven Whitehousea5e08a92006-09-09 17:07:05 -04001091 return 1;
1092 if (a->ln_number < b->ln_number)
1093 return -1;
Steven Whitehouse1c0f4872007-01-22 12:10:39 -05001094 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 -04001095 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001096}
1097
1098/**
1099 * nq_m_sync - synchonously acquire more than one glock in deadlock free order
1100 * @num_gh: the number of structures
1101 * @ghs: an array of struct gfs2_holder structures
1102 *
1103 * Returns: 0 on success (all glocks acquired),
1104 * errno on failure (no glocks acquired)
1105 */
1106
1107static int nq_m_sync(unsigned int num_gh, struct gfs2_holder *ghs,
1108 struct gfs2_holder **p)
1109{
1110 unsigned int x;
1111 int error = 0;
1112
1113 for (x = 0; x < num_gh; x++)
1114 p[x] = &ghs[x];
1115
1116 sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare, NULL);
1117
1118 for (x = 0; x < num_gh; x++) {
1119 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1120
1121 error = gfs2_glock_nq(p[x]);
1122 if (error) {
1123 while (x--)
1124 gfs2_glock_dq(p[x]);
1125 break;
1126 }
1127 }
1128
1129 return error;
1130}
1131
1132/**
1133 * gfs2_glock_nq_m - acquire multiple glocks
1134 * @num_gh: the number of structures
1135 * @ghs: an array of struct gfs2_holder structures
1136 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001137 *
1138 * Returns: 0 on success (all glocks acquired),
1139 * errno on failure (no glocks acquired)
1140 */
1141
1142int gfs2_glock_nq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1143{
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001144 struct gfs2_holder *tmp[4];
1145 struct gfs2_holder **pph = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001146 int error = 0;
1147
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001148 switch(num_gh) {
1149 case 0:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001150 return 0;
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001151 case 1:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001152 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1153 return gfs2_glock_nq(ghs);
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001154 default:
1155 if (num_gh <= 4)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001156 break;
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001157 pph = kmalloc(num_gh * sizeof(struct gfs2_holder *), GFP_NOFS);
1158 if (!pph)
1159 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001160 }
1161
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001162 error = nq_m_sync(num_gh, ghs, pph);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001163
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001164 if (pph != tmp)
1165 kfree(pph);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001166
1167 return error;
1168}
1169
1170/**
1171 * gfs2_glock_dq_m - release multiple glocks
1172 * @num_gh: the number of structures
1173 * @ghs: an array of struct gfs2_holder structures
1174 *
1175 */
1176
1177void gfs2_glock_dq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1178{
1179 unsigned int x;
1180
1181 for (x = 0; x < num_gh; x++)
1182 gfs2_glock_dq(&ghs[x]);
1183}
1184
1185/**
1186 * gfs2_glock_dq_uninit_m - release multiple glocks
1187 * @num_gh: the number of structures
1188 * @ghs: an array of struct gfs2_holder structures
1189 *
1190 */
1191
1192void gfs2_glock_dq_uninit_m(unsigned int num_gh, struct gfs2_holder *ghs)
1193{
1194 unsigned int x;
1195
1196 for (x = 0; x < num_gh; x++)
1197 gfs2_glock_dq_uninit(&ghs[x]);
1198}
1199
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001200void gfs2_glock_cb(struct gfs2_glock *gl, unsigned int state)
Steven Whitehouseda755fd2008-01-30 15:34:04 +00001201{
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001202 unsigned long delay = 0;
1203 unsigned long holdtime;
1204 unsigned long now = jiffies;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001205
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001206 gfs2_glock_hold(gl);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001207 holdtime = gl->gl_tchange + gl->gl_ops->go_min_hold_time;
1208 if (time_before(now, holdtime))
1209 delay = holdtime - now;
Steven Whitehousedff52572008-09-02 13:33:17 +01001210 if (test_bit(GLF_REPLY_PENDING, &gl->gl_flags))
1211 delay = gl->gl_ops->go_min_hold_time;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001212
Steven Whitehouse6802e342008-05-21 17:03:22 +01001213 spin_lock(&gl->gl_spin);
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001214 handle_callback(gl, state, delay);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001215 spin_unlock(&gl->gl_spin);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001216 if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
1217 gfs2_glock_put(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001218}
1219
1220/**
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001221 * gfs2_glock_complete - Callback used by locking
1222 * @gl: Pointer to the glock
1223 * @ret: The return value from the dlm
David Teiglandb3b94fa2006-01-16 16:50:04 +00001224 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001225 */
1226
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001227void gfs2_glock_complete(struct gfs2_glock *gl, int ret)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001228{
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001229 struct lm_lockstruct *ls = &gl->gl_sbd->sd_lockstruct;
1230 down_read(&gfs2_umount_flush_sem);
1231 gl->gl_reply = ret;
1232 if (unlikely(test_bit(DFL_BLOCK_LOCKS, &ls->ls_flags))) {
1233 struct gfs2_holder *gh;
1234 spin_lock(&gl->gl_spin);
1235 gh = find_first_waiter(gl);
1236 if ((!(gh && (gh->gh_flags & LM_FLAG_NOEXP)) &&
1237 (gl->gl_target != LM_ST_UNLOCKED)) ||
1238 ((ret & ~LM_OUT_ST_MASK) != 0))
1239 set_bit(GLF_FROZEN, &gl->gl_flags);
1240 spin_unlock(&gl->gl_spin);
1241 if (test_bit(GLF_FROZEN, &gl->gl_flags)) {
1242 up_read(&gfs2_umount_flush_sem);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001243 return;
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001244 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001245 }
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001246 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
1247 gfs2_glock_hold(gl);
1248 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1249 gfs2_glock_put(gl);
1250 up_read(&gfs2_umount_flush_sem);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001251}
1252
1253/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001254 * demote_ok - Check to see if it's ok to unlock a glock
1255 * @gl: the glock
1256 *
1257 * Returns: 1 if it's ok
1258 */
1259
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001260static int demote_ok(const struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001261{
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001262 const struct gfs2_glock_operations *glops = gl->gl_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001263
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001264 if (gl->gl_state == LM_ST_UNLOCKED)
1265 return 0;
1266 if (!list_empty(&gl->gl_holders))
1267 return 0;
1268 if (glops->go_demote_ok)
1269 return glops->go_demote_ok(gl);
1270 return 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001271}
1272
David Teiglandb3b94fa2006-01-16 16:50:04 +00001273
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001274static int gfs2_shrink_glock_memory(int nr, gfp_t gfp_mask)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001275{
1276 struct gfs2_glock *gl;
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001277 int may_demote;
1278 int nr_skipped = 0;
1279 int got_ref = 0;
1280 LIST_HEAD(skipped);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001281
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001282 if (nr == 0)
1283 goto out;
1284
1285 if (!(gfp_mask & __GFP_FS))
1286 return -1;
1287
1288 spin_lock(&lru_lock);
1289 while(nr && !list_empty(&lru_list)) {
1290 gl = list_entry(lru_list.next, struct gfs2_glock, gl_lru);
1291 list_del_init(&gl->gl_lru);
1292 atomic_dec(&lru_count);
1293
1294 /* Test for being demotable */
1295 if (!test_and_set_bit(GLF_LOCK, &gl->gl_flags)) {
1296 gfs2_glock_hold(gl);
1297 got_ref = 1;
1298 spin_unlock(&lru_lock);
1299 spin_lock(&gl->gl_spin);
1300 may_demote = demote_ok(gl);
1301 spin_unlock(&gl->gl_spin);
1302 clear_bit(GLF_LOCK, &gl->gl_flags);
1303 if (may_demote) {
1304 handle_callback(gl, LM_ST_UNLOCKED, 0);
1305 nr--;
1306 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1307 gfs2_glock_put(gl);
1308 }
1309 spin_lock(&lru_lock);
1310 if (may_demote)
1311 continue;
1312 }
1313 if (list_empty(&gl->gl_lru) &&
1314 (atomic_read(&gl->gl_ref) <= (2 + got_ref))) {
1315 nr_skipped++;
1316 list_add(&gl->gl_lru, &skipped);
1317 }
1318 if (got_ref) {
1319 spin_unlock(&lru_lock);
1320 gfs2_glock_put(gl);
1321 spin_lock(&lru_lock);
1322 got_ref = 0;
1323 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001324 }
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001325 list_splice(&skipped, &lru_list);
1326 atomic_add(nr_skipped, &lru_count);
1327 spin_unlock(&lru_lock);
1328out:
1329 return (atomic_read(&lru_count) / 100) * sysctl_vfs_cache_pressure;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001330}
1331
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001332static struct shrinker glock_shrinker = {
1333 .shrink = gfs2_shrink_glock_memory,
1334 .seeks = DEFAULT_SEEKS,
1335};
1336
David Teiglandb3b94fa2006-01-16 16:50:04 +00001337/**
1338 * examine_bucket - Call a function for glock in a hash bucket
1339 * @examiner: the function
1340 * @sdp: the filesystem
1341 * @bucket: the bucket
1342 *
1343 * Returns: 1 if the bucket has entries
1344 */
1345
1346static int examine_bucket(glock_examiner examiner, struct gfs2_sbd *sdp,
Steven Whitehouse37b2fa62006-09-08 13:35:56 -04001347 unsigned int hash)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001348{
Steven Whitehouse24264432006-09-11 21:40:30 -04001349 struct gfs2_glock *gl, *prev = NULL;
1350 int has_entries = 0;
Steven Whitehouseb6397892006-09-12 10:10:01 -04001351 struct hlist_head *head = &gl_hash_table[hash].hb_list;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001352
Steven Whitehouse24264432006-09-11 21:40:30 -04001353 read_lock(gl_lock_addr(hash));
Steven Whitehouseb6397892006-09-12 10:10:01 -04001354 /* Can't use hlist_for_each_entry - don't want prefetch here */
1355 if (hlist_empty(head))
Steven Whitehouse24264432006-09-11 21:40:30 -04001356 goto out;
Steven Whitehouseb6397892006-09-12 10:10:01 -04001357 gl = list_entry(head->first, struct gfs2_glock, gl_list);
1358 while(1) {
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001359 if (!sdp || gl->gl_sbd == sdp) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001360 gfs2_glock_hold(gl);
Steven Whitehouse24264432006-09-11 21:40:30 -04001361 read_unlock(gl_lock_addr(hash));
1362 if (prev)
1363 gfs2_glock_put(prev);
1364 prev = gl;
1365 examiner(gl);
Steven Whitehousea8336342006-09-14 13:57:38 -04001366 has_entries = 1;
Steven Whitehouse24264432006-09-11 21:40:30 -04001367 read_lock(gl_lock_addr(hash));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001368 }
Steven Whitehouseb6397892006-09-12 10:10:01 -04001369 if (gl->gl_list.next == NULL)
1370 break;
Steven Whitehouse24264432006-09-11 21:40:30 -04001371 gl = list_entry(gl->gl_list.next, struct gfs2_glock, gl_list);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001372 }
Steven Whitehouse24264432006-09-11 21:40:30 -04001373out:
1374 read_unlock(gl_lock_addr(hash));
1375 if (prev)
1376 gfs2_glock_put(prev);
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001377 cond_resched();
Steven Whitehouse24264432006-09-11 21:40:30 -04001378 return has_entries;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001379}
1380
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001381
1382/**
1383 * thaw_glock - thaw out a glock which has an unprocessed reply waiting
1384 * @gl: The glock to thaw
1385 *
1386 * N.B. When we freeze a glock, we leave a ref to the glock outstanding,
1387 * so this has to result in the ref count being dropped by one.
1388 */
1389
1390static void thaw_glock(struct gfs2_glock *gl)
1391{
1392 if (!test_and_clear_bit(GLF_FROZEN, &gl->gl_flags))
1393 return;
1394 down_read(&gfs2_umount_flush_sem);
1395 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
1396 gfs2_glock_hold(gl);
1397 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1398 gfs2_glock_put(gl);
1399 up_read(&gfs2_umount_flush_sem);
1400}
1401
David Teiglandb3b94fa2006-01-16 16:50:04 +00001402/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001403 * clear_glock - look at a glock and see if we can free it from glock cache
1404 * @gl: the glock to look at
1405 *
1406 */
1407
1408static void clear_glock(struct gfs2_glock *gl)
1409{
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001410 spin_lock(&lru_lock);
1411 if (!list_empty(&gl->gl_lru)) {
1412 list_del_init(&gl->gl_lru);
1413 atomic_dec(&lru_count);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001414 }
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001415 spin_unlock(&lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001416
Steven Whitehouse6802e342008-05-21 17:03:22 +01001417 spin_lock(&gl->gl_spin);
1418 if (find_first_holder(gl) == NULL && gl->gl_state != LM_ST_UNLOCKED)
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001419 handle_callback(gl, LM_ST_UNLOCKED, 0);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001420 spin_unlock(&gl->gl_spin);
1421 gfs2_glock_hold(gl);
1422 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1423 gfs2_glock_put(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001424}
1425
1426/**
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001427 * gfs2_glock_thaw - Thaw any frozen glocks
1428 * @sdp: The super block
1429 *
1430 */
1431
1432void gfs2_glock_thaw(struct gfs2_sbd *sdp)
1433{
1434 unsigned x;
1435
1436 for (x = 0; x < GFS2_GL_HASH_SIZE; x++)
1437 examine_bucket(thaw_glock, sdp, x);
1438}
1439
1440/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001441 * gfs2_gl_hash_clear - Empty out the glock hash table
1442 * @sdp: the filesystem
1443 * @wait: wait until it's all gone
1444 *
Steven Whitehouse1bdad602008-06-03 14:09:53 +01001445 * Called when unmounting the filesystem.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001446 */
1447
Steven Whitehousefefc03b2008-12-19 15:32:06 +00001448void gfs2_gl_hash_clear(struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001449{
1450 unsigned long t;
1451 unsigned int x;
1452 int cont;
1453
1454 t = jiffies;
1455
1456 for (;;) {
1457 cont = 0;
Steven Whitehouse24264432006-09-11 21:40:30 -04001458 for (x = 0; x < GFS2_GL_HASH_SIZE; x++) {
Steven Whitehouse907b9bc2006-09-25 09:26:04 -04001459 if (examine_bucket(clear_glock, sdp, x))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001460 cont = 1;
Steven Whitehouse24264432006-09-11 21:40:30 -04001461 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001462
Steven Whitehouse1bdad602008-06-03 14:09:53 +01001463 if (!cont)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001464 break;
1465
1466 if (time_after_eq(jiffies,
1467 t + gfs2_tune_get(sdp, gt_stall_secs) * HZ)) {
1468 fs_warn(sdp, "Unmount seems to be stalled. "
1469 "Dumping lock state...\n");
1470 gfs2_dump_lockstate(sdp);
1471 t = jiffies;
1472 }
1473
Steven Whitehouse61be0842007-01-29 11:51:45 +00001474 down_write(&gfs2_umount_flush_sem);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001475 invalidate_inodes(sdp->sd_vfs);
Steven Whitehouse61be0842007-01-29 11:51:45 +00001476 up_write(&gfs2_umount_flush_sem);
Steven Whitehousefd88de562006-05-05 16:59:11 -04001477 msleep(10);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001478 }
1479}
1480
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001481void gfs2_glock_finish_truncate(struct gfs2_inode *ip)
1482{
1483 struct gfs2_glock *gl = ip->i_gl;
1484 int ret;
1485
1486 ret = gfs2_truncatei_resume(ip);
1487 gfs2_assert_withdraw(gl->gl_sbd, ret == 0);
1488
1489 spin_lock(&gl->gl_spin);
1490 clear_bit(GLF_LOCK, &gl->gl_flags);
1491 run_queue(gl, 1);
1492 spin_unlock(&gl->gl_spin);
1493}
1494
Steven Whitehouse6802e342008-05-21 17:03:22 +01001495static const char *state2str(unsigned state)
Robert Peterson04b933f2007-03-23 17:05:15 -05001496{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001497 switch(state) {
1498 case LM_ST_UNLOCKED:
1499 return "UN";
1500 case LM_ST_SHARED:
1501 return "SH";
1502 case LM_ST_DEFERRED:
1503 return "DF";
1504 case LM_ST_EXCLUSIVE:
1505 return "EX";
1506 }
1507 return "??";
1508}
Robert Peterson04b933f2007-03-23 17:05:15 -05001509
Steven Whitehouse6802e342008-05-21 17:03:22 +01001510static const char *hflags2str(char *buf, unsigned flags, unsigned long iflags)
1511{
1512 char *p = buf;
1513 if (flags & LM_FLAG_TRY)
1514 *p++ = 't';
1515 if (flags & LM_FLAG_TRY_1CB)
1516 *p++ = 'T';
1517 if (flags & LM_FLAG_NOEXP)
1518 *p++ = 'e';
1519 if (flags & LM_FLAG_ANY)
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001520 *p++ = 'A';
Steven Whitehouse6802e342008-05-21 17:03:22 +01001521 if (flags & LM_FLAG_PRIORITY)
1522 *p++ = 'p';
1523 if (flags & GL_ASYNC)
1524 *p++ = 'a';
1525 if (flags & GL_EXACT)
1526 *p++ = 'E';
Steven Whitehouse6802e342008-05-21 17:03:22 +01001527 if (flags & GL_NOCACHE)
1528 *p++ = 'c';
1529 if (test_bit(HIF_HOLDER, &iflags))
1530 *p++ = 'H';
1531 if (test_bit(HIF_WAIT, &iflags))
1532 *p++ = 'W';
1533 if (test_bit(HIF_FIRST, &iflags))
1534 *p++ = 'F';
1535 *p = 0;
1536 return buf;
Robert Peterson04b933f2007-03-23 17:05:15 -05001537}
1538
David Teiglandb3b94fa2006-01-16 16:50:04 +00001539/**
1540 * dump_holder - print information about a glock holder
Steven Whitehouse6802e342008-05-21 17:03:22 +01001541 * @seq: the seq_file struct
David Teiglandb3b94fa2006-01-16 16:50:04 +00001542 * @gh: the glock holder
1543 *
1544 * Returns: 0 on success, -ENOBUFS when we run out of space
1545 */
1546
Steven Whitehouse6802e342008-05-21 17:03:22 +01001547static int dump_holder(struct seq_file *seq, const struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001548{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001549 struct task_struct *gh_owner = NULL;
1550 char buffer[KSYM_SYMBOL_LEN];
1551 char flags_buf[32];
David Teiglandb3b94fa2006-01-16 16:50:04 +00001552
Steven Whitehouse6802e342008-05-21 17:03:22 +01001553 sprint_symbol(buffer, gh->gh_ip);
1554 if (gh->gh_owner_pid)
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -08001555 gh_owner = pid_task(gh->gh_owner_pid, PIDTYPE_PID);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001556 gfs2_print_dbg(seq, " H: s:%s f:%s e:%d p:%ld [%s] %s\n",
1557 state2str(gh->gh_state),
1558 hflags2str(flags_buf, gh->gh_flags, gh->gh_iflags),
1559 gh->gh_error,
1560 gh->gh_owner_pid ? (long)pid_nr(gh->gh_owner_pid) : -1,
1561 gh_owner ? gh_owner->comm : "(ended)", buffer);
Robert Peterson7c52b162007-03-16 10:26:37 +00001562 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001563}
1564
Steven Whitehouse6802e342008-05-21 17:03:22 +01001565static const char *gflags2str(char *buf, const unsigned long *gflags)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001566{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001567 char *p = buf;
1568 if (test_bit(GLF_LOCK, gflags))
1569 *p++ = 'l';
Steven Whitehouse6802e342008-05-21 17:03:22 +01001570 if (test_bit(GLF_DEMOTE, gflags))
1571 *p++ = 'D';
1572 if (test_bit(GLF_PENDING_DEMOTE, gflags))
1573 *p++ = 'd';
1574 if (test_bit(GLF_DEMOTE_IN_PROGRESS, gflags))
1575 *p++ = 'p';
1576 if (test_bit(GLF_DIRTY, gflags))
1577 *p++ = 'y';
1578 if (test_bit(GLF_LFLUSH, gflags))
1579 *p++ = 'f';
1580 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, gflags))
1581 *p++ = 'i';
1582 if (test_bit(GLF_REPLY_PENDING, gflags))
1583 *p++ = 'r';
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001584 if (test_bit(GLF_INITIAL, gflags))
1585 *p++ = 'i';
1586 if (test_bit(GLF_FROZEN, gflags))
1587 *p++ = 'F';
Steven Whitehouse6802e342008-05-21 17:03:22 +01001588 *p = 0;
1589 return buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001590}
1591
1592/**
Steven Whitehouse6802e342008-05-21 17:03:22 +01001593 * __dump_glock - print information about a glock
1594 * @seq: The seq_file struct
David Teiglandb3b94fa2006-01-16 16:50:04 +00001595 * @gl: the glock
Steven Whitehouse6802e342008-05-21 17:03:22 +01001596 *
1597 * The file format is as follows:
1598 * One line per object, capital letters are used to indicate objects
1599 * G = glock, I = Inode, R = rgrp, H = holder. Glocks are not indented,
1600 * other objects are indented by a single space and follow the glock to
1601 * which they are related. Fields are indicated by lower case letters
1602 * followed by a colon and the field value, except for strings which are in
1603 * [] so that its possible to see if they are composed of spaces for
1604 * example. The field's are n = number (id of the object), f = flags,
1605 * t = type, s = state, r = refcount, e = error, p = pid.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001606 *
1607 * Returns: 0 on success, -ENOBUFS when we run out of space
1608 */
1609
Steven Whitehouse6802e342008-05-21 17:03:22 +01001610static int __dump_glock(struct seq_file *seq, const struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001611{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001612 const struct gfs2_glock_operations *glops = gl->gl_ops;
1613 unsigned long long dtime;
1614 const struct gfs2_holder *gh;
1615 char gflags_buf[32];
1616 int error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001617
Steven Whitehouse6802e342008-05-21 17:03:22 +01001618 dtime = jiffies - gl->gl_demote_time;
1619 dtime *= 1000000/HZ; /* demote time in uSec */
1620 if (!test_bit(GLF_DEMOTE, &gl->gl_flags))
1621 dtime = 0;
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001622 gfs2_print_dbg(seq, "G: s:%s n:%u/%llu f:%s t:%s d:%s/%llu a:%d r:%d\n",
Steven Whitehouse6802e342008-05-21 17:03:22 +01001623 state2str(gl->gl_state),
1624 gl->gl_name.ln_type,
1625 (unsigned long long)gl->gl_name.ln_number,
1626 gflags2str(gflags_buf, &gl->gl_flags),
1627 state2str(gl->gl_target),
1628 state2str(gl->gl_demote_state), dtime,
Steven Whitehouse6802e342008-05-21 17:03:22 +01001629 atomic_read(&gl->gl_ail_count),
1630 atomic_read(&gl->gl_ref));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001631
David Teiglandb3b94fa2006-01-16 16:50:04 +00001632 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
Steven Whitehouse6802e342008-05-21 17:03:22 +01001633 error = dump_holder(seq, gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001634 if (error)
1635 goto out;
1636 }
Steven Whitehouse6802e342008-05-21 17:03:22 +01001637 if (gl->gl_state != LM_ST_UNLOCKED && glops->go_dump)
1638 error = glops->go_dump(seq, gl);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001639out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001640 return error;
1641}
1642
Steven Whitehouse6802e342008-05-21 17:03:22 +01001643static int dump_glock(struct seq_file *seq, struct gfs2_glock *gl)
1644{
1645 int ret;
1646 spin_lock(&gl->gl_spin);
1647 ret = __dump_glock(seq, gl);
1648 spin_unlock(&gl->gl_spin);
1649 return ret;
1650}
1651
David Teiglandb3b94fa2006-01-16 16:50:04 +00001652/**
1653 * gfs2_dump_lockstate - print out the current lockstate
1654 * @sdp: the filesystem
1655 * @ub: the buffer to copy the information into
1656 *
1657 * If @ub is NULL, dump the lockstate to the console.
1658 *
1659 */
1660
Adrian Bunk08bc2db2006-04-28 10:59:12 -04001661static int gfs2_dump_lockstate(struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001662{
David Teiglandb3b94fa2006-01-16 16:50:04 +00001663 struct gfs2_glock *gl;
Steven Whitehouseb6397892006-09-12 10:10:01 -04001664 struct hlist_node *h;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001665 unsigned int x;
1666 int error = 0;
1667
1668 for (x = 0; x < GFS2_GL_HASH_SIZE; x++) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001669
Steven Whitehouse087efdd2006-09-09 16:59:11 -04001670 read_lock(gl_lock_addr(x));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001671
Steven Whitehouseb6397892006-09-12 10:10:01 -04001672 hlist_for_each_entry(gl, h, &gl_hash_table[x].hb_list, gl_list) {
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001673 if (gl->gl_sbd != sdp)
1674 continue;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001675
Robert Peterson7c52b162007-03-16 10:26:37 +00001676 error = dump_glock(NULL, gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001677 if (error)
1678 break;
1679 }
1680
Steven Whitehouse087efdd2006-09-09 16:59:11 -04001681 read_unlock(gl_lock_addr(x));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001682
1683 if (error)
1684 break;
1685 }
1686
1687
1688 return error;
1689}
1690
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001691
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001692int __init gfs2_glock_init(void)
1693{
1694 unsigned i;
1695 for(i = 0; i < GFS2_GL_HASH_SIZE; i++) {
Steven Whitehouseb6397892006-09-12 10:10:01 -04001696 INIT_HLIST_HEAD(&gl_hash_table[i].hb_list);
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001697 }
Steven Whitehouse087efdd2006-09-09 16:59:11 -04001698#ifdef GL_HASH_LOCK_SZ
1699 for(i = 0; i < GL_HASH_LOCK_SZ; i++) {
1700 rwlock_init(&gl_hash_locks[i]);
1701 }
1702#endif
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001703
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001704 glock_workqueue = create_workqueue("glock_workqueue");
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001705 if (IS_ERR(glock_workqueue))
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001706 return PTR_ERR(glock_workqueue);
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001707
1708 register_shrinker(&glock_shrinker);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001709
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001710 return 0;
1711}
1712
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001713void gfs2_glock_exit(void)
1714{
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001715 unregister_shrinker(&glock_shrinker);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001716 destroy_workqueue(glock_workqueue);
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001717}
1718
Steven Whitehouse6802e342008-05-21 17:03:22 +01001719static int gfs2_glock_iter_next(struct gfs2_glock_iter *gi)
Robert Peterson7c52b162007-03-16 10:26:37 +00001720{
Steven Whitehouse7b08fc62007-07-24 13:53:36 +01001721 struct gfs2_glock *gl;
1722
Abhijith Dasa947e032007-08-21 09:57:29 -05001723restart:
Robert Peterson7a0079d2007-04-17 11:37:11 -05001724 read_lock(gl_lock_addr(gi->hash));
Steven Whitehouse7b08fc62007-07-24 13:53:36 +01001725 gl = gi->gl;
1726 if (gl) {
Abhijith Dasa947e032007-08-21 09:57:29 -05001727 gi->gl = hlist_entry(gl->gl_list.next,
1728 struct gfs2_glock, gl_list);
Steven Whitehousec1e817d2008-07-22 22:58:03 +01001729 } else {
1730 gi->gl = hlist_entry(gl_hash_table[gi->hash].hb_list.first,
1731 struct gfs2_glock, gl_list);
Robert Peterson7c52b162007-03-16 10:26:37 +00001732 }
Steven Whitehousec1e817d2008-07-22 22:58:03 +01001733 if (gi->gl)
1734 gfs2_glock_hold(gi->gl);
Robert Peterson7a0079d2007-04-17 11:37:11 -05001735 read_unlock(gl_lock_addr(gi->hash));
Steven Whitehouse7b08fc62007-07-24 13:53:36 +01001736 if (gl)
1737 gfs2_glock_put(gl);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001738 while (gi->gl == NULL) {
Steven Whitehousec1e817d2008-07-22 22:58:03 +01001739 gi->hash++;
Steven Whitehouse7b08fc62007-07-24 13:53:36 +01001740 if (gi->hash >= GFS2_GL_HASH_SIZE)
1741 return 1;
1742 read_lock(gl_lock_addr(gi->hash));
1743 gi->gl = hlist_entry(gl_hash_table[gi->hash].hb_list.first,
1744 struct gfs2_glock, gl_list);
1745 if (gi->gl)
1746 gfs2_glock_hold(gi->gl);
1747 read_unlock(gl_lock_addr(gi->hash));
1748 }
Abhijith Dasa947e032007-08-21 09:57:29 -05001749
1750 if (gi->sdp != gi->gl->gl_sbd)
1751 goto restart;
1752
Robert Peterson7c52b162007-03-16 10:26:37 +00001753 return 0;
1754}
1755
Steven Whitehouse6802e342008-05-21 17:03:22 +01001756static void gfs2_glock_iter_free(struct gfs2_glock_iter *gi)
Robert Peterson7c52b162007-03-16 10:26:37 +00001757{
Steven Whitehouse7b08fc62007-07-24 13:53:36 +01001758 if (gi->gl)
1759 gfs2_glock_put(gi->gl);
Abhijith Dasa947e032007-08-21 09:57:29 -05001760 gi->gl = NULL;
Robert Peterson7c52b162007-03-16 10:26:37 +00001761}
1762
Steven Whitehouse6802e342008-05-21 17:03:22 +01001763static void *gfs2_glock_seq_start(struct seq_file *seq, loff_t *pos)
Robert Peterson7c52b162007-03-16 10:26:37 +00001764{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001765 struct gfs2_glock_iter *gi = seq->private;
Robert Peterson7c52b162007-03-16 10:26:37 +00001766 loff_t n = *pos;
1767
Steven Whitehouse6802e342008-05-21 17:03:22 +01001768 gi->hash = 0;
Robert Peterson7c52b162007-03-16 10:26:37 +00001769
Steven Whitehouse6802e342008-05-21 17:03:22 +01001770 do {
Robert Peterson7c52b162007-03-16 10:26:37 +00001771 if (gfs2_glock_iter_next(gi)) {
1772 gfs2_glock_iter_free(gi);
1773 return NULL;
1774 }
Steven Whitehouse6802e342008-05-21 17:03:22 +01001775 } while (n--);
Robert Peterson7c52b162007-03-16 10:26:37 +00001776
Steven Whitehouse6802e342008-05-21 17:03:22 +01001777 return gi->gl;
Robert Peterson7c52b162007-03-16 10:26:37 +00001778}
1779
Steven Whitehouse6802e342008-05-21 17:03:22 +01001780static void *gfs2_glock_seq_next(struct seq_file *seq, void *iter_ptr,
Robert Peterson7c52b162007-03-16 10:26:37 +00001781 loff_t *pos)
1782{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001783 struct gfs2_glock_iter *gi = seq->private;
Robert Peterson7c52b162007-03-16 10:26:37 +00001784
1785 (*pos)++;
1786
1787 if (gfs2_glock_iter_next(gi)) {
1788 gfs2_glock_iter_free(gi);
1789 return NULL;
1790 }
1791
Steven Whitehouse6802e342008-05-21 17:03:22 +01001792 return gi->gl;
Robert Peterson7c52b162007-03-16 10:26:37 +00001793}
1794
Steven Whitehouse6802e342008-05-21 17:03:22 +01001795static void gfs2_glock_seq_stop(struct seq_file *seq, void *iter_ptr)
Robert Peterson7c52b162007-03-16 10:26:37 +00001796{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001797 struct gfs2_glock_iter *gi = seq->private;
1798 gfs2_glock_iter_free(gi);
Robert Peterson7c52b162007-03-16 10:26:37 +00001799}
1800
Steven Whitehouse6802e342008-05-21 17:03:22 +01001801static int gfs2_glock_seq_show(struct seq_file *seq, void *iter_ptr)
Robert Peterson7c52b162007-03-16 10:26:37 +00001802{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001803 return dump_glock(seq, iter_ptr);
Robert Peterson7c52b162007-03-16 10:26:37 +00001804}
1805
Denis Cheng4ef29002007-07-31 18:31:11 +08001806static const struct seq_operations gfs2_glock_seq_ops = {
Robert Peterson7c52b162007-03-16 10:26:37 +00001807 .start = gfs2_glock_seq_start,
1808 .next = gfs2_glock_seq_next,
1809 .stop = gfs2_glock_seq_stop,
1810 .show = gfs2_glock_seq_show,
1811};
1812
1813static int gfs2_debugfs_open(struct inode *inode, struct file *file)
1814{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001815 int ret = seq_open_private(file, &gfs2_glock_seq_ops,
1816 sizeof(struct gfs2_glock_iter));
1817 if (ret == 0) {
1818 struct seq_file *seq = file->private_data;
1819 struct gfs2_glock_iter *gi = seq->private;
1820 gi->sdp = inode->i_private;
1821 }
1822 return ret;
Robert Peterson7c52b162007-03-16 10:26:37 +00001823}
1824
1825static const struct file_operations gfs2_debug_fops = {
1826 .owner = THIS_MODULE,
1827 .open = gfs2_debugfs_open,
1828 .read = seq_read,
1829 .llseek = seq_lseek,
Steven Whitehouse6802e342008-05-21 17:03:22 +01001830 .release = seq_release_private,
Robert Peterson7c52b162007-03-16 10:26:37 +00001831};
1832
1833int gfs2_create_debugfs_file(struct gfs2_sbd *sdp)
1834{
Robert Peterson5f882092007-04-18 11:41:11 -05001835 sdp->debugfs_dir = debugfs_create_dir(sdp->sd_table_name, gfs2_root);
1836 if (!sdp->debugfs_dir)
1837 return -ENOMEM;
1838 sdp->debugfs_dentry_glocks = debugfs_create_file("glocks",
1839 S_IFREG | S_IRUGO,
1840 sdp->debugfs_dir, sdp,
1841 &gfs2_debug_fops);
1842 if (!sdp->debugfs_dentry_glocks)
Robert Peterson7c52b162007-03-16 10:26:37 +00001843 return -ENOMEM;
1844
1845 return 0;
1846}
1847
1848void gfs2_delete_debugfs_file(struct gfs2_sbd *sdp)
1849{
Robert Peterson5f882092007-04-18 11:41:11 -05001850 if (sdp && sdp->debugfs_dir) {
1851 if (sdp->debugfs_dentry_glocks) {
1852 debugfs_remove(sdp->debugfs_dentry_glocks);
1853 sdp->debugfs_dentry_glocks = NULL;
1854 }
1855 debugfs_remove(sdp->debugfs_dir);
1856 sdp->debugfs_dir = NULL;
1857 }
Robert Peterson7c52b162007-03-16 10:26:37 +00001858}
1859
1860int gfs2_register_debugfs(void)
1861{
1862 gfs2_root = debugfs_create_dir("gfs2", NULL);
1863 return gfs2_root ? 0 : -ENOMEM;
1864}
1865
1866void gfs2_unregister_debugfs(void)
1867{
1868 debugfs_remove(gfs2_root);
Robert Peterson5f882092007-04-18 11:41:11 -05001869 gfs2_root = NULL;
Robert Peterson7c52b162007-03-16 10:26:37 +00001870}