]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/gfs2/glock.c
GFS2: Expose UUID via sysfs/uevent
[net-next-2.6.git] / fs / gfs2 / glock.c
CommitLineData
b3b94faa
DT
1/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
cf45b752 3 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
b3b94faa
DT
4 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
e9fc2aa0 7 * of the GNU General Public License version 2.
b3b94faa
DT
8 */
9
10#include <linux/sched.h>
11#include <linux/slab.h>
12#include <linux/spinlock.h>
b3b94faa
DT
13#include <linux/buffer_head.h>
14#include <linux/delay.h>
15#include <linux/sort.h>
16#include <linux/jhash.h>
d0dc80db 17#include <linux/kallsyms.h>
5c676f6d 18#include <linux/gfs2_ondisk.h>
24264434 19#include <linux/list.h>
fee852e3 20#include <linux/wait.h>
95d97b7d 21#include <linux/module.h>
61be084e 22#include <linux/rwsem.h>
b3b94faa 23#include <asm/uaccess.h>
7c52b166
RP
24#include <linux/seq_file.h>
25#include <linux/debugfs.h>
8fbbfd21
SW
26#include <linux/kthread.h>
27#include <linux/freezer.h>
c4f68a13
BM
28#include <linux/workqueue.h>
29#include <linux/jiffies.h>
b3b94faa
DT
30
31#include "gfs2.h"
5c676f6d 32#include "incore.h"
b3b94faa
DT
33#include "glock.h"
34#include "glops.h"
35#include "inode.h"
b3b94faa
DT
36#include "lops.h"
37#include "meta_io.h"
38#include "quota.h"
39#include "super.h"
5c676f6d 40#include "util.h"
813e0c46 41#include "bmap.h"
b3b94faa 42
37b2fa6a 43struct gfs2_gl_hash_bucket {
b6397893 44 struct hlist_head hb_list;
37b2fa6a
SW
45};
46
6802e340
SW
47struct 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 */
7c52b166
RP
52};
53
b3b94faa
DT
54typedef void (*glock_examiner) (struct gfs2_glock * gl);
55
08bc2dbc 56static int gfs2_dump_lockstate(struct gfs2_sbd *sdp);
6802e340
SW
57static 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);
c4f68a13 60
61be084e 61static DECLARE_RWSEM(gfs2_umount_flush_sem);
7c52b166 62static struct dentry *gfs2_root;
c4f68a13 63static struct workqueue_struct *glock_workqueue;
97cc1025
SW
64static LIST_HEAD(lru_list);
65static atomic_t lru_count = ATOMIC_INIT(0);
eb8374e7 66static DEFINE_SPINLOCK(lru_lock);
08bc2dbc 67
b6397893 68#define GFS2_GL_HASH_SHIFT 15
087efdd3
SW
69#define GFS2_GL_HASH_SIZE (1 << GFS2_GL_HASH_SHIFT)
70#define GFS2_GL_HASH_MASK (GFS2_GL_HASH_SIZE - 1)
71
85d1da67 72static struct gfs2_gl_hash_bucket gl_hash_table[GFS2_GL_HASH_SIZE];
04b933f2 73static struct dentry *gfs2_root;
087efdd3
SW
74
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{
94610610 114 return &gl_hash_locks[x & (GL_HASH_LOCK_SZ-1)];
087efdd3
SW
115}
116#else /* not SMP, so no spinlocks required */
0ac23069 117static inline rwlock_t *gl_lock_addr(unsigned int x)
087efdd3
SW
118{
119 return NULL;
120}
121#endif
85d1da67 122
b3b94faa
DT
123/**
124 * 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
b8547856
SW
130static unsigned int gl_hash(const struct gfs2_sbd *sdp,
131 const struct lm_lockname *name)
b3b94faa
DT
132{
133 unsigned int h;
134
cd915493 135 h = jhash(&name->ln_number, sizeof(u64), 0);
b3b94faa 136 h = jhash(&name->ln_type, sizeof(unsigned int), h);
b8547856 137 h = jhash(&sdp, sizeof(struct gfs2_sbd *), h);
b3b94faa
DT
138 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
b3b94faa
DT
156 if (aspace)
157 gfs2_aspace_put(aspace);
158
f057f6cd 159 sdp->sd_lockstruct.ls_ops->lm_put_lock(gfs2_glock_cachep, gl);
b3b94faa
DT
160}
161
162/**
163 * gfs2_glock_hold() - increment reference count on glock
164 * @gl: The glock to hold
165 *
166 */
167
048786f1 168static void gfs2_glock_hold(struct gfs2_glock *gl)
b3b94faa 169{
d8348de0 170 GLOCK_BUG_ON(gl, atomic_read(&gl->gl_ref) == 0);
16feb9fe 171 atomic_inc(&gl->gl_ref);
b3b94faa
DT
172}
173
97cc1025
SW
174/**
175 * gfs2_glock_schedule_for_reclaim - Add a glock to the reclaim list
176 * @gl: the glock
177 *
178 */
179
180static void gfs2_glock_schedule_for_reclaim(struct gfs2_glock *gl)
181{
182 spin_lock(&lru_lock);
183 if (list_empty(&gl->gl_lru) && gl->gl_state != LM_ST_UNLOCKED) {
184 list_add_tail(&gl->gl_lru, &lru_list);
185 atomic_inc(&lru_count);
186 }
187 spin_unlock(&lru_lock);
188}
189
b3b94faa
DT
190/**
191 * gfs2_glock_put() - Decrement reference count on glock
192 * @gl: The glock to put
193 *
194 */
195
196int gfs2_glock_put(struct gfs2_glock *gl)
197{
b3b94faa
DT
198 int rv = 0;
199
087efdd3 200 write_lock(gl_lock_addr(gl->gl_hash));
16feb9fe 201 if (atomic_dec_and_test(&gl->gl_ref)) {
b6397893 202 hlist_del(&gl->gl_list);
087efdd3 203 write_unlock(gl_lock_addr(gl->gl_hash));
97cc1025
SW
204 spin_lock(&lru_lock);
205 if (!list_empty(&gl->gl_lru)) {
206 list_del_init(&gl->gl_lru);
207 atomic_dec(&lru_count);
208 }
209 spin_unlock(&lru_lock);
6802e340 210 GLOCK_BUG_ON(gl, !list_empty(&gl->gl_holders));
b3b94faa
DT
211 glock_free(gl);
212 rv = 1;
213 goto out;
214 }
97cc1025
SW
215 /* 1 for being hashed, 1 for having state != LM_ST_UNLOCKED */
216 if (atomic_read(&gl->gl_ref) == 2)
217 gfs2_glock_schedule_for_reclaim(gl);
d8348de0 218 write_unlock(gl_lock_addr(gl->gl_hash));
a2242db0 219out:
b3b94faa
DT
220 return rv;
221}
222
b3b94faa
DT
223/**
224 * 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
37b2fa6a 231static struct gfs2_glock *search_bucket(unsigned int hash,
899be4d3 232 const struct gfs2_sbd *sdp,
d6a53727 233 const struct lm_lockname *name)
b3b94faa
DT
234{
235 struct gfs2_glock *gl;
b6397893 236 struct hlist_node *h;
b3b94faa 237
b6397893 238 hlist_for_each_entry(gl, h, &gl_hash_table[hash].hb_list, gl_list) {
b3b94faa
DT
239 if (!lm_name_equal(&gl->gl_name, name))
240 continue;
899be4d3
SW
241 if (gl->gl_sbd != sdp)
242 continue;
b3b94faa 243
16feb9fe 244 atomic_inc(&gl->gl_ref);
b3b94faa
DT
245
246 return gl;
247 }
248
249 return NULL;
250}
251
6802e340
SW
252/**
253 * 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)
261{
262 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;
209806ab
SW
270 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 }
6802e340
SW
276 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 *
813e0c46
SW
292 * Returns: 1 if there is a blocked holder at the head of the list, or 2
293 * if a type specific operation is underway.
6802e340
SW
294 */
295
296static int do_promote(struct gfs2_glock *gl)
55ba474d
HH
297__releases(&gl->gl_spin)
298__acquires(&gl->gl_spin)
6802e340
SW
299{
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) {
813e0c46
SW
316 if (ret == 1)
317 return 2;
6802e340
SW
318 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;
813e0c46 422 int rv;
6802e340
SW
423
424 spin_lock(&gl->gl_spin);
425 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) {
6802e340
SW
477 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 }
813e0c46
SW
487 rv = do_promote(gl);
488 if (rv == 2)
489 goto out_locked;
6802e340
SW
490 }
491out:
492 clear_bit(GLF_LOCK, &gl->gl_flags);
813e0c46 493out_locked:
6802e340
SW
494 spin_unlock(&gl->gl_spin);
495 gfs2_glock_put(gl);
496}
497
498static unsigned int gfs2_lm_lock(struct gfs2_sbd *sdp, void *lock,
f057f6cd 499 unsigned int req_state,
6802e340
SW
500 unsigned int flags)
501{
502 int ret = LM_OUT_ERROR;
048bca22
SW
503
504 if (!sdp->sd_lockstruct.ls_ops->lm_lock)
505 return req_state == LM_ST_UNLOCKED ? 0 : req_state;
506
6802e340 507 if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
f057f6cd 508 ret = sdp->sd_lockstruct.ls_ops->lm_lock(lock,
6802e340
SW
509 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)
55ba474d
HH
522__releases(&gl->gl_spin)
523__acquires(&gl->gl_spin)
6802e340
SW
524{
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;
f057f6cd 551 ret = gfs2_lm_lock(sdp, gl, target, lck_flags);
6802e340
SW
552
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)
55ba474d
HH
589__releases(&gl->gl_spin)
590__acquires(&gl->gl_spin)
6802e340
SW
591{
592 struct gfs2_holder *gh = NULL;
813e0c46 593 int ret;
6802e340
SW
594
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
d8348de0 600 down_read(&gfs2_umount_flush_sem);
6802e340
SW
601 if (test_bit(GLF_DEMOTE, &gl->gl_flags) &&
602 gl->gl_demote_state != gl->gl_state) {
603 if (find_first_holder(gl))
d8348de0 604 goto out_unlock;
6802e340
SW
605 if (nonblock)
606 goto out_sched;
607 set_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags);
265d529c 608 GLOCK_BUG_ON(gl, gl->gl_demote_state == LM_ST_EXCLUSIVE);
6802e340
SW
609 gl->gl_target = gl->gl_demote_state;
610 } else {
611 if (test_bit(GLF_DEMOTE, &gl->gl_flags))
612 gfs2_demote_wake(gl);
813e0c46
SW
613 ret = do_promote(gl);
614 if (ret == 0)
d8348de0 615 goto out_unlock;
813e0c46 616 if (ret == 2)
d8348de0 617 goto out_sem;
6802e340
SW
618 gh = find_first_waiter(gl);
619 gl->gl_target = gh->gh_state;
620 if (!(gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)))
621 do_error(gl, 0); /* Fail queued try locks */
622 }
623 do_xmote(gl, gh, gl->gl_target);
d8348de0
SW
624out_sem:
625 up_read(&gfs2_umount_flush_sem);
6802e340
SW
626 return;
627
628out_sched:
629 gfs2_glock_hold(gl);
630 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
631 gfs2_glock_put(gl);
d8348de0 632out_unlock:
6802e340 633 clear_bit(GLF_LOCK, &gl->gl_flags);
d8348de0 634 goto out_sem;
6802e340
SW
635}
636
c4f68a13
BM
637static void glock_work_func(struct work_struct *work)
638{
6802e340 639 unsigned long delay = 0;
c4f68a13
BM
640 struct gfs2_glock *gl = container_of(work, struct gfs2_glock, gl_work.work);
641
6802e340
SW
642 if (test_and_clear_bit(GLF_REPLY_PENDING, &gl->gl_flags))
643 finish_xmote(gl, gl->gl_reply);
c4f68a13 644 spin_lock(&gl->gl_spin);
265d529c
SW
645 if (test_and_clear_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
646 gl->gl_state != LM_ST_UNLOCKED &&
647 gl->gl_demote_state != LM_ST_EXCLUSIVE) {
6802e340
SW
648 unsigned long holdtime, now = jiffies;
649 holdtime = gl->gl_tchange + gl->gl_ops->go_min_hold_time;
650 if (time_before(now, holdtime))
651 delay = holdtime - now;
652 set_bit(delay ? GLF_PENDING_DEMOTE : GLF_DEMOTE, &gl->gl_flags);
653 }
654 run_queue(gl, 0);
c4f68a13 655 spin_unlock(&gl->gl_spin);
6802e340
SW
656 if (!delay ||
657 queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
658 gfs2_glock_put(gl);
c4f68a13
BM
659}
660
b3b94faa
DT
661/**
662 * gfs2_glock_get() - Get a glock, or create one if one doesn't exist
663 * @sdp: The GFS2 superblock
664 * @number: the lock number
665 * @glops: The glock_operations to use
666 * @create: If 0, don't create the glock if it doesn't exist
667 * @glp: the glock is returned here
668 *
669 * This does not lock a glock, just finds/creates structures for one.
670 *
671 * Returns: errno
672 */
673
cd915493 674int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number,
8fb4b536 675 const struct gfs2_glock_operations *glops, int create,
b3b94faa
DT
676 struct gfs2_glock **glp)
677{
37b2fa6a 678 struct lm_lockname name = { .ln_number = number, .ln_type = glops->go_type };
b3b94faa 679 struct gfs2_glock *gl, *tmp;
37b2fa6a 680 unsigned int hash = gl_hash(sdp, &name);
b3b94faa
DT
681 int error;
682
087efdd3 683 read_lock(gl_lock_addr(hash));
37b2fa6a 684 gl = search_bucket(hash, sdp, &name);
087efdd3 685 read_unlock(gl_lock_addr(hash));
b3b94faa
DT
686
687 if (gl || !create) {
688 *glp = gl;
689 return 0;
690 }
691
692 gl = kmem_cache_alloc(gfs2_glock_cachep, GFP_KERNEL);
693 if (!gl)
694 return -ENOMEM;
695
ec45d9f5 696 gl->gl_flags = 0;
b3b94faa 697 gl->gl_name = name;
16feb9fe 698 atomic_set(&gl->gl_ref, 1);
b3b94faa 699 gl->gl_state = LM_ST_UNLOCKED;
6802e340 700 gl->gl_target = LM_ST_UNLOCKED;
c4f68a13 701 gl->gl_demote_state = LM_ST_EXCLUSIVE;
37b2fa6a 702 gl->gl_hash = hash;
b3b94faa 703 gl->gl_ops = glops;
f057f6cd
SW
704 snprintf(gl->gl_strname, GDLM_STRNAME_BYTES, "%8x%16llx", name.ln_type, (unsigned long long)number);
705 memset(&gl->gl_lksb, 0, sizeof(struct dlm_lksb));
706 gl->gl_lksb.sb_lvbptr = gl->gl_lvb;
c4f68a13 707 gl->gl_tchange = jiffies;
ec45d9f5 708 gl->gl_object = NULL;
b3b94faa 709 gl->gl_sbd = sdp;
ec45d9f5 710 gl->gl_aspace = NULL;
c4f68a13 711 INIT_DELAYED_WORK(&gl->gl_work, glock_work_func);
b3b94faa
DT
712
713 /* If this glock protects actual on-disk data or metadata blocks,
714 create a VFS inode to manage the pages/buffers holding them. */
50299965 715 if (glops == &gfs2_inode_glops || glops == &gfs2_rgrp_glops) {
b3b94faa
DT
716 gl->gl_aspace = gfs2_aspace_get(sdp);
717 if (!gl->gl_aspace) {
718 error = -ENOMEM;
719 goto fail;
720 }
721 }
722
087efdd3 723 write_lock(gl_lock_addr(hash));
37b2fa6a 724 tmp = search_bucket(hash, sdp, &name);
b3b94faa 725 if (tmp) {
087efdd3 726 write_unlock(gl_lock_addr(hash));
b3b94faa
DT
727 glock_free(gl);
728 gl = tmp;
729 } else {
b6397893 730 hlist_add_head(&gl->gl_list, &gl_hash_table[hash].hb_list);
087efdd3 731 write_unlock(gl_lock_addr(hash));
b3b94faa
DT
732 }
733
734 *glp = gl;
735
736 return 0;
737
ec45d9f5 738fail:
907b9bce 739 kmem_cache_free(gfs2_glock_cachep, gl);
b3b94faa
DT
740 return error;
741}
742
743/**
744 * gfs2_holder_init - initialize a struct gfs2_holder in the default way
745 * @gl: the glock
746 * @state: the state we're requesting
747 * @flags: the modifier flags
748 * @gh: the holder structure
749 *
750 */
751
190562bd 752void gfs2_holder_init(struct gfs2_glock *gl, unsigned int state, unsigned flags,
b3b94faa
DT
753 struct gfs2_holder *gh)
754{
755 INIT_LIST_HEAD(&gh->gh_list);
756 gh->gh_gl = gl;
d0dc80db 757 gh->gh_ip = (unsigned long)__builtin_return_address(0);
b1e058da 758 gh->gh_owner_pid = get_pid(task_pid(current));
b3b94faa
DT
759 gh->gh_state = state;
760 gh->gh_flags = flags;
761 gh->gh_error = 0;
762 gh->gh_iflags = 0;
b3b94faa
DT
763 gfs2_glock_hold(gl);
764}
765
766/**
767 * gfs2_holder_reinit - reinitialize a struct gfs2_holder so we can requeue it
768 * @state: the state we're requesting
769 * @flags: the modifier flags
770 * @gh: the holder structure
771 *
772 * Don't mess with the glock.
773 *
774 */
775
190562bd 776void gfs2_holder_reinit(unsigned int state, unsigned flags, struct gfs2_holder *gh)
b3b94faa
DT
777{
778 gh->gh_state = state;
579b78a4 779 gh->gh_flags = flags;
3b8249f6 780 gh->gh_iflags = 0;
d0dc80db 781 gh->gh_ip = (unsigned long)__builtin_return_address(0);
b3b94faa
DT
782}
783
784/**
785 * gfs2_holder_uninit - uninitialize a holder structure (drop glock reference)
786 * @gh: the holder structure
787 *
788 */
789
790void gfs2_holder_uninit(struct gfs2_holder *gh)
791{
b1e058da 792 put_pid(gh->gh_owner_pid);
b3b94faa
DT
793 gfs2_glock_put(gh->gh_gl);
794 gh->gh_gl = NULL;
d0dc80db 795 gh->gh_ip = 0;
b3b94faa
DT
796}
797
d93cfa98 798static int just_schedule(void *word)
fee852e3
SW
799{
800 schedule();
801 return 0;
802}
803
6802e340 804static void wait_on_holder(struct gfs2_holder *gh)
da755fdb 805{
6802e340
SW
806 might_sleep();
807 wait_on_bit(&gh->gh_iflags, HIF_WAIT, just_schedule, TASK_UNINTERRUPTIBLE);
da755fdb
SW
808}
809
6802e340 810static void wait_on_demote(struct gfs2_glock *gl)
b3b94faa 811{
6802e340
SW
812 might_sleep();
813 wait_on_bit(&gl->gl_flags, GLF_DEMOTE, just_schedule, TASK_UNINTERRUPTIBLE);
b3b94faa
DT
814}
815
816/**
6802e340
SW
817 * handle_callback - process a demote request
818 * @gl: the glock
819 * @state: the state the caller wants us to change to
b3b94faa 820 *
6802e340
SW
821 * There are only two requests that we are going to see in actual
822 * practise: LM_ST_SHARED and LM_ST_UNLOCKED
b3b94faa
DT
823 */
824
6802e340 825static void handle_callback(struct gfs2_glock *gl, unsigned int state,
97cc1025 826 unsigned long delay)
b3b94faa 827{
6802e340 828 int bit = delay ? GLF_PENDING_DEMOTE : GLF_DEMOTE;
b3b94faa 829
6802e340
SW
830 set_bit(bit, &gl->gl_flags);
831 if (gl->gl_demote_state == LM_ST_EXCLUSIVE) {
832 gl->gl_demote_state = state;
833 gl->gl_demote_time = jiffies;
6802e340
SW
834 } else if (gl->gl_demote_state != LM_ST_UNLOCKED &&
835 gl->gl_demote_state != state) {
836 gl->gl_demote_state = LM_ST_UNLOCKED;
b3b94faa 837 }
b3b94faa
DT
838}
839
840/**
6802e340 841 * gfs2_glock_wait - wait on a glock acquisition
b3b94faa
DT
842 * @gh: the glock holder
843 *
844 * Returns: 0 on success
845 */
846
6802e340 847int gfs2_glock_wait(struct gfs2_holder *gh)
b3b94faa 848{
fee852e3 849 wait_on_holder(gh);
b3b94faa
DT
850 return gh->gh_error;
851}
852
6802e340 853void gfs2_print_dbg(struct seq_file *seq, const char *fmt, ...)
7c52b166
RP
854{
855 va_list args;
856
857 va_start(args, fmt);
6802e340
SW
858 if (seq) {
859 struct gfs2_glock_iter *gi = seq->private;
7c52b166 860 vsprintf(gi->string, fmt, args);
6802e340
SW
861 seq_printf(seq, gi->string);
862 } else {
863 printk(KERN_ERR " ");
7c52b166 864 vprintk(fmt, args);
6802e340 865 }
7c52b166
RP
866 va_end(args);
867}
868
b3b94faa
DT
869/**
870 * add_to_queue - Add a holder to the wait queue (but look for recursion)
871 * @gh: the holder structure to add
872 *
6802e340
SW
873 * Eventually we should move the recursive locking trap to a
874 * debugging option or something like that. This is the fast
875 * path and needs to have the minimum number of distractions.
876 *
b3b94faa
DT
877 */
878
6802e340 879static inline void add_to_queue(struct gfs2_holder *gh)
55ba474d
HH
880__releases(&gl->gl_spin)
881__acquires(&gl->gl_spin)
b3b94faa
DT
882{
883 struct gfs2_glock *gl = gh->gh_gl;
6802e340
SW
884 struct gfs2_sbd *sdp = gl->gl_sbd;
885 struct list_head *insert_pt = NULL;
886 struct gfs2_holder *gh2;
887 int try_lock = 0;
b3b94faa 888
b1e058da 889 BUG_ON(gh->gh_owner_pid == NULL);
fee852e3
SW
890 if (test_and_set_bit(HIF_WAIT, &gh->gh_iflags))
891 BUG();
190562bd 892
6802e340
SW
893 if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) {
894 if (test_bit(GLF_LOCK, &gl->gl_flags))
895 try_lock = 1;
896 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags))
897 goto fail;
898 }
899
900 list_for_each_entry(gh2, &gl->gl_holders, gh_list) {
901 if (unlikely(gh2->gh_owner_pid == gh->gh_owner_pid &&
902 (gh->gh_gl->gl_ops->go_type != LM_TYPE_FLOCK)))
903 goto trap_recursive;
904 if (try_lock &&
905 !(gh2->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) &&
906 !may_grant(gl, gh)) {
907fail:
908 gh->gh_error = GLR_TRYFAILED;
909 gfs2_holder_wake(gh);
910 return;
b4c20166 911 }
6802e340
SW
912 if (test_bit(HIF_HOLDER, &gh2->gh_iflags))
913 continue;
914 if (unlikely((gh->gh_flags & LM_FLAG_PRIORITY) && !insert_pt))
915 insert_pt = &gh2->gh_list;
916 }
917 if (likely(insert_pt == NULL)) {
918 list_add_tail(&gh->gh_list, &gl->gl_holders);
919 if (unlikely(gh->gh_flags & LM_FLAG_PRIORITY))
920 goto do_cancel;
921 return;
922 }
923 list_add_tail(&gh->gh_list, insert_pt);
924do_cancel:
925 gh = list_entry(gl->gl_holders.next, struct gfs2_holder, gh_list);
926 if (!(gh->gh_flags & LM_FLAG_PRIORITY)) {
927 spin_unlock(&gl->gl_spin);
048bca22 928 if (sdp->sd_lockstruct.ls_ops->lm_cancel)
f057f6cd 929 sdp->sd_lockstruct.ls_ops->lm_cancel(gl);
6802e340 930 spin_lock(&gl->gl_spin);
b3b94faa 931 }
6802e340 932 return;
b3b94faa 933
6802e340
SW
934trap_recursive:
935 print_symbol(KERN_ERR "original: %s\n", gh2->gh_ip);
936 printk(KERN_ERR "pid: %d\n", pid_nr(gh2->gh_owner_pid));
937 printk(KERN_ERR "lock type: %d req lock state : %d\n",
938 gh2->gh_gl->gl_name.ln_type, gh2->gh_state);
939 print_symbol(KERN_ERR "new: %s\n", gh->gh_ip);
940 printk(KERN_ERR "pid: %d\n", pid_nr(gh->gh_owner_pid));
941 printk(KERN_ERR "lock type: %d req lock state : %d\n",
942 gh->gh_gl->gl_name.ln_type, gh->gh_state);
943 __dump_glock(NULL, gl);
944 BUG();
b3b94faa
DT
945}
946
947/**
948 * gfs2_glock_nq - enqueue a struct gfs2_holder onto a glock (acquire a glock)
949 * @gh: the holder structure
950 *
951 * if (gh->gh_flags & GL_ASYNC), this never returns an error
952 *
953 * Returns: 0, GLR_TRYFAILED, or errno on failure
954 */
955
956int gfs2_glock_nq(struct gfs2_holder *gh)
957{
958 struct gfs2_glock *gl = gh->gh_gl;
959 struct gfs2_sbd *sdp = gl->gl_sbd;
960 int error = 0;
961
6802e340 962 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
b3b94faa 963 return -EIO;
b3b94faa 964
b3b94faa
DT
965 spin_lock(&gl->gl_spin);
966 add_to_queue(gh);
6802e340 967 run_queue(gl, 1);
b3b94faa
DT
968 spin_unlock(&gl->gl_spin);
969
6802e340
SW
970 if (!(gh->gh_flags & GL_ASYNC))
971 error = gfs2_glock_wait(gh);
b3b94faa 972
b3b94faa
DT
973 return error;
974}
975
976/**
977 * gfs2_glock_poll - poll to see if an async request has been completed
978 * @gh: the holder
979 *
980 * Returns: 1 if the request is ready to be gfs2_glock_wait()ed on
981 */
982
983int gfs2_glock_poll(struct gfs2_holder *gh)
984{
6802e340 985 return test_bit(HIF_WAIT, &gh->gh_iflags) ? 0 : 1;
b3b94faa
DT
986}
987
988/**
989 * gfs2_glock_dq - dequeue a struct gfs2_holder from a glock (release a glock)
990 * @gh: the glock holder
991 *
992 */
993
994void gfs2_glock_dq(struct gfs2_holder *gh)
995{
996 struct gfs2_glock *gl = gh->gh_gl;
8fb4b536 997 const struct gfs2_glock_operations *glops = gl->gl_ops;
c4f68a13 998 unsigned delay = 0;
6802e340 999 int fast_path = 0;
b3b94faa 1000
6802e340 1001 spin_lock(&gl->gl_spin);
b3b94faa 1002 if (gh->gh_flags & GL_NOCACHE)
97cc1025 1003 handle_callback(gl, LM_ST_UNLOCKED, 0);
b3b94faa 1004
b3b94faa 1005 list_del_init(&gh->gh_list);
6802e340 1006 if (find_first_holder(gl) == NULL) {
3042a2cc 1007 if (glops->go_unlock) {
6802e340 1008 GLOCK_BUG_ON(gl, test_and_set_bit(GLF_LOCK, &gl->gl_flags));
3042a2cc 1009 spin_unlock(&gl->gl_spin);
b3b94faa 1010 glops->go_unlock(gh);
3042a2cc 1011 spin_lock(&gl->gl_spin);
6802e340 1012 clear_bit(GLF_LOCK, &gl->gl_flags);
3042a2cc 1013 }
6802e340
SW
1014 if (list_empty(&gl->gl_holders) &&
1015 !test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
1016 !test_bit(GLF_DEMOTE, &gl->gl_flags))
1017 fast_path = 1;
b3b94faa 1018 }
b3b94faa 1019 spin_unlock(&gl->gl_spin);
6802e340
SW
1020 if (likely(fast_path))
1021 return;
c4f68a13
BM
1022
1023 gfs2_glock_hold(gl);
1024 if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
1025 !test_bit(GLF_DEMOTE, &gl->gl_flags))
1026 delay = gl->gl_ops->go_min_hold_time;
1027 if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
1028 gfs2_glock_put(gl);
b3b94faa
DT
1029}
1030
d93cfa98
AD
1031void gfs2_glock_dq_wait(struct gfs2_holder *gh)
1032{
1033 struct gfs2_glock *gl = gh->gh_gl;
1034 gfs2_glock_dq(gh);
1035 wait_on_demote(gl);
1036}
1037
b3b94faa
DT
1038/**
1039 * gfs2_glock_dq_uninit - dequeue a holder from a glock and initialize it
1040 * @gh: the holder structure
1041 *
1042 */
1043
1044void gfs2_glock_dq_uninit(struct gfs2_holder *gh)
1045{
1046 gfs2_glock_dq(gh);
1047 gfs2_holder_uninit(gh);
1048}
1049
1050/**
1051 * gfs2_glock_nq_num - acquire a glock based on lock number
1052 * @sdp: the filesystem
1053 * @number: the lock number
1054 * @glops: the glock operations for the type of glock
1055 * @state: the state to acquire the glock in
1056 * @flags: modifier flags for the aquisition
1057 * @gh: the struct gfs2_holder
1058 *
1059 * Returns: errno
1060 */
1061
cd915493 1062int gfs2_glock_nq_num(struct gfs2_sbd *sdp, u64 number,
8fb4b536
SW
1063 const struct gfs2_glock_operations *glops,
1064 unsigned int state, int flags, struct gfs2_holder *gh)
b3b94faa
DT
1065{
1066 struct gfs2_glock *gl;
1067 int error;
1068
1069 error = gfs2_glock_get(sdp, number, glops, CREATE, &gl);
1070 if (!error) {
1071 error = gfs2_glock_nq_init(gl, state, flags, gh);
1072 gfs2_glock_put(gl);
1073 }
1074
1075 return error;
1076}
1077
1078/**
1079 * glock_compare - Compare two struct gfs2_glock structures for sorting
1080 * @arg_a: the first structure
1081 * @arg_b: the second structure
1082 *
1083 */
1084
1085static int glock_compare(const void *arg_a, const void *arg_b)
1086{
a5e08a9e
SW
1087 const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1088 const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1089 const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1090 const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
b3b94faa
DT
1091
1092 if (a->ln_number > b->ln_number)
a5e08a9e
SW
1093 return 1;
1094 if (a->ln_number < b->ln_number)
1095 return -1;
1c0f4872 1096 BUG_ON(gh_a->gh_gl->gl_ops->go_type == gh_b->gh_gl->gl_ops->go_type);
a5e08a9e 1097 return 0;
b3b94faa
DT
1098}
1099
1100/**
1101 * nq_m_sync - synchonously acquire more than one glock in deadlock free order
1102 * @num_gh: the number of structures
1103 * @ghs: an array of struct gfs2_holder structures
1104 *
1105 * Returns: 0 on success (all glocks acquired),
1106 * errno on failure (no glocks acquired)
1107 */
1108
1109static int nq_m_sync(unsigned int num_gh, struct gfs2_holder *ghs,
1110 struct gfs2_holder **p)
1111{
1112 unsigned int x;
1113 int error = 0;
1114
1115 for (x = 0; x < num_gh; x++)
1116 p[x] = &ghs[x];
1117
1118 sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare, NULL);
1119
1120 for (x = 0; x < num_gh; x++) {
1121 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1122
1123 error = gfs2_glock_nq(p[x]);
1124 if (error) {
1125 while (x--)
1126 gfs2_glock_dq(p[x]);
1127 break;
1128 }
1129 }
1130
1131 return error;
1132}
1133
1134/**
1135 * gfs2_glock_nq_m - acquire multiple glocks
1136 * @num_gh: the number of structures
1137 * @ghs: an array of struct gfs2_holder structures
1138 *
b3b94faa
DT
1139 *
1140 * Returns: 0 on success (all glocks acquired),
1141 * errno on failure (no glocks acquired)
1142 */
1143
1144int gfs2_glock_nq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1145{
eaf5bd3c
SW
1146 struct gfs2_holder *tmp[4];
1147 struct gfs2_holder **pph = tmp;
b3b94faa
DT
1148 int error = 0;
1149
eaf5bd3c
SW
1150 switch(num_gh) {
1151 case 0:
b3b94faa 1152 return 0;
eaf5bd3c 1153 case 1:
b3b94faa
DT
1154 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1155 return gfs2_glock_nq(ghs);
eaf5bd3c
SW
1156 default:
1157 if (num_gh <= 4)
b3b94faa 1158 break;
eaf5bd3c
SW
1159 pph = kmalloc(num_gh * sizeof(struct gfs2_holder *), GFP_NOFS);
1160 if (!pph)
1161 return -ENOMEM;
b3b94faa
DT
1162 }
1163
eaf5bd3c 1164 error = nq_m_sync(num_gh, ghs, pph);
b3b94faa 1165
eaf5bd3c
SW
1166 if (pph != tmp)
1167 kfree(pph);
b3b94faa
DT
1168
1169 return error;
1170}
1171
1172/**
1173 * gfs2_glock_dq_m - release multiple glocks
1174 * @num_gh: the number of structures
1175 * @ghs: an array of struct gfs2_holder structures
1176 *
1177 */
1178
1179void gfs2_glock_dq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1180{
1181 unsigned int x;
1182
1183 for (x = 0; x < num_gh; x++)
1184 gfs2_glock_dq(&ghs[x]);
1185}
1186
1187/**
1188 * gfs2_glock_dq_uninit_m - release multiple glocks
1189 * @num_gh: the number of structures
1190 * @ghs: an array of struct gfs2_holder structures
1191 *
1192 */
1193
1194void gfs2_glock_dq_uninit_m(unsigned int num_gh, struct gfs2_holder *ghs)
1195{
1196 unsigned int x;
1197
1198 for (x = 0; x < num_gh; x++)
1199 gfs2_glock_dq_uninit(&ghs[x]);
1200}
1201
f057f6cd 1202void gfs2_glock_cb(struct gfs2_glock *gl, unsigned int state)
da755fdb 1203{
c4f68a13
BM
1204 unsigned long delay = 0;
1205 unsigned long holdtime;
1206 unsigned long now = jiffies;
b3b94faa 1207
f057f6cd 1208 gfs2_glock_hold(gl);
c4f68a13
BM
1209 holdtime = gl->gl_tchange + gl->gl_ops->go_min_hold_time;
1210 if (time_before(now, holdtime))
1211 delay = holdtime - now;
dff52574
SW
1212 if (test_bit(GLF_REPLY_PENDING, &gl->gl_flags))
1213 delay = gl->gl_ops->go_min_hold_time;
b3b94faa 1214
6802e340 1215 spin_lock(&gl->gl_spin);
97cc1025 1216 handle_callback(gl, state, delay);
6802e340 1217 spin_unlock(&gl->gl_spin);
c4f68a13
BM
1218 if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
1219 gfs2_glock_put(gl);
b3b94faa
DT
1220}
1221
1222/**
f057f6cd
SW
1223 * gfs2_glock_complete - Callback used by locking
1224 * @gl: Pointer to the glock
1225 * @ret: The return value from the dlm
b3b94faa 1226 *
b3b94faa
DT
1227 */
1228
f057f6cd 1229void gfs2_glock_complete(struct gfs2_glock *gl, int ret)
b3b94faa 1230{
f057f6cd 1231 struct lm_lockstruct *ls = &gl->gl_sbd->sd_lockstruct;
f057f6cd
SW
1232 gl->gl_reply = ret;
1233 if (unlikely(test_bit(DFL_BLOCK_LOCKS, &ls->ls_flags))) {
1234 struct gfs2_holder *gh;
1235 spin_lock(&gl->gl_spin);
1236 gh = find_first_waiter(gl);
1237 if ((!(gh && (gh->gh_flags & LM_FLAG_NOEXP)) &&
1238 (gl->gl_target != LM_ST_UNLOCKED)) ||
1239 ((ret & ~LM_OUT_ST_MASK) != 0))
1240 set_bit(GLF_FROZEN, &gl->gl_flags);
1241 spin_unlock(&gl->gl_spin);
d8348de0 1242 if (test_bit(GLF_FROZEN, &gl->gl_flags))
b3b94faa 1243 return;
b3b94faa 1244 }
f057f6cd
SW
1245 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
1246 gfs2_glock_hold(gl);
1247 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1248 gfs2_glock_put(gl);
b3b94faa
DT
1249}
1250
b3b94faa
DT
1251/**
1252 * demote_ok - Check to see if it's ok to unlock a glock
1253 * @gl: the glock
1254 *
1255 * Returns: 1 if it's ok
1256 */
1257
97cc1025 1258static int demote_ok(const struct gfs2_glock *gl)
b3b94faa 1259{
8fb4b536 1260 const struct gfs2_glock_operations *glops = gl->gl_ops;
b3b94faa 1261
97cc1025
SW
1262 if (gl->gl_state == LM_ST_UNLOCKED)
1263 return 0;
1264 if (!list_empty(&gl->gl_holders))
1265 return 0;
1266 if (glops->go_demote_ok)
1267 return glops->go_demote_ok(gl);
1268 return 1;
b3b94faa
DT
1269}
1270
b3b94faa 1271
97cc1025 1272static int gfs2_shrink_glock_memory(int nr, gfp_t gfp_mask)
b3b94faa
DT
1273{
1274 struct gfs2_glock *gl;
97cc1025
SW
1275 int may_demote;
1276 int nr_skipped = 0;
1277 int got_ref = 0;
1278 LIST_HEAD(skipped);
b3b94faa 1279
97cc1025
SW
1280 if (nr == 0)
1281 goto out;
b3b94faa 1282
97cc1025
SW
1283 if (!(gfp_mask & __GFP_FS))
1284 return -1;
b3b94faa 1285
97cc1025
SW
1286 spin_lock(&lru_lock);
1287 while(nr && !list_empty(&lru_list)) {
1288 gl = list_entry(lru_list.next, struct gfs2_glock, gl_lru);
1289 list_del_init(&gl->gl_lru);
1290 atomic_dec(&lru_count);
1291
1292 /* Test for being demotable */
1293 if (!test_and_set_bit(GLF_LOCK, &gl->gl_flags)) {
1294 gfs2_glock_hold(gl);
1295 got_ref = 1;
1296 spin_unlock(&lru_lock);
1297 spin_lock(&gl->gl_spin);
1298 may_demote = demote_ok(gl);
1299 spin_unlock(&gl->gl_spin);
1300 clear_bit(GLF_LOCK, &gl->gl_flags);
1301 if (may_demote) {
1302 handle_callback(gl, LM_ST_UNLOCKED, 0);
1303 nr--;
1304 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1305 gfs2_glock_put(gl);
1306 }
1307 spin_lock(&lru_lock);
1308 if (may_demote)
1309 continue;
1310 }
1311 if (list_empty(&gl->gl_lru) &&
1312 (atomic_read(&gl->gl_ref) <= (2 + got_ref))) {
1313 nr_skipped++;
1314 list_add(&gl->gl_lru, &skipped);
1315 }
1316 if (got_ref) {
1317 spin_unlock(&lru_lock);
1318 gfs2_glock_put(gl);
1319 spin_lock(&lru_lock);
1320 got_ref = 0;
1321 }
b3b94faa 1322 }
97cc1025
SW
1323 list_splice(&skipped, &lru_list);
1324 atomic_add(nr_skipped, &lru_count);
1325 spin_unlock(&lru_lock);
1326out:
1327 return (atomic_read(&lru_count) / 100) * sysctl_vfs_cache_pressure;
b3b94faa
DT
1328}
1329
97cc1025
SW
1330static struct shrinker glock_shrinker = {
1331 .shrink = gfs2_shrink_glock_memory,
1332 .seeks = DEFAULT_SEEKS,
1333};
1334
b3b94faa
DT
1335/**
1336 * examine_bucket - Call a function for glock in a hash bucket
1337 * @examiner: the function
1338 * @sdp: the filesystem
1339 * @bucket: the bucket
1340 *
1341 * Returns: 1 if the bucket has entries
1342 */
1343
1344static int examine_bucket(glock_examiner examiner, struct gfs2_sbd *sdp,
37b2fa6a 1345 unsigned int hash)
b3b94faa 1346{
24264434
SW
1347 struct gfs2_glock *gl, *prev = NULL;
1348 int has_entries = 0;
b6397893 1349 struct hlist_head *head = &gl_hash_table[hash].hb_list;
b3b94faa 1350
24264434 1351 read_lock(gl_lock_addr(hash));
b6397893
SW
1352 /* Can't use hlist_for_each_entry - don't want prefetch here */
1353 if (hlist_empty(head))
24264434 1354 goto out;
b6397893
SW
1355 gl = list_entry(head->first, struct gfs2_glock, gl_list);
1356 while(1) {
8fbbfd21 1357 if (!sdp || gl->gl_sbd == sdp) {
b3b94faa 1358 gfs2_glock_hold(gl);
24264434
SW
1359 read_unlock(gl_lock_addr(hash));
1360 if (prev)
1361 gfs2_glock_put(prev);
1362 prev = gl;
1363 examiner(gl);
a8336344 1364 has_entries = 1;
24264434 1365 read_lock(gl_lock_addr(hash));
b3b94faa 1366 }
b6397893
SW
1367 if (gl->gl_list.next == NULL)
1368 break;
24264434 1369 gl = list_entry(gl->gl_list.next, struct gfs2_glock, gl_list);
b3b94faa 1370 }
24264434
SW
1371out:
1372 read_unlock(gl_lock_addr(hash));
1373 if (prev)
1374 gfs2_glock_put(prev);
8fbbfd21 1375 cond_resched();
24264434 1376 return has_entries;
b3b94faa
DT
1377}
1378
f057f6cd
SW
1379
1380/**
1381 * thaw_glock - thaw out a glock which has an unprocessed reply waiting
1382 * @gl: The glock to thaw
1383 *
1384 * N.B. When we freeze a glock, we leave a ref to the glock outstanding,
1385 * so this has to result in the ref count being dropped by one.
1386 */
1387
1388static void thaw_glock(struct gfs2_glock *gl)
1389{
1390 if (!test_and_clear_bit(GLF_FROZEN, &gl->gl_flags))
1391 return;
f057f6cd
SW
1392 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
1393 gfs2_glock_hold(gl);
1394 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1395 gfs2_glock_put(gl);
f057f6cd
SW
1396}
1397
b3b94faa
DT
1398/**
1399 * clear_glock - look at a glock and see if we can free it from glock cache
1400 * @gl: the glock to look at
1401 *
1402 */
1403
1404static void clear_glock(struct gfs2_glock *gl)
1405{
97cc1025
SW
1406 spin_lock(&lru_lock);
1407 if (!list_empty(&gl->gl_lru)) {
1408 list_del_init(&gl->gl_lru);
1409 atomic_dec(&lru_count);
b3b94faa 1410 }
97cc1025 1411 spin_unlock(&lru_lock);
b3b94faa 1412
6802e340
SW
1413 spin_lock(&gl->gl_spin);
1414 if (find_first_holder(gl) == NULL && gl->gl_state != LM_ST_UNLOCKED)
97cc1025 1415 handle_callback(gl, LM_ST_UNLOCKED, 0);
6802e340
SW
1416 spin_unlock(&gl->gl_spin);
1417 gfs2_glock_hold(gl);
1418 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1419 gfs2_glock_put(gl);
b3b94faa
DT
1420}
1421
f057f6cd
SW
1422/**
1423 * gfs2_glock_thaw - Thaw any frozen glocks
1424 * @sdp: The super block
1425 *
1426 */
1427
1428void gfs2_glock_thaw(struct gfs2_sbd *sdp)
1429{
1430 unsigned x;
1431
1432 for (x = 0; x < GFS2_GL_HASH_SIZE; x++)
1433 examine_bucket(thaw_glock, sdp, x);
1434}
1435
b3b94faa
DT
1436/**
1437 * gfs2_gl_hash_clear - Empty out the glock hash table
1438 * @sdp: the filesystem
1439 * @wait: wait until it's all gone
1440 *
1bdad606 1441 * Called when unmounting the filesystem.
b3b94faa
DT
1442 */
1443
fefc03bf 1444void gfs2_gl_hash_clear(struct gfs2_sbd *sdp)
b3b94faa
DT
1445{
1446 unsigned long t;
1447 unsigned int x;
1448 int cont;
1449
1450 t = jiffies;
1451
1452 for (;;) {
1453 cont = 0;
24264434 1454 for (x = 0; x < GFS2_GL_HASH_SIZE; x++) {
907b9bce 1455 if (examine_bucket(clear_glock, sdp, x))
b3b94faa 1456 cont = 1;
24264434 1457 }
b3b94faa 1458
1bdad606 1459 if (!cont)
b3b94faa
DT
1460 break;
1461
1462 if (time_after_eq(jiffies,
1463 t + gfs2_tune_get(sdp, gt_stall_secs) * HZ)) {
1464 fs_warn(sdp, "Unmount seems to be stalled. "
1465 "Dumping lock state...\n");
1466 gfs2_dump_lockstate(sdp);
1467 t = jiffies;
1468 }
1469
61be084e 1470 down_write(&gfs2_umount_flush_sem);
b3b94faa 1471 invalidate_inodes(sdp->sd_vfs);
61be084e 1472 up_write(&gfs2_umount_flush_sem);
fd88de56 1473 msleep(10);
b3b94faa
DT
1474 }
1475}
1476
813e0c46
SW
1477void gfs2_glock_finish_truncate(struct gfs2_inode *ip)
1478{
1479 struct gfs2_glock *gl = ip->i_gl;
1480 int ret;
1481
1482 ret = gfs2_truncatei_resume(ip);
1483 gfs2_assert_withdraw(gl->gl_sbd, ret == 0);
1484
1485 spin_lock(&gl->gl_spin);
1486 clear_bit(GLF_LOCK, &gl->gl_flags);
1487 run_queue(gl, 1);
1488 spin_unlock(&gl->gl_spin);
1489}
1490
6802e340 1491static const char *state2str(unsigned state)
04b933f2 1492{
6802e340
SW
1493 switch(state) {
1494 case LM_ST_UNLOCKED:
1495 return "UN";
1496 case LM_ST_SHARED:
1497 return "SH";
1498 case LM_ST_DEFERRED:
1499 return "DF";
1500 case LM_ST_EXCLUSIVE:
1501 return "EX";
1502 }
1503 return "??";
1504}
1505
1506static const char *hflags2str(char *buf, unsigned flags, unsigned long iflags)
1507{
1508 char *p = buf;
1509 if (flags & LM_FLAG_TRY)
1510 *p++ = 't';
1511 if (flags & LM_FLAG_TRY_1CB)
1512 *p++ = 'T';
1513 if (flags & LM_FLAG_NOEXP)
1514 *p++ = 'e';
1515 if (flags & LM_FLAG_ANY)
f057f6cd 1516 *p++ = 'A';
6802e340
SW
1517 if (flags & LM_FLAG_PRIORITY)
1518 *p++ = 'p';
1519 if (flags & GL_ASYNC)
1520 *p++ = 'a';
1521 if (flags & GL_EXACT)
1522 *p++ = 'E';
6802e340
SW
1523 if (flags & GL_NOCACHE)
1524 *p++ = 'c';
1525 if (test_bit(HIF_HOLDER, &iflags))
1526 *p++ = 'H';
1527 if (test_bit(HIF_WAIT, &iflags))
1528 *p++ = 'W';
1529 if (test_bit(HIF_FIRST, &iflags))
1530 *p++ = 'F';
1531 *p = 0;
1532 return buf;
04b933f2
RP
1533}
1534
b3b94faa
DT
1535/**
1536 * dump_holder - print information about a glock holder
6802e340 1537 * @seq: the seq_file struct
b3b94faa
DT
1538 * @gh: the glock holder
1539 *
1540 * Returns: 0 on success, -ENOBUFS when we run out of space
1541 */
1542
6802e340 1543static int dump_holder(struct seq_file *seq, const struct gfs2_holder *gh)
b3b94faa 1544{
6802e340
SW
1545 struct task_struct *gh_owner = NULL;
1546 char buffer[KSYM_SYMBOL_LEN];
1547 char flags_buf[32];
b3b94faa 1548
6802e340
SW
1549 sprint_symbol(buffer, gh->gh_ip);
1550 if (gh->gh_owner_pid)
b1e058da 1551 gh_owner = pid_task(gh->gh_owner_pid, PIDTYPE_PID);
6802e340
SW
1552 gfs2_print_dbg(seq, " H: s:%s f:%s e:%d p:%ld [%s] %s\n",
1553 state2str(gh->gh_state),
1554 hflags2str(flags_buf, gh->gh_flags, gh->gh_iflags),
1555 gh->gh_error,
1556 gh->gh_owner_pid ? (long)pid_nr(gh->gh_owner_pid) : -1,
1557 gh_owner ? gh_owner->comm : "(ended)", buffer);
7c52b166 1558 return 0;
b3b94faa
DT
1559}
1560
6802e340
SW
1561static const char *gflags2str(char *buf, const unsigned long *gflags)
1562{
1563 char *p = buf;
1564 if (test_bit(GLF_LOCK, gflags))
1565 *p++ = 'l';
6802e340
SW
1566 if (test_bit(GLF_DEMOTE, gflags))
1567 *p++ = 'D';
1568 if (test_bit(GLF_PENDING_DEMOTE, gflags))
1569 *p++ = 'd';
1570 if (test_bit(GLF_DEMOTE_IN_PROGRESS, gflags))
1571 *p++ = 'p';
1572 if (test_bit(GLF_DIRTY, gflags))
1573 *p++ = 'y';
1574 if (test_bit(GLF_LFLUSH, gflags))
1575 *p++ = 'f';
1576 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, gflags))
1577 *p++ = 'i';
1578 if (test_bit(GLF_REPLY_PENDING, gflags))
1579 *p++ = 'r';
f057f6cd 1580 if (test_bit(GLF_INITIAL, gflags))
d8348de0 1581 *p++ = 'I';
f057f6cd
SW
1582 if (test_bit(GLF_FROZEN, gflags))
1583 *p++ = 'F';
6802e340
SW
1584 *p = 0;
1585 return buf;
b3b94faa
DT
1586}
1587
1588/**
6802e340
SW
1589 * __dump_glock - print information about a glock
1590 * @seq: The seq_file struct
b3b94faa 1591 * @gl: the glock
6802e340
SW
1592 *
1593 * The file format is as follows:
1594 * One line per object, capital letters are used to indicate objects
1595 * G = glock, I = Inode, R = rgrp, H = holder. Glocks are not indented,
1596 * other objects are indented by a single space and follow the glock to
1597 * which they are related. Fields are indicated by lower case letters
1598 * followed by a colon and the field value, except for strings which are in
1599 * [] so that its possible to see if they are composed of spaces for
1600 * example. The field's are n = number (id of the object), f = flags,
1601 * t = type, s = state, r = refcount, e = error, p = pid.
b3b94faa
DT
1602 *
1603 * Returns: 0 on success, -ENOBUFS when we run out of space
1604 */
1605
6802e340 1606static int __dump_glock(struct seq_file *seq, const struct gfs2_glock *gl)
b3b94faa 1607{
6802e340
SW
1608 const struct gfs2_glock_operations *glops = gl->gl_ops;
1609 unsigned long long dtime;
1610 const struct gfs2_holder *gh;
1611 char gflags_buf[32];
1612 int error = 0;
b3b94faa 1613
6802e340
SW
1614 dtime = jiffies - gl->gl_demote_time;
1615 dtime *= 1000000/HZ; /* demote time in uSec */
1616 if (!test_bit(GLF_DEMOTE, &gl->gl_flags))
1617 dtime = 0;
f057f6cd 1618 gfs2_print_dbg(seq, "G: s:%s n:%u/%llu f:%s t:%s d:%s/%llu a:%d r:%d\n",
6802e340
SW
1619 state2str(gl->gl_state),
1620 gl->gl_name.ln_type,
1621 (unsigned long long)gl->gl_name.ln_number,
1622 gflags2str(gflags_buf, &gl->gl_flags),
1623 state2str(gl->gl_target),
1624 state2str(gl->gl_demote_state), dtime,
6802e340
SW
1625 atomic_read(&gl->gl_ail_count),
1626 atomic_read(&gl->gl_ref));
b3b94faa 1627
b3b94faa 1628 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
6802e340 1629 error = dump_holder(seq, gh);
b3b94faa
DT
1630 if (error)
1631 goto out;
1632 }
6802e340
SW
1633 if (gl->gl_state != LM_ST_UNLOCKED && glops->go_dump)
1634 error = glops->go_dump(seq, gl);
a91ea69f 1635out:
b3b94faa
DT
1636 return error;
1637}
1638
6802e340
SW
1639static int dump_glock(struct seq_file *seq, struct gfs2_glock *gl)
1640{
1641 int ret;
1642 spin_lock(&gl->gl_spin);
1643 ret = __dump_glock(seq, gl);
1644 spin_unlock(&gl->gl_spin);
1645 return ret;
1646}
1647
b3b94faa
DT
1648/**
1649 * gfs2_dump_lockstate - print out the current lockstate
1650 * @sdp: the filesystem
1651 * @ub: the buffer to copy the information into
1652 *
1653 * If @ub is NULL, dump the lockstate to the console.
1654 *
1655 */
1656
08bc2dbc 1657static int gfs2_dump_lockstate(struct gfs2_sbd *sdp)
b3b94faa 1658{
b3b94faa 1659 struct gfs2_glock *gl;
b6397893 1660 struct hlist_node *h;
b3b94faa
DT
1661 unsigned int x;
1662 int error = 0;
1663
1664 for (x = 0; x < GFS2_GL_HASH_SIZE; x++) {
b3b94faa 1665
087efdd3 1666 read_lock(gl_lock_addr(x));
b3b94faa 1667
b6397893 1668 hlist_for_each_entry(gl, h, &gl_hash_table[x].hb_list, gl_list) {
85d1da67
SW
1669 if (gl->gl_sbd != sdp)
1670 continue;
b3b94faa 1671
7c52b166 1672 error = dump_glock(NULL, gl);
b3b94faa
DT
1673 if (error)
1674 break;
1675 }
1676
087efdd3 1677 read_unlock(gl_lock_addr(x));
b3b94faa
DT
1678
1679 if (error)
1680 break;
1681 }
1682
1683
1684 return error;
1685}
1686
8fbbfd21 1687
85d1da67
SW
1688int __init gfs2_glock_init(void)
1689{
1690 unsigned i;
1691 for(i = 0; i < GFS2_GL_HASH_SIZE; i++) {
b6397893 1692 INIT_HLIST_HEAD(&gl_hash_table[i].hb_list);
85d1da67 1693 }
087efdd3
SW
1694#ifdef GL_HASH_LOCK_SZ
1695 for(i = 0; i < GL_HASH_LOCK_SZ; i++) {
1696 rwlock_init(&gl_hash_locks[i]);
1697 }
1698#endif
8fbbfd21 1699
c4f68a13 1700 glock_workqueue = create_workqueue("glock_workqueue");
97cc1025 1701 if (IS_ERR(glock_workqueue))
c4f68a13 1702 return PTR_ERR(glock_workqueue);
97cc1025
SW
1703
1704 register_shrinker(&glock_shrinker);
c4f68a13 1705
85d1da67
SW
1706 return 0;
1707}
1708
8fbbfd21
SW
1709void gfs2_glock_exit(void)
1710{
97cc1025 1711 unregister_shrinker(&glock_shrinker);
c4f68a13 1712 destroy_workqueue(glock_workqueue);
8fbbfd21
SW
1713}
1714
6802e340 1715static int gfs2_glock_iter_next(struct gfs2_glock_iter *gi)
7c52b166 1716{
7b08fc62
SW
1717 struct gfs2_glock *gl;
1718
a947e033 1719restart:
7a0079d9 1720 read_lock(gl_lock_addr(gi->hash));
7b08fc62
SW
1721 gl = gi->gl;
1722 if (gl) {
a947e033
AD
1723 gi->gl = hlist_entry(gl->gl_list.next,
1724 struct gfs2_glock, gl_list);
c1e817d0
SW
1725 } else {
1726 gi->gl = hlist_entry(gl_hash_table[gi->hash].hb_list.first,
1727 struct gfs2_glock, gl_list);
7c52b166 1728 }
c1e817d0
SW
1729 if (gi->gl)
1730 gfs2_glock_hold(gi->gl);
7a0079d9 1731 read_unlock(gl_lock_addr(gi->hash));
7b08fc62
SW
1732 if (gl)
1733 gfs2_glock_put(gl);
6802e340 1734 while (gi->gl == NULL) {
c1e817d0 1735 gi->hash++;
7b08fc62
SW
1736 if (gi->hash >= GFS2_GL_HASH_SIZE)
1737 return 1;
1738 read_lock(gl_lock_addr(gi->hash));
1739 gi->gl = hlist_entry(gl_hash_table[gi->hash].hb_list.first,
1740 struct gfs2_glock, gl_list);
1741 if (gi->gl)
1742 gfs2_glock_hold(gi->gl);
1743 read_unlock(gl_lock_addr(gi->hash));
1744 }
a947e033
AD
1745
1746 if (gi->sdp != gi->gl->gl_sbd)
1747 goto restart;
1748
7c52b166
RP
1749 return 0;
1750}
1751
6802e340 1752static void gfs2_glock_iter_free(struct gfs2_glock_iter *gi)
7c52b166 1753{
7b08fc62
SW
1754 if (gi->gl)
1755 gfs2_glock_put(gi->gl);
a947e033 1756 gi->gl = NULL;
7c52b166
RP
1757}
1758
6802e340 1759static void *gfs2_glock_seq_start(struct seq_file *seq, loff_t *pos)
7c52b166 1760{
6802e340 1761 struct gfs2_glock_iter *gi = seq->private;
7c52b166
RP
1762 loff_t n = *pos;
1763
6802e340 1764 gi->hash = 0;
7c52b166 1765
6802e340 1766 do {
7c52b166
RP
1767 if (gfs2_glock_iter_next(gi)) {
1768 gfs2_glock_iter_free(gi);
1769 return NULL;
1770 }
6802e340 1771 } while (n--);
7c52b166 1772
6802e340 1773 return gi->gl;
7c52b166
RP
1774}
1775
6802e340 1776static void *gfs2_glock_seq_next(struct seq_file *seq, void *iter_ptr,
7c52b166
RP
1777 loff_t *pos)
1778{
6802e340 1779 struct gfs2_glock_iter *gi = seq->private;
7c52b166
RP
1780
1781 (*pos)++;
1782
1783 if (gfs2_glock_iter_next(gi)) {
1784 gfs2_glock_iter_free(gi);
1785 return NULL;
1786 }
1787
6802e340 1788 return gi->gl;
7c52b166
RP
1789}
1790
6802e340 1791static void gfs2_glock_seq_stop(struct seq_file *seq, void *iter_ptr)
7c52b166 1792{
6802e340
SW
1793 struct gfs2_glock_iter *gi = seq->private;
1794 gfs2_glock_iter_free(gi);
7c52b166
RP
1795}
1796
6802e340 1797static int gfs2_glock_seq_show(struct seq_file *seq, void *iter_ptr)
7c52b166 1798{
6802e340 1799 return dump_glock(seq, iter_ptr);
7c52b166
RP
1800}
1801
4ef29002 1802static const struct seq_operations gfs2_glock_seq_ops = {
7c52b166
RP
1803 .start = gfs2_glock_seq_start,
1804 .next = gfs2_glock_seq_next,
1805 .stop = gfs2_glock_seq_stop,
1806 .show = gfs2_glock_seq_show,
1807};
1808
1809static int gfs2_debugfs_open(struct inode *inode, struct file *file)
1810{
6802e340
SW
1811 int ret = seq_open_private(file, &gfs2_glock_seq_ops,
1812 sizeof(struct gfs2_glock_iter));
1813 if (ret == 0) {
1814 struct seq_file *seq = file->private_data;
1815 struct gfs2_glock_iter *gi = seq->private;
1816 gi->sdp = inode->i_private;
1817 }
1818 return ret;
7c52b166
RP
1819}
1820
1821static const struct file_operations gfs2_debug_fops = {
1822 .owner = THIS_MODULE,
1823 .open = gfs2_debugfs_open,
1824 .read = seq_read,
1825 .llseek = seq_lseek,
6802e340 1826 .release = seq_release_private,
7c52b166
RP
1827};
1828
1829int gfs2_create_debugfs_file(struct gfs2_sbd *sdp)
1830{
5f882096
RP
1831 sdp->debugfs_dir = debugfs_create_dir(sdp->sd_table_name, gfs2_root);
1832 if (!sdp->debugfs_dir)
1833 return -ENOMEM;
1834 sdp->debugfs_dentry_glocks = debugfs_create_file("glocks",
1835 S_IFREG | S_IRUGO,
1836 sdp->debugfs_dir, sdp,
1837 &gfs2_debug_fops);
1838 if (!sdp->debugfs_dentry_glocks)
7c52b166
RP
1839 return -ENOMEM;
1840
1841 return 0;
1842}
1843
1844void gfs2_delete_debugfs_file(struct gfs2_sbd *sdp)
1845{
5f882096
RP
1846 if (sdp && sdp->debugfs_dir) {
1847 if (sdp->debugfs_dentry_glocks) {
1848 debugfs_remove(sdp->debugfs_dentry_glocks);
1849 sdp->debugfs_dentry_glocks = NULL;
1850 }
1851 debugfs_remove(sdp->debugfs_dir);
1852 sdp->debugfs_dir = NULL;
1853 }
7c52b166
RP
1854}
1855
1856int gfs2_register_debugfs(void)
1857{
1858 gfs2_root = debugfs_create_dir("gfs2", NULL);
1859 return gfs2_root ? 0 : -ENOMEM;
1860}
1861
1862void gfs2_unregister_debugfs(void)
1863{
1864 debugfs_remove(gfs2_root);
5f882096 1865 gfs2_root = NULL;
7c52b166 1866}