GFS2: only use lvb on glocks that need it
[deliverable/linux.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>
b3b94faa 22#include <asm/uaccess.h>
7c52b166
RP
23#include <linux/seq_file.h>
24#include <linux/debugfs.h>
8fbbfd21
SW
25#include <linux/kthread.h>
26#include <linux/freezer.h>
c4f68a13
BM
27#include <linux/workqueue.h>
28#include <linux/jiffies.h>
bc015cb8
SW
29#include <linux/rcupdate.h>
30#include <linux/rculist_bl.h>
31#include <linux/bit_spinlock.h>
a245769f 32#include <linux/percpu.h>
b3b94faa
DT
33
34#include "gfs2.h"
5c676f6d 35#include "incore.h"
b3b94faa
DT
36#include "glock.h"
37#include "glops.h"
38#include "inode.h"
b3b94faa
DT
39#include "lops.h"
40#include "meta_io.h"
41#include "quota.h"
42#include "super.h"
5c676f6d 43#include "util.h"
813e0c46 44#include "bmap.h"
63997775
SW
45#define CREATE_TRACE_POINTS
46#include "trace_gfs2.h"
b3b94faa 47
6802e340 48struct gfs2_glock_iter {
ba1ddcb6
SW
49 int hash; /* hash bucket index */
50 unsigned nhash; /* Index within current bucket */
51 struct gfs2_sbd *sdp; /* incore superblock */
52 struct gfs2_glock *gl; /* current glock struct */
53 loff_t last_pos; /* last position */
7c52b166
RP
54};
55
b3b94faa
DT
56typedef void (*glock_examiner) (struct gfs2_glock * gl);
57
6802e340 58static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target);
c4f68a13 59
7c52b166 60static struct dentry *gfs2_root;
c4f68a13 61static struct workqueue_struct *glock_workqueue;
b94a170e 62struct workqueue_struct *gfs2_delete_workqueue;
97cc1025
SW
63static LIST_HEAD(lru_list);
64static atomic_t lru_count = ATOMIC_INIT(0);
eb8374e7 65static DEFINE_SPINLOCK(lru_lock);
08bc2dbc 66
b6397893 67#define GFS2_GL_HASH_SHIFT 15
087efdd3
SW
68#define GFS2_GL_HASH_SIZE (1 << GFS2_GL_HASH_SHIFT)
69#define GFS2_GL_HASH_MASK (GFS2_GL_HASH_SIZE - 1)
70
bc015cb8 71static struct hlist_bl_head gl_hash_table[GFS2_GL_HASH_SIZE];
04b933f2 72static struct dentry *gfs2_root;
087efdd3 73
b3b94faa
DT
74/**
75 * gl_hash() - Turn glock number into hash bucket number
76 * @lock: The glock number
77 *
78 * Returns: The number of the corresponding hash bucket
79 */
80
b8547856
SW
81static unsigned int gl_hash(const struct gfs2_sbd *sdp,
82 const struct lm_lockname *name)
b3b94faa
DT
83{
84 unsigned int h;
85
cd915493 86 h = jhash(&name->ln_number, sizeof(u64), 0);
b3b94faa 87 h = jhash(&name->ln_type, sizeof(unsigned int), h);
b8547856 88 h = jhash(&sdp, sizeof(struct gfs2_sbd *), h);
b3b94faa
DT
89 h &= GFS2_GL_HASH_MASK;
90
91 return h;
92}
93
bc015cb8
SW
94static inline void spin_lock_bucket(unsigned int hash)
95{
1879fd6a 96 hlist_bl_lock(&gl_hash_table[hash]);
bc015cb8 97}
b3b94faa 98
bc015cb8
SW
99static inline void spin_unlock_bucket(unsigned int hash)
100{
1879fd6a 101 hlist_bl_unlock(&gl_hash_table[hash]);
bc015cb8 102}
b3b94faa 103
fc0e38da 104static void gfs2_glock_dealloc(struct rcu_head *rcu)
b3b94faa 105{
bc015cb8 106 struct gfs2_glock *gl = container_of(rcu, struct gfs2_glock, gl_rcu);
b3b94faa 107
dba2d70c 108 if (gl->gl_ops->go_flags & GLOF_ASPACE) {
bc015cb8 109 kmem_cache_free(gfs2_glock_aspace_cachep, gl);
dba2d70c
DT
110 } else {
111 kfree(gl->gl_lvb);
bc015cb8 112 kmem_cache_free(gfs2_glock_cachep, gl);
dba2d70c 113 }
fc0e38da
SW
114}
115
116void gfs2_glock_free(struct gfs2_glock *gl)
b3b94faa
DT
117{
118 struct gfs2_sbd *sdp = gl->gl_sbd;
b3b94faa 119
fc0e38da 120 call_rcu(&gl->gl_rcu, gfs2_glock_dealloc);
bc015cb8
SW
121 if (atomic_dec_and_test(&sdp->sd_glock_disposal))
122 wake_up(&sdp->sd_glock_wait);
b3b94faa
DT
123}
124
125/**
126 * gfs2_glock_hold() - increment reference count on glock
127 * @gl: The glock to hold
128 *
129 */
130
b94a170e 131void gfs2_glock_hold(struct gfs2_glock *gl)
b3b94faa 132{
d8348de0 133 GLOCK_BUG_ON(gl, atomic_read(&gl->gl_ref) == 0);
16feb9fe 134 atomic_inc(&gl->gl_ref);
b3b94faa
DT
135}
136
8ff22a6f
BM
137/**
138 * demote_ok - Check to see if it's ok to unlock a glock
139 * @gl: the glock
140 *
141 * Returns: 1 if it's ok
142 */
143
144static int demote_ok(const struct gfs2_glock *gl)
145{
146 const struct gfs2_glock_operations *glops = gl->gl_ops;
147
148 if (gl->gl_state == LM_ST_UNLOCKED)
149 return 0;
f42ab085 150 if (!list_empty(&gl->gl_holders))
8ff22a6f
BM
151 return 0;
152 if (glops->go_demote_ok)
153 return glops->go_demote_ok(gl);
154 return 1;
155}
156
bc015cb8 157
29687a2a
SW
158void gfs2_glock_add_to_lru(struct gfs2_glock *gl)
159{
160 spin_lock(&lru_lock);
161
162 if (!list_empty(&gl->gl_lru))
163 list_del_init(&gl->gl_lru);
164 else
165 atomic_inc(&lru_count);
166
167 list_add_tail(&gl->gl_lru, &lru_list);
627c10b7 168 set_bit(GLF_LRU, &gl->gl_flags);
29687a2a
SW
169 spin_unlock(&lru_lock);
170}
171
4043b886 172static void __gfs2_glock_remove_from_lru(struct gfs2_glock *gl)
f42ab085 173{
f42ab085
SW
174 if (!list_empty(&gl->gl_lru)) {
175 list_del_init(&gl->gl_lru);
176 atomic_dec(&lru_count);
177 clear_bit(GLF_LRU, &gl->gl_flags);
178 }
4043b886
SW
179}
180
181static void gfs2_glock_remove_from_lru(struct gfs2_glock *gl)
182{
183 spin_lock(&lru_lock);
184 __gfs2_glock_remove_from_lru(gl);
f42ab085
SW
185 spin_unlock(&lru_lock);
186}
187
8ff22a6f
BM
188/**
189 * gfs2_glock_put_nolock() - Decrement reference count on glock
190 * @gl: The glock to put
191 *
192 * This function should only be used if the caller has its own reference
193 * to the glock, in addition to the one it is dropping.
194 */
195
b94a170e 196void gfs2_glock_put_nolock(struct gfs2_glock *gl)
8ff22a6f
BM
197{
198 if (atomic_dec_and_test(&gl->gl_ref))
199 GLOCK_BUG_ON(gl, 1);
8ff22a6f
BM
200}
201
b3b94faa
DT
202/**
203 * gfs2_glock_put() - Decrement reference count on glock
204 * @gl: The glock to put
205 *
206 */
207
bc015cb8 208void gfs2_glock_put(struct gfs2_glock *gl)
b3b94faa 209{
bc015cb8
SW
210 struct gfs2_sbd *sdp = gl->gl_sbd;
211 struct address_space *mapping = gfs2_glock2aspace(gl);
b3b94faa 212
4043b886
SW
213 if (atomic_dec_and_lock(&gl->gl_ref, &lru_lock)) {
214 __gfs2_glock_remove_from_lru(gl);
215 spin_unlock(&lru_lock);
bc015cb8
SW
216 spin_lock_bucket(gl->gl_hash);
217 hlist_bl_del_rcu(&gl->gl_list);
218 spin_unlock_bucket(gl->gl_hash);
6802e340 219 GLOCK_BUG_ON(gl, !list_empty(&gl->gl_holders));
bc015cb8
SW
220 GLOCK_BUG_ON(gl, mapping && mapping->nrpages);
221 trace_gfs2_glock_put(gl);
222 sdp->sd_lockstruct.ls_ops->lm_put_lock(gl);
b3b94faa 223 }
b3b94faa
DT
224}
225
b3b94faa
DT
226/**
227 * search_bucket() - Find struct gfs2_glock by lock number
228 * @bucket: the bucket to search
229 * @name: The lock name
230 *
231 * Returns: NULL, or the struct gfs2_glock with the requested number
232 */
233
37b2fa6a 234static struct gfs2_glock *search_bucket(unsigned int hash,
899be4d3 235 const struct gfs2_sbd *sdp,
d6a53727 236 const struct lm_lockname *name)
b3b94faa
DT
237{
238 struct gfs2_glock *gl;
bc015cb8 239 struct hlist_bl_node *h;
b3b94faa 240
bc015cb8 241 hlist_bl_for_each_entry_rcu(gl, h, &gl_hash_table[hash], gl_list) {
b3b94faa
DT
242 if (!lm_name_equal(&gl->gl_name, name))
243 continue;
899be4d3
SW
244 if (gl->gl_sbd != sdp)
245 continue;
bc015cb8
SW
246 if (atomic_inc_not_zero(&gl->gl_ref))
247 return gl;
b3b94faa
DT
248 }
249
250 return NULL;
251}
252
6802e340
SW
253/**
254 * may_grant - check if its ok to grant a new lock
255 * @gl: The glock
256 * @gh: The lock request which we wish to grant
257 *
258 * Returns: true if its ok to grant the lock
259 */
260
261static inline int may_grant(const struct gfs2_glock *gl, const struct gfs2_holder *gh)
262{
263 const struct gfs2_holder *gh_head = list_entry(gl->gl_holders.next, const struct gfs2_holder, gh_list);
264 if ((gh->gh_state == LM_ST_EXCLUSIVE ||
265 gh_head->gh_state == LM_ST_EXCLUSIVE) && gh != gh_head)
266 return 0;
267 if (gl->gl_state == gh->gh_state)
268 return 1;
269 if (gh->gh_flags & GL_EXACT)
270 return 0;
209806ab
SW
271 if (gl->gl_state == LM_ST_EXCLUSIVE) {
272 if (gh->gh_state == LM_ST_SHARED && gh_head->gh_state == LM_ST_SHARED)
273 return 1;
274 if (gh->gh_state == LM_ST_DEFERRED && gh_head->gh_state == LM_ST_DEFERRED)
275 return 1;
276 }
6802e340
SW
277 if (gl->gl_state != LM_ST_UNLOCKED && (gh->gh_flags & LM_FLAG_ANY))
278 return 1;
279 return 0;
280}
281
282static void gfs2_holder_wake(struct gfs2_holder *gh)
283{
284 clear_bit(HIF_WAIT, &gh->gh_iflags);
285 smp_mb__after_clear_bit();
286 wake_up_bit(&gh->gh_iflags, HIF_WAIT);
287}
288
d5341a92
SW
289/**
290 * do_error - Something unexpected has happened during a lock request
291 *
292 */
293
294static inline void do_error(struct gfs2_glock *gl, const int ret)
295{
296 struct gfs2_holder *gh, *tmp;
297
298 list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) {
299 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
300 continue;
301 if (ret & LM_OUT_ERROR)
302 gh->gh_error = -EIO;
303 else if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))
304 gh->gh_error = GLR_TRYFAILED;
305 else
306 continue;
307 list_del_init(&gh->gh_list);
308 trace_gfs2_glock_queue(gh, 0);
309 gfs2_holder_wake(gh);
310 }
311}
312
6802e340
SW
313/**
314 * do_promote - promote as many requests as possible on the current queue
315 * @gl: The glock
316 *
813e0c46
SW
317 * Returns: 1 if there is a blocked holder at the head of the list, or 2
318 * if a type specific operation is underway.
6802e340
SW
319 */
320
321static int do_promote(struct gfs2_glock *gl)
55ba474d
HH
322__releases(&gl->gl_spin)
323__acquires(&gl->gl_spin)
6802e340
SW
324{
325 const struct gfs2_glock_operations *glops = gl->gl_ops;
326 struct gfs2_holder *gh, *tmp;
327 int ret;
328
329restart:
330 list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) {
331 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
332 continue;
333 if (may_grant(gl, gh)) {
334 if (gh->gh_list.prev == &gl->gl_holders &&
335 glops->go_lock) {
336 spin_unlock(&gl->gl_spin);
337 /* FIXME: eliminate this eventually */
338 ret = glops->go_lock(gh);
339 spin_lock(&gl->gl_spin);
340 if (ret) {
813e0c46
SW
341 if (ret == 1)
342 return 2;
6802e340
SW
343 gh->gh_error = ret;
344 list_del_init(&gh->gh_list);
63997775 345 trace_gfs2_glock_queue(gh, 0);
6802e340
SW
346 gfs2_holder_wake(gh);
347 goto restart;
348 }
349 set_bit(HIF_HOLDER, &gh->gh_iflags);
63997775 350 trace_gfs2_promote(gh, 1);
6802e340
SW
351 gfs2_holder_wake(gh);
352 goto restart;
353 }
354 set_bit(HIF_HOLDER, &gh->gh_iflags);
63997775 355 trace_gfs2_promote(gh, 0);
6802e340
SW
356 gfs2_holder_wake(gh);
357 continue;
358 }
359 if (gh->gh_list.prev == &gl->gl_holders)
360 return 1;
d5341a92 361 do_error(gl, 0);
6802e340
SW
362 break;
363 }
364 return 0;
365}
366
6802e340
SW
367/**
368 * find_first_waiter - find the first gh that's waiting for the glock
369 * @gl: the glock
370 */
371
372static inline struct gfs2_holder *find_first_waiter(const struct gfs2_glock *gl)
373{
374 struct gfs2_holder *gh;
375
376 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
377 if (!test_bit(HIF_HOLDER, &gh->gh_iflags))
378 return gh;
379 }
380 return NULL;
381}
382
383/**
384 * state_change - record that the glock is now in a different state
385 * @gl: the glock
386 * @new_state the new state
387 *
388 */
389
390static void state_change(struct gfs2_glock *gl, unsigned int new_state)
391{
392 int held1, held2;
393
394 held1 = (gl->gl_state != LM_ST_UNLOCKED);
395 held2 = (new_state != LM_ST_UNLOCKED);
396
397 if (held1 != held2) {
398 if (held2)
399 gfs2_glock_hold(gl);
400 else
8ff22a6f 401 gfs2_glock_put_nolock(gl);
6802e340 402 }
7b5e3d5f
SW
403 if (held1 && held2 && list_empty(&gl->gl_holders))
404 clear_bit(GLF_QUEUED, &gl->gl_flags);
6802e340 405
7cf8dcd3
BP
406 if (new_state != gl->gl_target)
407 /* shorten our minimum hold time */
408 gl->gl_hold_time = max(gl->gl_hold_time - GL_GLOCK_HOLD_DECR,
409 GL_GLOCK_MIN_HOLD);
6802e340
SW
410 gl->gl_state = new_state;
411 gl->gl_tchange = jiffies;
412}
413
414static void gfs2_demote_wake(struct gfs2_glock *gl)
415{
416 gl->gl_demote_state = LM_ST_EXCLUSIVE;
417 clear_bit(GLF_DEMOTE, &gl->gl_flags);
418 smp_mb__after_clear_bit();
419 wake_up_bit(&gl->gl_flags, GLF_DEMOTE);
420}
421
422/**
423 * finish_xmote - The DLM has replied to one of our lock requests
424 * @gl: The glock
425 * @ret: The status from the DLM
426 *
427 */
428
429static void finish_xmote(struct gfs2_glock *gl, unsigned int ret)
430{
431 const struct gfs2_glock_operations *glops = gl->gl_ops;
432 struct gfs2_holder *gh;
433 unsigned state = ret & LM_OUT_ST_MASK;
813e0c46 434 int rv;
6802e340
SW
435
436 spin_lock(&gl->gl_spin);
63997775 437 trace_gfs2_glock_state_change(gl, state);
6802e340
SW
438 state_change(gl, state);
439 gh = find_first_waiter(gl);
440
441 /* Demote to UN request arrived during demote to SH or DF */
442 if (test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags) &&
443 state != LM_ST_UNLOCKED && gl->gl_demote_state == LM_ST_UNLOCKED)
444 gl->gl_target = LM_ST_UNLOCKED;
445
446 /* Check for state != intended state */
447 if (unlikely(state != gl->gl_target)) {
448 if (gh && !test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags)) {
449 /* move to back of queue and try next entry */
450 if (ret & LM_OUT_CANCELED) {
451 if ((gh->gh_flags & LM_FLAG_PRIORITY) == 0)
452 list_move_tail(&gh->gh_list, &gl->gl_holders);
453 gh = find_first_waiter(gl);
454 gl->gl_target = gh->gh_state;
455 goto retry;
456 }
457 /* Some error or failed "try lock" - report it */
458 if ((ret & LM_OUT_ERROR) ||
459 (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) {
460 gl->gl_target = gl->gl_state;
461 do_error(gl, ret);
462 goto out;
463 }
464 }
465 switch(state) {
466 /* Unlocked due to conversion deadlock, try again */
467 case LM_ST_UNLOCKED:
468retry:
469 do_xmote(gl, gh, gl->gl_target);
470 break;
471 /* Conversion fails, unlock and try again */
472 case LM_ST_SHARED:
473 case LM_ST_DEFERRED:
474 do_xmote(gl, gh, LM_ST_UNLOCKED);
475 break;
476 default: /* Everything else */
477 printk(KERN_ERR "GFS2: wanted %u got %u\n", gl->gl_target, state);
478 GLOCK_BUG_ON(gl, 1);
479 }
480 spin_unlock(&gl->gl_spin);
6802e340
SW
481 return;
482 }
483
484 /* Fast path - we got what we asked for */
485 if (test_and_clear_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags))
486 gfs2_demote_wake(gl);
487 if (state != LM_ST_UNLOCKED) {
488 if (glops->go_xmote_bh) {
6802e340
SW
489 spin_unlock(&gl->gl_spin);
490 rv = glops->go_xmote_bh(gl, gh);
6802e340
SW
491 spin_lock(&gl->gl_spin);
492 if (rv) {
493 do_error(gl, rv);
494 goto out;
495 }
496 }
813e0c46
SW
497 rv = do_promote(gl);
498 if (rv == 2)
499 goto out_locked;
6802e340
SW
500 }
501out:
502 clear_bit(GLF_LOCK, &gl->gl_flags);
813e0c46 503out_locked:
6802e340 504 spin_unlock(&gl->gl_spin);
6802e340
SW
505}
506
6802e340
SW
507/**
508 * do_xmote - Calls the DLM to change the state of a lock
509 * @gl: The lock state
510 * @gh: The holder (only for promotes)
511 * @target: The target lock state
512 *
513 */
514
515static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target)
55ba474d
HH
516__releases(&gl->gl_spin)
517__acquires(&gl->gl_spin)
6802e340
SW
518{
519 const struct gfs2_glock_operations *glops = gl->gl_ops;
520 struct gfs2_sbd *sdp = gl->gl_sbd;
521 unsigned int lck_flags = gh ? gh->gh_flags : 0;
522 int ret;
523
524 lck_flags &= (LM_FLAG_TRY | LM_FLAG_TRY_1CB | LM_FLAG_NOEXP |
525 LM_FLAG_PRIORITY);
921169ca
SW
526 GLOCK_BUG_ON(gl, gl->gl_state == target);
527 GLOCK_BUG_ON(gl, gl->gl_state == gl->gl_target);
6802e340
SW
528 if ((target == LM_ST_UNLOCKED || target == LM_ST_DEFERRED) &&
529 glops->go_inval) {
530 set_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags);
531 do_error(gl, 0); /* Fail queued try locks */
532 }
47a25380 533 gl->gl_req = target;
a245769f
SW
534 set_bit(GLF_BLOCKING, &gl->gl_flags);
535 if ((gl->gl_req == LM_ST_UNLOCKED) ||
536 (gl->gl_state == LM_ST_EXCLUSIVE) ||
537 (lck_flags & (LM_FLAG_TRY|LM_FLAG_TRY_1CB)))
538 clear_bit(GLF_BLOCKING, &gl->gl_flags);
6802e340 539 spin_unlock(&gl->gl_spin);
06dfc306
BP
540 if (glops->go_sync)
541 glops->go_sync(gl);
6802e340
SW
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);
921169ca
SW
547 if (sdp->sd_lockstruct.ls_ops->lm_lock) {
548 /* lock_dlm */
549 ret = sdp->sd_lockstruct.ls_ops->lm_lock(gl, target, lck_flags);
dba2d70c
DT
550 if (ret) {
551 printk(KERN_ERR "GFS2: lm_lock ret %d\n", ret);
552 GLOCK_BUG_ON(gl, 1);
553 }
921169ca
SW
554 } else { /* lock_nolock */
555 finish_xmote(gl, target);
6802e340
SW
556 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
557 gfs2_glock_put(gl);
6802e340 558 }
921169ca 559
6802e340
SW
560 spin_lock(&gl->gl_spin);
561}
562
563/**
564 * find_first_holder - find the first "holder" gh
565 * @gl: the glock
566 */
567
568static inline struct gfs2_holder *find_first_holder(const struct gfs2_glock *gl)
569{
570 struct gfs2_holder *gh;
571
572 if (!list_empty(&gl->gl_holders)) {
573 gh = list_entry(gl->gl_holders.next, struct gfs2_holder, gh_list);
574 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
575 return gh;
576 }
577 return NULL;
578}
579
580/**
581 * run_queue - do all outstanding tasks related to a glock
582 * @gl: The glock in question
583 * @nonblock: True if we must not block in run_queue
584 *
585 */
586
587static void run_queue(struct gfs2_glock *gl, const int nonblock)
55ba474d
HH
588__releases(&gl->gl_spin)
589__acquires(&gl->gl_spin)
6802e340
SW
590{
591 struct gfs2_holder *gh = NULL;
813e0c46 592 int ret;
6802e340
SW
593
594 if (test_and_set_bit(GLF_LOCK, &gl->gl_flags))
595 return;
596
597 GLOCK_BUG_ON(gl, test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags));
598
599 if (test_bit(GLF_DEMOTE, &gl->gl_flags) &&
600 gl->gl_demote_state != gl->gl_state) {
601 if (find_first_holder(gl))
d8348de0 602 goto out_unlock;
6802e340
SW
603 if (nonblock)
604 goto out_sched;
605 set_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags);
265d529c 606 GLOCK_BUG_ON(gl, gl->gl_demote_state == LM_ST_EXCLUSIVE);
6802e340
SW
607 gl->gl_target = gl->gl_demote_state;
608 } else {
609 if (test_bit(GLF_DEMOTE, &gl->gl_flags))
610 gfs2_demote_wake(gl);
813e0c46
SW
611 ret = do_promote(gl);
612 if (ret == 0)
d8348de0 613 goto out_unlock;
813e0c46 614 if (ret == 2)
a228df63 615 goto out;
6802e340
SW
616 gh = find_first_waiter(gl);
617 gl->gl_target = gh->gh_state;
618 if (!(gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)))
619 do_error(gl, 0); /* Fail queued try locks */
620 }
621 do_xmote(gl, gh, gl->gl_target);
a228df63 622out:
6802e340
SW
623 return;
624
625out_sched:
7e71c55e
SW
626 clear_bit(GLF_LOCK, &gl->gl_flags);
627 smp_mb__after_clear_bit();
6802e340
SW
628 gfs2_glock_hold(gl);
629 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
8ff22a6f 630 gfs2_glock_put_nolock(gl);
7e71c55e
SW
631 return;
632
d8348de0 633out_unlock:
6802e340 634 clear_bit(GLF_LOCK, &gl->gl_flags);
7e71c55e
SW
635 smp_mb__after_clear_bit();
636 return;
6802e340
SW
637}
638
b94a170e
BM
639static void delete_work_func(struct work_struct *work)
640{
641 struct gfs2_glock *gl = container_of(work, struct gfs2_glock, gl_delete);
642 struct gfs2_sbd *sdp = gl->gl_sbd;
044b9414 643 struct gfs2_inode *ip;
b94a170e 644 struct inode *inode;
044b9414
SW
645 u64 no_addr = gl->gl_name.ln_number;
646
647 ip = gl->gl_object;
648 /* Note: Unsafe to dereference ip as we don't hold right refs/locks */
b94a170e 649
b94a170e 650 if (ip)
4667a0ec 651 inode = gfs2_ilookup(sdp->sd_vfs, no_addr, 1);
044b9414
SW
652 else
653 inode = gfs2_lookup_by_inum(sdp, no_addr, NULL, GFS2_BLKST_UNLINKED);
654 if (inode && !IS_ERR(inode)) {
655 d_prune_aliases(inode);
656 iput(inode);
b94a170e
BM
657 }
658 gfs2_glock_put(gl);
659}
660
c4f68a13
BM
661static void glock_work_func(struct work_struct *work)
662{
6802e340 663 unsigned long delay = 0;
c4f68a13 664 struct gfs2_glock *gl = container_of(work, struct gfs2_glock, gl_work.work);
26bb7505 665 int drop_ref = 0;
c4f68a13 666
26bb7505 667 if (test_and_clear_bit(GLF_REPLY_PENDING, &gl->gl_flags)) {
6802e340 668 finish_xmote(gl, gl->gl_reply);
26bb7505
SW
669 drop_ref = 1;
670 }
c4f68a13 671 spin_lock(&gl->gl_spin);
f90e5b5b 672 if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
265d529c
SW
673 gl->gl_state != LM_ST_UNLOCKED &&
674 gl->gl_demote_state != LM_ST_EXCLUSIVE) {
6802e340 675 unsigned long holdtime, now = jiffies;
f90e5b5b 676
7cf8dcd3 677 holdtime = gl->gl_tchange + gl->gl_hold_time;
6802e340
SW
678 if (time_before(now, holdtime))
679 delay = holdtime - now;
f90e5b5b
BP
680
681 if (!delay) {
682 clear_bit(GLF_PENDING_DEMOTE, &gl->gl_flags);
683 set_bit(GLF_DEMOTE, &gl->gl_flags);
684 }
6802e340
SW
685 }
686 run_queue(gl, 0);
c4f68a13 687 spin_unlock(&gl->gl_spin);
7cf8dcd3 688 if (!delay)
6802e340 689 gfs2_glock_put(gl);
7cf8dcd3
BP
690 else {
691 if (gl->gl_name.ln_type != LM_TYPE_INODE)
692 delay = 0;
693 if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
694 gfs2_glock_put(gl);
695 }
26bb7505
SW
696 if (drop_ref)
697 gfs2_glock_put(gl);
c4f68a13
BM
698}
699
b3b94faa
DT
700/**
701 * gfs2_glock_get() - Get a glock, or create one if one doesn't exist
702 * @sdp: The GFS2 superblock
703 * @number: the lock number
704 * @glops: The glock_operations to use
705 * @create: If 0, don't create the glock if it doesn't exist
706 * @glp: the glock is returned here
707 *
708 * This does not lock a glock, just finds/creates structures for one.
709 *
710 * Returns: errno
711 */
712
cd915493 713int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number,
8fb4b536 714 const struct gfs2_glock_operations *glops, int create,
b3b94faa
DT
715 struct gfs2_glock **glp)
716{
009d8518 717 struct super_block *s = sdp->sd_vfs;
37b2fa6a 718 struct lm_lockname name = { .ln_number = number, .ln_type = glops->go_type };
b3b94faa 719 struct gfs2_glock *gl, *tmp;
37b2fa6a 720 unsigned int hash = gl_hash(sdp, &name);
009d8518 721 struct address_space *mapping;
bc015cb8 722 struct kmem_cache *cachep;
b3b94faa 723
bc015cb8 724 rcu_read_lock();
37b2fa6a 725 gl = search_bucket(hash, sdp, &name);
bc015cb8 726 rcu_read_unlock();
b3b94faa 727
64d576ba
SW
728 *glp = gl;
729 if (gl)
b3b94faa 730 return 0;
64d576ba
SW
731 if (!create)
732 return -ENOENT;
b3b94faa 733
009d8518 734 if (glops->go_flags & GLOF_ASPACE)
bc015cb8 735 cachep = gfs2_glock_aspace_cachep;
009d8518 736 else
bc015cb8
SW
737 cachep = gfs2_glock_cachep;
738 gl = kmem_cache_alloc(cachep, GFP_KERNEL);
b3b94faa
DT
739 if (!gl)
740 return -ENOMEM;
741
dba2d70c
DT
742 memset(&gl->gl_lksb, 0, sizeof(struct dlm_lksb));
743 gl->gl_lvb = NULL;
744
745 if (glops->go_flags & GLOF_LVB) {
746 gl->gl_lvb = kzalloc(GFS2_MIN_LVB_SIZE, GFP_KERNEL);
747 if (!gl->gl_lvb) {
748 kmem_cache_free(cachep, gl);
749 return -ENOMEM;
750 }
751 gl->gl_lksb.sb_lvbptr = gl->gl_lvb;
752 }
753
8f05228e 754 atomic_inc(&sdp->sd_glock_disposal);
a245769f 755 gl->gl_sbd = sdp;
ec45d9f5 756 gl->gl_flags = 0;
b3b94faa 757 gl->gl_name = name;
16feb9fe 758 atomic_set(&gl->gl_ref, 1);
b3b94faa 759 gl->gl_state = LM_ST_UNLOCKED;
6802e340 760 gl->gl_target = LM_ST_UNLOCKED;
c4f68a13 761 gl->gl_demote_state = LM_ST_EXCLUSIVE;
37b2fa6a 762 gl->gl_hash = hash;
b3b94faa 763 gl->gl_ops = glops;
a245769f
SW
764 gl->gl_dstamp = ktime_set(0, 0);
765 preempt_disable();
766 /* We use the global stats to estimate the initial per-glock stats */
767 gl->gl_stats = this_cpu_ptr(sdp->sd_lkstats)->lkstats[glops->go_type];
768 preempt_enable();
769 gl->gl_stats.stats[GFS2_LKS_DCOUNT] = 0;
770 gl->gl_stats.stats[GFS2_LKS_QCOUNT] = 0;
c4f68a13 771 gl->gl_tchange = jiffies;
ec45d9f5 772 gl->gl_object = NULL;
7cf8dcd3 773 gl->gl_hold_time = GL_GLOCK_DFT_HOLD;
c4f68a13 774 INIT_DELAYED_WORK(&gl->gl_work, glock_work_func);
b94a170e 775 INIT_WORK(&gl->gl_delete, delete_work_func);
b3b94faa 776
009d8518
SW
777 mapping = gfs2_glock2aspace(gl);
778 if (mapping) {
779 mapping->a_ops = &gfs2_meta_aops;
780 mapping->host = s->s_bdev->bd_inode;
781 mapping->flags = 0;
782 mapping_set_gfp_mask(mapping, GFP_NOFS);
783 mapping->assoc_mapping = NULL;
784 mapping->backing_dev_info = s->s_bdi;
785 mapping->writeback_index = 0;
b3b94faa
DT
786 }
787
bc015cb8 788 spin_lock_bucket(hash);
37b2fa6a 789 tmp = search_bucket(hash, sdp, &name);
b3b94faa 790 if (tmp) {
bc015cb8 791 spin_unlock_bucket(hash);
dba2d70c 792 kfree(gl->gl_lvb);
bc015cb8 793 kmem_cache_free(cachep, gl);
fc0e38da 794 atomic_dec(&sdp->sd_glock_disposal);
b3b94faa
DT
795 gl = tmp;
796 } else {
bc015cb8
SW
797 hlist_bl_add_head_rcu(&gl->gl_list, &gl_hash_table[hash]);
798 spin_unlock_bucket(hash);
b3b94faa
DT
799 }
800
801 *glp = gl;
802
803 return 0;
b3b94faa
DT
804}
805
806/**
807 * gfs2_holder_init - initialize a struct gfs2_holder in the default way
808 * @gl: the glock
809 * @state: the state we're requesting
810 * @flags: the modifier flags
811 * @gh: the holder structure
812 *
813 */
814
190562bd 815void gfs2_holder_init(struct gfs2_glock *gl, unsigned int state, unsigned flags,
b3b94faa
DT
816 struct gfs2_holder *gh)
817{
818 INIT_LIST_HEAD(&gh->gh_list);
819 gh->gh_gl = gl;
d0dc80db 820 gh->gh_ip = (unsigned long)__builtin_return_address(0);
b1e058da 821 gh->gh_owner_pid = get_pid(task_pid(current));
b3b94faa
DT
822 gh->gh_state = state;
823 gh->gh_flags = flags;
824 gh->gh_error = 0;
825 gh->gh_iflags = 0;
b3b94faa
DT
826 gfs2_glock_hold(gl);
827}
828
829/**
830 * gfs2_holder_reinit - reinitialize a struct gfs2_holder so we can requeue it
831 * @state: the state we're requesting
832 * @flags: the modifier flags
833 * @gh: the holder structure
834 *
835 * Don't mess with the glock.
836 *
837 */
838
190562bd 839void gfs2_holder_reinit(unsigned int state, unsigned flags, struct gfs2_holder *gh)
b3b94faa
DT
840{
841 gh->gh_state = state;
579b78a4 842 gh->gh_flags = flags;
3b8249f6 843 gh->gh_iflags = 0;
d0dc80db 844 gh->gh_ip = (unsigned long)__builtin_return_address(0);
1a0eae88
BP
845 if (gh->gh_owner_pid)
846 put_pid(gh->gh_owner_pid);
847 gh->gh_owner_pid = get_pid(task_pid(current));
b3b94faa
DT
848}
849
850/**
851 * gfs2_holder_uninit - uninitialize a holder structure (drop glock reference)
852 * @gh: the holder structure
853 *
854 */
855
856void gfs2_holder_uninit(struct gfs2_holder *gh)
857{
b1e058da 858 put_pid(gh->gh_owner_pid);
b3b94faa
DT
859 gfs2_glock_put(gh->gh_gl);
860 gh->gh_gl = NULL;
d0dc80db 861 gh->gh_ip = 0;
b3b94faa
DT
862}
863
fe64d517
SW
864/**
865 * gfs2_glock_holder_wait
866 * @word: unused
867 *
868 * This function and gfs2_glock_demote_wait both show up in the WCHAN
869 * field. Thus I've separated these otherwise identical functions in
870 * order to be more informative to the user.
871 */
872
873static int gfs2_glock_holder_wait(void *word)
fee852e3
SW
874{
875 schedule();
876 return 0;
877}
878
fe64d517
SW
879static int gfs2_glock_demote_wait(void *word)
880{
881 schedule();
882 return 0;
883}
884
07a79049
BP
885/**
886 * gfs2_glock_wait - wait on a glock acquisition
887 * @gh: the glock holder
888 *
889 * Returns: 0 on success
890 */
891
892int gfs2_glock_wait(struct gfs2_holder *gh)
da755fdb 893{
7cf8dcd3
BP
894 unsigned long time1 = jiffies;
895
6802e340 896 might_sleep();
fe64d517 897 wait_on_bit(&gh->gh_iflags, HIF_WAIT, gfs2_glock_holder_wait, TASK_UNINTERRUPTIBLE);
7cf8dcd3
BP
898 if (time_after(jiffies, time1 + HZ)) /* have we waited > a second? */
899 /* Lengthen the minimum hold time. */
900 gh->gh_gl->gl_hold_time = min(gh->gh_gl->gl_hold_time +
901 GL_GLOCK_HOLD_INCR,
902 GL_GLOCK_MAX_HOLD);
07a79049 903 return gh->gh_error;
da755fdb
SW
904}
905
b3b94faa 906/**
6802e340
SW
907 * handle_callback - process a demote request
908 * @gl: the glock
909 * @state: the state the caller wants us to change to
b3b94faa 910 *
6802e340
SW
911 * There are only two requests that we are going to see in actual
912 * practise: LM_ST_SHARED and LM_ST_UNLOCKED
b3b94faa
DT
913 */
914
6802e340 915static void handle_callback(struct gfs2_glock *gl, unsigned int state,
97cc1025 916 unsigned long delay)
b3b94faa 917{
6802e340 918 int bit = delay ? GLF_PENDING_DEMOTE : GLF_DEMOTE;
b3b94faa 919
6802e340
SW
920 set_bit(bit, &gl->gl_flags);
921 if (gl->gl_demote_state == LM_ST_EXCLUSIVE) {
922 gl->gl_demote_state = state;
923 gl->gl_demote_time = jiffies;
6802e340
SW
924 } else if (gl->gl_demote_state != LM_ST_UNLOCKED &&
925 gl->gl_demote_state != state) {
926 gl->gl_demote_state = LM_ST_UNLOCKED;
b3b94faa 927 }
b94a170e
BM
928 if (gl->gl_ops->go_callback)
929 gl->gl_ops->go_callback(gl);
63997775 930 trace_gfs2_demote_rq(gl);
b3b94faa
DT
931}
932
6802e340 933void gfs2_print_dbg(struct seq_file *seq, const char *fmt, ...)
7c52b166 934{
5e69069c 935 struct va_format vaf;
7c52b166
RP
936 va_list args;
937
938 va_start(args, fmt);
5e69069c 939
6802e340 940 if (seq) {
1bb49303 941 seq_vprintf(seq, fmt, args);
6802e340 942 } else {
5e69069c
JP
943 vaf.fmt = fmt;
944 vaf.va = &args;
945
946 printk(KERN_ERR " %pV", &vaf);
6802e340 947 }
5e69069c 948
7c52b166
RP
949 va_end(args);
950}
951
b3b94faa
DT
952/**
953 * add_to_queue - Add a holder to the wait queue (but look for recursion)
954 * @gh: the holder structure to add
955 *
6802e340
SW
956 * Eventually we should move the recursive locking trap to a
957 * debugging option or something like that. This is the fast
958 * path and needs to have the minimum number of distractions.
959 *
b3b94faa
DT
960 */
961
6802e340 962static inline void add_to_queue(struct gfs2_holder *gh)
55ba474d
HH
963__releases(&gl->gl_spin)
964__acquires(&gl->gl_spin)
b3b94faa
DT
965{
966 struct gfs2_glock *gl = gh->gh_gl;
6802e340
SW
967 struct gfs2_sbd *sdp = gl->gl_sbd;
968 struct list_head *insert_pt = NULL;
969 struct gfs2_holder *gh2;
e5dc76b9 970 int try_futile = 0;
b3b94faa 971
b1e058da 972 BUG_ON(gh->gh_owner_pid == NULL);
fee852e3
SW
973 if (test_and_set_bit(HIF_WAIT, &gh->gh_iflags))
974 BUG();
190562bd 975
6802e340
SW
976 if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) {
977 if (test_bit(GLF_LOCK, &gl->gl_flags))
e5dc76b9 978 try_futile = !may_grant(gl, gh);
6802e340
SW
979 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags))
980 goto fail;
981 }
982
983 list_for_each_entry(gh2, &gl->gl_holders, gh_list) {
984 if (unlikely(gh2->gh_owner_pid == gh->gh_owner_pid &&
985 (gh->gh_gl->gl_ops->go_type != LM_TYPE_FLOCK)))
986 goto trap_recursive;
e5dc76b9
BP
987 if (try_futile &&
988 !(gh2->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) {
6802e340
SW
989fail:
990 gh->gh_error = GLR_TRYFAILED;
991 gfs2_holder_wake(gh);
992 return;
b4c20166 993 }
6802e340
SW
994 if (test_bit(HIF_HOLDER, &gh2->gh_iflags))
995 continue;
996 if (unlikely((gh->gh_flags & LM_FLAG_PRIORITY) && !insert_pt))
997 insert_pt = &gh2->gh_list;
998 }
7b5e3d5f 999 set_bit(GLF_QUEUED, &gl->gl_flags);
edae38a6 1000 trace_gfs2_glock_queue(gh, 1);
a245769f
SW
1001 gfs2_glstats_inc(gl, GFS2_LKS_QCOUNT);
1002 gfs2_sbstats_inc(gl, GFS2_LKS_QCOUNT);
6802e340
SW
1003 if (likely(insert_pt == NULL)) {
1004 list_add_tail(&gh->gh_list, &gl->gl_holders);
1005 if (unlikely(gh->gh_flags & LM_FLAG_PRIORITY))
1006 goto do_cancel;
1007 return;
1008 }
1009 list_add_tail(&gh->gh_list, insert_pt);
1010do_cancel:
1011 gh = list_entry(gl->gl_holders.next, struct gfs2_holder, gh_list);
1012 if (!(gh->gh_flags & LM_FLAG_PRIORITY)) {
1013 spin_unlock(&gl->gl_spin);
048bca22 1014 if (sdp->sd_lockstruct.ls_ops->lm_cancel)
f057f6cd 1015 sdp->sd_lockstruct.ls_ops->lm_cancel(gl);
6802e340 1016 spin_lock(&gl->gl_spin);
b3b94faa 1017 }
6802e340 1018 return;
b3b94faa 1019
6802e340
SW
1020trap_recursive:
1021 print_symbol(KERN_ERR "original: %s\n", gh2->gh_ip);
1022 printk(KERN_ERR "pid: %d\n", pid_nr(gh2->gh_owner_pid));
1023 printk(KERN_ERR "lock type: %d req lock state : %d\n",
1024 gh2->gh_gl->gl_name.ln_type, gh2->gh_state);
1025 print_symbol(KERN_ERR "new: %s\n", gh->gh_ip);
1026 printk(KERN_ERR "pid: %d\n", pid_nr(gh->gh_owner_pid));
1027 printk(KERN_ERR "lock type: %d req lock state : %d\n",
1028 gh->gh_gl->gl_name.ln_type, gh->gh_state);
8eae1ca0 1029 gfs2_dump_glock(NULL, gl);
6802e340 1030 BUG();
b3b94faa
DT
1031}
1032
1033/**
1034 * gfs2_glock_nq - enqueue a struct gfs2_holder onto a glock (acquire a glock)
1035 * @gh: the holder structure
1036 *
1037 * if (gh->gh_flags & GL_ASYNC), this never returns an error
1038 *
1039 * Returns: 0, GLR_TRYFAILED, or errno on failure
1040 */
1041
1042int gfs2_glock_nq(struct gfs2_holder *gh)
1043{
1044 struct gfs2_glock *gl = gh->gh_gl;
1045 struct gfs2_sbd *sdp = gl->gl_sbd;
1046 int error = 0;
1047
6802e340 1048 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
b3b94faa 1049 return -EIO;
b3b94faa 1050
f42ab085
SW
1051 if (test_bit(GLF_LRU, &gl->gl_flags))
1052 gfs2_glock_remove_from_lru(gl);
1053
b3b94faa
DT
1054 spin_lock(&gl->gl_spin);
1055 add_to_queue(gh);
0809f6ec
SW
1056 if ((LM_FLAG_NOEXP & gh->gh_flags) &&
1057 test_and_clear_bit(GLF_FROZEN, &gl->gl_flags))
1058 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
6802e340 1059 run_queue(gl, 1);
b3b94faa
DT
1060 spin_unlock(&gl->gl_spin);
1061
6802e340
SW
1062 if (!(gh->gh_flags & GL_ASYNC))
1063 error = gfs2_glock_wait(gh);
b3b94faa 1064
b3b94faa
DT
1065 return error;
1066}
1067
1068/**
1069 * gfs2_glock_poll - poll to see if an async request has been completed
1070 * @gh: the holder
1071 *
1072 * Returns: 1 if the request is ready to be gfs2_glock_wait()ed on
1073 */
1074
1075int gfs2_glock_poll(struct gfs2_holder *gh)
1076{
6802e340 1077 return test_bit(HIF_WAIT, &gh->gh_iflags) ? 0 : 1;
b3b94faa
DT
1078}
1079
1080/**
1081 * gfs2_glock_dq - dequeue a struct gfs2_holder from a glock (release a glock)
1082 * @gh: the glock holder
1083 *
1084 */
1085
1086void gfs2_glock_dq(struct gfs2_holder *gh)
1087{
1088 struct gfs2_glock *gl = gh->gh_gl;
8fb4b536 1089 const struct gfs2_glock_operations *glops = gl->gl_ops;
c4f68a13 1090 unsigned delay = 0;
6802e340 1091 int fast_path = 0;
b3b94faa 1092
6802e340 1093 spin_lock(&gl->gl_spin);
b3b94faa 1094 if (gh->gh_flags & GL_NOCACHE)
97cc1025 1095 handle_callback(gl, LM_ST_UNLOCKED, 0);
b3b94faa 1096
b3b94faa 1097 list_del_init(&gh->gh_list);
6802e340 1098 if (find_first_holder(gl) == NULL) {
3042a2cc 1099 if (glops->go_unlock) {
6802e340 1100 GLOCK_BUG_ON(gl, test_and_set_bit(GLF_LOCK, &gl->gl_flags));
3042a2cc 1101 spin_unlock(&gl->gl_spin);
b3b94faa 1102 glops->go_unlock(gh);
3042a2cc 1103 spin_lock(&gl->gl_spin);
6802e340 1104 clear_bit(GLF_LOCK, &gl->gl_flags);
3042a2cc 1105 }
6802e340
SW
1106 if (list_empty(&gl->gl_holders) &&
1107 !test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
1108 !test_bit(GLF_DEMOTE, &gl->gl_flags))
1109 fast_path = 1;
b3b94faa 1110 }
4abb6ad9
BP
1111 if (!test_bit(GLF_LFLUSH, &gl->gl_flags) && demote_ok(gl))
1112 gfs2_glock_add_to_lru(gl);
1113
63997775 1114 trace_gfs2_glock_queue(gh, 0);
b3b94faa 1115 spin_unlock(&gl->gl_spin);
6802e340
SW
1116 if (likely(fast_path))
1117 return;
c4f68a13
BM
1118
1119 gfs2_glock_hold(gl);
1120 if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
7cf8dcd3
BP
1121 !test_bit(GLF_DEMOTE, &gl->gl_flags) &&
1122 gl->gl_name.ln_type == LM_TYPE_INODE)
1123 delay = gl->gl_hold_time;
c4f68a13
BM
1124 if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
1125 gfs2_glock_put(gl);
b3b94faa
DT
1126}
1127
d93cfa98
AD
1128void gfs2_glock_dq_wait(struct gfs2_holder *gh)
1129{
1130 struct gfs2_glock *gl = gh->gh_gl;
1131 gfs2_glock_dq(gh);
81e1d450
BP
1132 might_sleep();
1133 wait_on_bit(&gl->gl_flags, GLF_DEMOTE, gfs2_glock_demote_wait, TASK_UNINTERRUPTIBLE);
d93cfa98
AD
1134}
1135
b3b94faa
DT
1136/**
1137 * gfs2_glock_dq_uninit - dequeue a holder from a glock and initialize it
1138 * @gh: the holder structure
1139 *
1140 */
1141
1142void gfs2_glock_dq_uninit(struct gfs2_holder *gh)
1143{
1144 gfs2_glock_dq(gh);
1145 gfs2_holder_uninit(gh);
1146}
1147
1148/**
1149 * gfs2_glock_nq_num - acquire a glock based on lock number
1150 * @sdp: the filesystem
1151 * @number: the lock number
1152 * @glops: the glock operations for the type of glock
1153 * @state: the state to acquire the glock in
25985edc 1154 * @flags: modifier flags for the acquisition
b3b94faa
DT
1155 * @gh: the struct gfs2_holder
1156 *
1157 * Returns: errno
1158 */
1159
cd915493 1160int gfs2_glock_nq_num(struct gfs2_sbd *sdp, u64 number,
8fb4b536
SW
1161 const struct gfs2_glock_operations *glops,
1162 unsigned int state, int flags, struct gfs2_holder *gh)
b3b94faa
DT
1163{
1164 struct gfs2_glock *gl;
1165 int error;
1166
1167 error = gfs2_glock_get(sdp, number, glops, CREATE, &gl);
1168 if (!error) {
1169 error = gfs2_glock_nq_init(gl, state, flags, gh);
1170 gfs2_glock_put(gl);
1171 }
1172
1173 return error;
1174}
1175
1176/**
1177 * glock_compare - Compare two struct gfs2_glock structures for sorting
1178 * @arg_a: the first structure
1179 * @arg_b: the second structure
1180 *
1181 */
1182
1183static int glock_compare(const void *arg_a, const void *arg_b)
1184{
a5e08a9e
SW
1185 const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1186 const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1187 const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1188 const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
b3b94faa
DT
1189
1190 if (a->ln_number > b->ln_number)
a5e08a9e
SW
1191 return 1;
1192 if (a->ln_number < b->ln_number)
1193 return -1;
1c0f4872 1194 BUG_ON(gh_a->gh_gl->gl_ops->go_type == gh_b->gh_gl->gl_ops->go_type);
a5e08a9e 1195 return 0;
b3b94faa
DT
1196}
1197
1198/**
1199 * nq_m_sync - synchonously acquire more than one glock in deadlock free order
1200 * @num_gh: the number of structures
1201 * @ghs: an array of struct gfs2_holder structures
1202 *
1203 * Returns: 0 on success (all glocks acquired),
1204 * errno on failure (no glocks acquired)
1205 */
1206
1207static int nq_m_sync(unsigned int num_gh, struct gfs2_holder *ghs,
1208 struct gfs2_holder **p)
1209{
1210 unsigned int x;
1211 int error = 0;
1212
1213 for (x = 0; x < num_gh; x++)
1214 p[x] = &ghs[x];
1215
1216 sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare, NULL);
1217
1218 for (x = 0; x < num_gh; x++) {
1219 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1220
1221 error = gfs2_glock_nq(p[x]);
1222 if (error) {
1223 while (x--)
1224 gfs2_glock_dq(p[x]);
1225 break;
1226 }
1227 }
1228
1229 return error;
1230}
1231
1232/**
1233 * gfs2_glock_nq_m - acquire multiple glocks
1234 * @num_gh: the number of structures
1235 * @ghs: an array of struct gfs2_holder structures
1236 *
b3b94faa
DT
1237 *
1238 * Returns: 0 on success (all glocks acquired),
1239 * errno on failure (no glocks acquired)
1240 */
1241
1242int gfs2_glock_nq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1243{
eaf5bd3c
SW
1244 struct gfs2_holder *tmp[4];
1245 struct gfs2_holder **pph = tmp;
b3b94faa
DT
1246 int error = 0;
1247
eaf5bd3c
SW
1248 switch(num_gh) {
1249 case 0:
b3b94faa 1250 return 0;
eaf5bd3c 1251 case 1:
b3b94faa
DT
1252 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1253 return gfs2_glock_nq(ghs);
eaf5bd3c
SW
1254 default:
1255 if (num_gh <= 4)
b3b94faa 1256 break;
eaf5bd3c
SW
1257 pph = kmalloc(num_gh * sizeof(struct gfs2_holder *), GFP_NOFS);
1258 if (!pph)
1259 return -ENOMEM;
b3b94faa
DT
1260 }
1261
eaf5bd3c 1262 error = nq_m_sync(num_gh, ghs, pph);
b3b94faa 1263
eaf5bd3c
SW
1264 if (pph != tmp)
1265 kfree(pph);
b3b94faa
DT
1266
1267 return error;
1268}
1269
1270/**
1271 * gfs2_glock_dq_m - release multiple glocks
1272 * @num_gh: the number of structures
1273 * @ghs: an array of struct gfs2_holder structures
1274 *
1275 */
1276
1277void gfs2_glock_dq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1278{
fa1bbdea
BP
1279 while (num_gh--)
1280 gfs2_glock_dq(&ghs[num_gh]);
b3b94faa
DT
1281}
1282
1283/**
1284 * gfs2_glock_dq_uninit_m - release multiple glocks
1285 * @num_gh: the number of structures
1286 * @ghs: an array of struct gfs2_holder structures
1287 *
1288 */
1289
1290void gfs2_glock_dq_uninit_m(unsigned int num_gh, struct gfs2_holder *ghs)
1291{
fa1bbdea
BP
1292 while (num_gh--)
1293 gfs2_glock_dq_uninit(&ghs[num_gh]);
b3b94faa
DT
1294}
1295
f057f6cd 1296void gfs2_glock_cb(struct gfs2_glock *gl, unsigned int state)
da755fdb 1297{
c4f68a13
BM
1298 unsigned long delay = 0;
1299 unsigned long holdtime;
1300 unsigned long now = jiffies;
b3b94faa 1301
f057f6cd 1302 gfs2_glock_hold(gl);
7cf8dcd3
BP
1303 holdtime = gl->gl_tchange + gl->gl_hold_time;
1304 if (test_bit(GLF_QUEUED, &gl->gl_flags) &&
1305 gl->gl_name.ln_type == LM_TYPE_INODE) {
7b5e3d5f
SW
1306 if (time_before(now, holdtime))
1307 delay = holdtime - now;
1308 if (test_bit(GLF_REPLY_PENDING, &gl->gl_flags))
7cf8dcd3 1309 delay = gl->gl_hold_time;
7b5e3d5f 1310 }
b3b94faa 1311
6802e340 1312 spin_lock(&gl->gl_spin);
97cc1025 1313 handle_callback(gl, state, delay);
6802e340 1314 spin_unlock(&gl->gl_spin);
c4f68a13
BM
1315 if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
1316 gfs2_glock_put(gl);
b3b94faa
DT
1317}
1318
0809f6ec
SW
1319/**
1320 * gfs2_should_freeze - Figure out if glock should be frozen
1321 * @gl: The glock in question
1322 *
1323 * Glocks are not frozen if (a) the result of the dlm operation is
1324 * an error, (b) the locking operation was an unlock operation or
1325 * (c) if there is a "noexp" flagged request anywhere in the queue
1326 *
1327 * Returns: 1 if freezing should occur, 0 otherwise
1328 */
1329
1330static int gfs2_should_freeze(const struct gfs2_glock *gl)
1331{
1332 const struct gfs2_holder *gh;
1333
1334 if (gl->gl_reply & ~LM_OUT_ST_MASK)
1335 return 0;
1336 if (gl->gl_target == LM_ST_UNLOCKED)
1337 return 0;
1338
1339 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
1340 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
1341 continue;
1342 if (LM_FLAG_NOEXP & gh->gh_flags)
1343 return 0;
1344 }
1345
1346 return 1;
1347}
1348
b3b94faa 1349/**
f057f6cd
SW
1350 * gfs2_glock_complete - Callback used by locking
1351 * @gl: Pointer to the glock
1352 * @ret: The return value from the dlm
b3b94faa 1353 *
47a25380
SW
1354 * The gl_reply field is under the gl_spin lock so that it is ok
1355 * to use a bitfield shared with other glock state fields.
b3b94faa
DT
1356 */
1357
f057f6cd 1358void gfs2_glock_complete(struct gfs2_glock *gl, int ret)
b3b94faa 1359{
f057f6cd 1360 struct lm_lockstruct *ls = &gl->gl_sbd->sd_lockstruct;
0809f6ec 1361
47a25380 1362 spin_lock(&gl->gl_spin);
f057f6cd 1363 gl->gl_reply = ret;
0809f6ec 1364
e0c2a9aa 1365 if (unlikely(test_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags))) {
0809f6ec 1366 if (gfs2_should_freeze(gl)) {
f057f6cd 1367 set_bit(GLF_FROZEN, &gl->gl_flags);
0809f6ec 1368 spin_unlock(&gl->gl_spin);
b3b94faa 1369 return;
0809f6ec 1370 }
b3b94faa 1371 }
47a25380
SW
1372
1373 spin_unlock(&gl->gl_spin);
f057f6cd 1374 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
47a25380 1375 smp_wmb();
f057f6cd
SW
1376 gfs2_glock_hold(gl);
1377 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1378 gfs2_glock_put(gl);
b3b94faa
DT
1379}
1380
b3b94faa 1381
1495f230
YH
1382static int gfs2_shrink_glock_memory(struct shrinker *shrink,
1383 struct shrink_control *sc)
b3b94faa
DT
1384{
1385 struct gfs2_glock *gl;
97cc1025
SW
1386 int may_demote;
1387 int nr_skipped = 0;
1495f230
YH
1388 int nr = sc->nr_to_scan;
1389 gfp_t gfp_mask = sc->gfp_mask;
97cc1025 1390 LIST_HEAD(skipped);
b3b94faa 1391
97cc1025
SW
1392 if (nr == 0)
1393 goto out;
b3b94faa 1394
97cc1025
SW
1395 if (!(gfp_mask & __GFP_FS))
1396 return -1;
b3b94faa 1397
97cc1025
SW
1398 spin_lock(&lru_lock);
1399 while(nr && !list_empty(&lru_list)) {
1400 gl = list_entry(lru_list.next, struct gfs2_glock, gl_lru);
1401 list_del_init(&gl->gl_lru);
627c10b7 1402 clear_bit(GLF_LRU, &gl->gl_flags);
97cc1025
SW
1403 atomic_dec(&lru_count);
1404
1405 /* Test for being demotable */
1406 if (!test_and_set_bit(GLF_LOCK, &gl->gl_flags)) {
1407 gfs2_glock_hold(gl);
97cc1025
SW
1408 spin_unlock(&lru_lock);
1409 spin_lock(&gl->gl_spin);
1410 may_demote = demote_ok(gl);
97cc1025
SW
1411 if (may_demote) {
1412 handle_callback(gl, LM_ST_UNLOCKED, 0);
1413 nr--;
97cc1025 1414 }
7e71c55e
SW
1415 clear_bit(GLF_LOCK, &gl->gl_flags);
1416 smp_mb__after_clear_bit();
2163b1e6 1417 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
b94a170e
BM
1418 gfs2_glock_put_nolock(gl);
1419 spin_unlock(&gl->gl_spin);
97cc1025 1420 spin_lock(&lru_lock);
2163b1e6 1421 continue;
97cc1025 1422 }
2163b1e6
SW
1423 nr_skipped++;
1424 list_add(&gl->gl_lru, &skipped);
627c10b7 1425 set_bit(GLF_LRU, &gl->gl_flags);
b3b94faa 1426 }
97cc1025
SW
1427 list_splice(&skipped, &lru_list);
1428 atomic_add(nr_skipped, &lru_count);
1429 spin_unlock(&lru_lock);
1430out:
1431 return (atomic_read(&lru_count) / 100) * sysctl_vfs_cache_pressure;
b3b94faa
DT
1432}
1433
97cc1025
SW
1434static struct shrinker glock_shrinker = {
1435 .shrink = gfs2_shrink_glock_memory,
1436 .seeks = DEFAULT_SEEKS,
1437};
1438
b3b94faa
DT
1439/**
1440 * examine_bucket - Call a function for glock in a hash bucket
1441 * @examiner: the function
1442 * @sdp: the filesystem
1443 * @bucket: the bucket
1444 *
b3b94faa
DT
1445 */
1446
bc015cb8 1447static void examine_bucket(glock_examiner examiner, const struct gfs2_sbd *sdp,
37b2fa6a 1448 unsigned int hash)
b3b94faa 1449{
bc015cb8
SW
1450 struct gfs2_glock *gl;
1451 struct hlist_bl_head *head = &gl_hash_table[hash];
1452 struct hlist_bl_node *pos;
b3b94faa 1453
bc015cb8
SW
1454 rcu_read_lock();
1455 hlist_bl_for_each_entry_rcu(gl, pos, head, gl_list) {
1456 if ((gl->gl_sbd == sdp) && atomic_read(&gl->gl_ref))
24264434 1457 examiner(gl);
b3b94faa 1458 }
bc015cb8 1459 rcu_read_unlock();
8fbbfd21 1460 cond_resched();
bc015cb8
SW
1461}
1462
1463static void glock_hash_walk(glock_examiner examiner, const struct gfs2_sbd *sdp)
1464{
1465 unsigned x;
1466
1467 for (x = 0; x < GFS2_GL_HASH_SIZE; x++)
1468 examine_bucket(examiner, sdp, x);
b3b94faa
DT
1469}
1470
f057f6cd
SW
1471
1472/**
1473 * thaw_glock - thaw out a glock which has an unprocessed reply waiting
1474 * @gl: The glock to thaw
1475 *
1476 * N.B. When we freeze a glock, we leave a ref to the glock outstanding,
1477 * so this has to result in the ref count being dropped by one.
1478 */
1479
1480static void thaw_glock(struct gfs2_glock *gl)
1481{
1482 if (!test_and_clear_bit(GLF_FROZEN, &gl->gl_flags))
1483 return;
f057f6cd
SW
1484 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
1485 gfs2_glock_hold(gl);
1486 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1487 gfs2_glock_put(gl);
f057f6cd
SW
1488}
1489
b3b94faa
DT
1490/**
1491 * clear_glock - look at a glock and see if we can free it from glock cache
1492 * @gl: the glock to look at
1493 *
1494 */
1495
1496static void clear_glock(struct gfs2_glock *gl)
1497{
f42ab085 1498 gfs2_glock_remove_from_lru(gl);
b3b94faa 1499
6802e340 1500 spin_lock(&gl->gl_spin);
c741c455 1501 if (gl->gl_state != LM_ST_UNLOCKED)
97cc1025 1502 handle_callback(gl, LM_ST_UNLOCKED, 0);
6802e340
SW
1503 spin_unlock(&gl->gl_spin);
1504 gfs2_glock_hold(gl);
1505 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1506 gfs2_glock_put(gl);
b3b94faa
DT
1507}
1508
f057f6cd
SW
1509/**
1510 * gfs2_glock_thaw - Thaw any frozen glocks
1511 * @sdp: The super block
1512 *
1513 */
1514
1515void gfs2_glock_thaw(struct gfs2_sbd *sdp)
1516{
bc015cb8
SW
1517 glock_hash_walk(thaw_glock, sdp);
1518}
f057f6cd 1519
bc015cb8
SW
1520static int dump_glock(struct seq_file *seq, struct gfs2_glock *gl)
1521{
1522 int ret;
1523 spin_lock(&gl->gl_spin);
8eae1ca0 1524 ret = gfs2_dump_glock(seq, gl);
bc015cb8
SW
1525 spin_unlock(&gl->gl_spin);
1526 return ret;
1527}
1528
1529static void dump_glock_func(struct gfs2_glock *gl)
1530{
1531 dump_glock(NULL, gl);
f057f6cd
SW
1532}
1533
b3b94faa
DT
1534/**
1535 * gfs2_gl_hash_clear - Empty out the glock hash table
1536 * @sdp: the filesystem
1537 * @wait: wait until it's all gone
1538 *
1bdad606 1539 * Called when unmounting the filesystem.
b3b94faa
DT
1540 */
1541
fefc03bf 1542void gfs2_gl_hash_clear(struct gfs2_sbd *sdp)
b3b94faa 1543{
fb6791d1 1544 set_bit(SDF_SKIP_DLM_UNLOCK, &sdp->sd_flags);
bc015cb8 1545 glock_hash_walk(clear_glock, sdp);
8f05228e
SW
1546 flush_workqueue(glock_workqueue);
1547 wait_event(sdp->sd_glock_wait, atomic_read(&sdp->sd_glock_disposal) == 0);
bc015cb8 1548 glock_hash_walk(dump_glock_func, sdp);
b3b94faa
DT
1549}
1550
813e0c46
SW
1551void gfs2_glock_finish_truncate(struct gfs2_inode *ip)
1552{
1553 struct gfs2_glock *gl = ip->i_gl;
1554 int ret;
1555
1556 ret = gfs2_truncatei_resume(ip);
1557 gfs2_assert_withdraw(gl->gl_sbd, ret == 0);
1558
1559 spin_lock(&gl->gl_spin);
1560 clear_bit(GLF_LOCK, &gl->gl_flags);
1561 run_queue(gl, 1);
1562 spin_unlock(&gl->gl_spin);
1563}
1564
6802e340 1565static const char *state2str(unsigned state)
04b933f2 1566{
6802e340
SW
1567 switch(state) {
1568 case LM_ST_UNLOCKED:
1569 return "UN";
1570 case LM_ST_SHARED:
1571 return "SH";
1572 case LM_ST_DEFERRED:
1573 return "DF";
1574 case LM_ST_EXCLUSIVE:
1575 return "EX";
1576 }
1577 return "??";
1578}
1579
1580static const char *hflags2str(char *buf, unsigned flags, unsigned long iflags)
1581{
1582 char *p = buf;
1583 if (flags & LM_FLAG_TRY)
1584 *p++ = 't';
1585 if (flags & LM_FLAG_TRY_1CB)
1586 *p++ = 'T';
1587 if (flags & LM_FLAG_NOEXP)
1588 *p++ = 'e';
1589 if (flags & LM_FLAG_ANY)
f057f6cd 1590 *p++ = 'A';
6802e340
SW
1591 if (flags & LM_FLAG_PRIORITY)
1592 *p++ = 'p';
1593 if (flags & GL_ASYNC)
1594 *p++ = 'a';
1595 if (flags & GL_EXACT)
1596 *p++ = 'E';
6802e340
SW
1597 if (flags & GL_NOCACHE)
1598 *p++ = 'c';
1599 if (test_bit(HIF_HOLDER, &iflags))
1600 *p++ = 'H';
1601 if (test_bit(HIF_WAIT, &iflags))
1602 *p++ = 'W';
1603 if (test_bit(HIF_FIRST, &iflags))
1604 *p++ = 'F';
1605 *p = 0;
1606 return buf;
04b933f2
RP
1607}
1608
b3b94faa
DT
1609/**
1610 * dump_holder - print information about a glock holder
6802e340 1611 * @seq: the seq_file struct
b3b94faa
DT
1612 * @gh: the glock holder
1613 *
1614 * Returns: 0 on success, -ENOBUFS when we run out of space
1615 */
1616
6802e340 1617static int dump_holder(struct seq_file *seq, const struct gfs2_holder *gh)
b3b94faa 1618{
6802e340 1619 struct task_struct *gh_owner = NULL;
6802e340 1620 char flags_buf[32];
b3b94faa 1621
6802e340 1622 if (gh->gh_owner_pid)
b1e058da 1623 gh_owner = pid_task(gh->gh_owner_pid, PIDTYPE_PID);
cc18152e
JP
1624 gfs2_print_dbg(seq, " H: s:%s f:%s e:%d p:%ld [%s] %pS\n",
1625 state2str(gh->gh_state),
1626 hflags2str(flags_buf, gh->gh_flags, gh->gh_iflags),
1627 gh->gh_error,
1628 gh->gh_owner_pid ? (long)pid_nr(gh->gh_owner_pid) : -1,
1629 gh_owner ? gh_owner->comm : "(ended)",
1630 (void *)gh->gh_ip);
7c52b166 1631 return 0;
b3b94faa
DT
1632}
1633
627c10b7 1634static const char *gflags2str(char *buf, const struct gfs2_glock *gl)
6802e340 1635{
627c10b7 1636 const unsigned long *gflags = &gl->gl_flags;
6802e340 1637 char *p = buf;
627c10b7 1638
6802e340
SW
1639 if (test_bit(GLF_LOCK, gflags))
1640 *p++ = 'l';
6802e340
SW
1641 if (test_bit(GLF_DEMOTE, gflags))
1642 *p++ = 'D';
1643 if (test_bit(GLF_PENDING_DEMOTE, gflags))
1644 *p++ = 'd';
1645 if (test_bit(GLF_DEMOTE_IN_PROGRESS, gflags))
1646 *p++ = 'p';
1647 if (test_bit(GLF_DIRTY, gflags))
1648 *p++ = 'y';
1649 if (test_bit(GLF_LFLUSH, gflags))
1650 *p++ = 'f';
1651 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, gflags))
1652 *p++ = 'i';
1653 if (test_bit(GLF_REPLY_PENDING, gflags))
1654 *p++ = 'r';
f057f6cd 1655 if (test_bit(GLF_INITIAL, gflags))
d8348de0 1656 *p++ = 'I';
f057f6cd
SW
1657 if (test_bit(GLF_FROZEN, gflags))
1658 *p++ = 'F';
7b5e3d5f
SW
1659 if (test_bit(GLF_QUEUED, gflags))
1660 *p++ = 'q';
627c10b7
SW
1661 if (test_bit(GLF_LRU, gflags))
1662 *p++ = 'L';
1663 if (gl->gl_object)
1664 *p++ = 'o';
a245769f
SW
1665 if (test_bit(GLF_BLOCKING, gflags))
1666 *p++ = 'b';
6802e340
SW
1667 *p = 0;
1668 return buf;
b3b94faa
DT
1669}
1670
1671/**
8eae1ca0 1672 * gfs2_dump_glock - print information about a glock
6802e340 1673 * @seq: The seq_file struct
b3b94faa 1674 * @gl: the glock
6802e340
SW
1675 *
1676 * The file format is as follows:
1677 * One line per object, capital letters are used to indicate objects
1678 * G = glock, I = Inode, R = rgrp, H = holder. Glocks are not indented,
1679 * other objects are indented by a single space and follow the glock to
1680 * which they are related. Fields are indicated by lower case letters
1681 * followed by a colon and the field value, except for strings which are in
1682 * [] so that its possible to see if they are composed of spaces for
1683 * example. The field's are n = number (id of the object), f = flags,
1684 * t = type, s = state, r = refcount, e = error, p = pid.
b3b94faa
DT
1685 *
1686 * Returns: 0 on success, -ENOBUFS when we run out of space
1687 */
1688
8eae1ca0 1689int gfs2_dump_glock(struct seq_file *seq, const struct gfs2_glock *gl)
b3b94faa 1690{
6802e340
SW
1691 const struct gfs2_glock_operations *glops = gl->gl_ops;
1692 unsigned long long dtime;
1693 const struct gfs2_holder *gh;
1694 char gflags_buf[32];
1695 int error = 0;
b3b94faa 1696
6802e340
SW
1697 dtime = jiffies - gl->gl_demote_time;
1698 dtime *= 1000000/HZ; /* demote time in uSec */
1699 if (!test_bit(GLF_DEMOTE, &gl->gl_flags))
1700 dtime = 0;
7cf8dcd3 1701 gfs2_print_dbg(seq, "G: s:%s n:%u/%llx f:%s t:%s d:%s/%llu a:%d v:%d r:%d m:%ld\n",
6802e340
SW
1702 state2str(gl->gl_state),
1703 gl->gl_name.ln_type,
1704 (unsigned long long)gl->gl_name.ln_number,
627c10b7 1705 gflags2str(gflags_buf, gl),
6802e340
SW
1706 state2str(gl->gl_target),
1707 state2str(gl->gl_demote_state), dtime,
6802e340 1708 atomic_read(&gl->gl_ail_count),
f42ab085 1709 atomic_read(&gl->gl_revokes),
7cf8dcd3 1710 atomic_read(&gl->gl_ref), gl->gl_hold_time);
b3b94faa 1711
b3b94faa 1712 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
6802e340 1713 error = dump_holder(seq, gh);
b3b94faa
DT
1714 if (error)
1715 goto out;
1716 }
6802e340
SW
1717 if (gl->gl_state != LM_ST_UNLOCKED && glops->go_dump)
1718 error = glops->go_dump(seq, gl);
a91ea69f 1719out:
b3b94faa
DT
1720 return error;
1721}
1722
a245769f
SW
1723static int gfs2_glstats_seq_show(struct seq_file *seq, void *iter_ptr)
1724{
1725 struct gfs2_glock *gl = iter_ptr;
1726
1727 seq_printf(seq, "G: n:%u/%llx rtt:%lld/%lld rttb:%lld/%lld irt:%lld/%lld dcnt: %lld qcnt: %lld\n",
1728 gl->gl_name.ln_type,
1729 (unsigned long long)gl->gl_name.ln_number,
1730 (long long)gl->gl_stats.stats[GFS2_LKS_SRTT],
1731 (long long)gl->gl_stats.stats[GFS2_LKS_SRTTVAR],
1732 (long long)gl->gl_stats.stats[GFS2_LKS_SRTTB],
1733 (long long)gl->gl_stats.stats[GFS2_LKS_SRTTVARB],
1734 (long long)gl->gl_stats.stats[GFS2_LKS_SIRT],
1735 (long long)gl->gl_stats.stats[GFS2_LKS_SIRTVAR],
1736 (long long)gl->gl_stats.stats[GFS2_LKS_DCOUNT],
1737 (long long)gl->gl_stats.stats[GFS2_LKS_QCOUNT]);
1738 return 0;
1739}
1740
1741static const char *gfs2_gltype[] = {
1742 "type",
1743 "reserved",
1744 "nondisk",
1745 "inode",
1746 "rgrp",
1747 "meta",
1748 "iopen",
1749 "flock",
1750 "plock",
1751 "quota",
1752 "journal",
1753};
1754
1755static const char *gfs2_stype[] = {
1756 [GFS2_LKS_SRTT] = "srtt",
1757 [GFS2_LKS_SRTTVAR] = "srttvar",
1758 [GFS2_LKS_SRTTB] = "srttb",
1759 [GFS2_LKS_SRTTVARB] = "srttvarb",
1760 [GFS2_LKS_SIRT] = "sirt",
1761 [GFS2_LKS_SIRTVAR] = "sirtvar",
1762 [GFS2_LKS_DCOUNT] = "dlm",
1763 [GFS2_LKS_QCOUNT] = "queue",
1764};
1765
1766#define GFS2_NR_SBSTATS (ARRAY_SIZE(gfs2_gltype) * ARRAY_SIZE(gfs2_stype))
1767
1768static int gfs2_sbstats_seq_show(struct seq_file *seq, void *iter_ptr)
1769{
1770 struct gfs2_glock_iter *gi = seq->private;
1771 struct gfs2_sbd *sdp = gi->sdp;
1772 unsigned index = gi->hash >> 3;
1773 unsigned subindex = gi->hash & 0x07;
1774 s64 value;
1775 int i;
1776
1777 if (index == 0 && subindex != 0)
1778 return 0;
6802e340 1779
a245769f
SW
1780 seq_printf(seq, "%-10s %8s:", gfs2_gltype[index],
1781 (index == 0) ? "cpu": gfs2_stype[subindex]);
b3b94faa 1782
a245769f
SW
1783 for_each_possible_cpu(i) {
1784 const struct gfs2_pcpu_lkstats *lkstats = per_cpu_ptr(sdp->sd_lkstats, i);
1785 if (index == 0) {
1786 value = i;
1787 } else {
1788 value = lkstats->lkstats[index - 1].stats[subindex];
1789 }
1790 seq_printf(seq, " %15lld", (long long)value);
1791 }
1792 seq_putc(seq, '\n');
1793 return 0;
1794}
8fbbfd21 1795
85d1da67
SW
1796int __init gfs2_glock_init(void)
1797{
1798 unsigned i;
1799 for(i = 0; i < GFS2_GL_HASH_SIZE; i++) {
bc015cb8 1800 INIT_HLIST_BL_HEAD(&gl_hash_table[i]);
087efdd3 1801 }
8fbbfd21 1802
d2115778 1803 glock_workqueue = alloc_workqueue("glock_workqueue", WQ_MEM_RECLAIM |
58a69cb4 1804 WQ_HIGHPRI | WQ_FREEZABLE, 0);
97cc1025 1805 if (IS_ERR(glock_workqueue))
c4f68a13 1806 return PTR_ERR(glock_workqueue);
d2115778 1807 gfs2_delete_workqueue = alloc_workqueue("delete_workqueue",
58a69cb4 1808 WQ_MEM_RECLAIM | WQ_FREEZABLE,
d2115778 1809 0);
b94a170e
BM
1810 if (IS_ERR(gfs2_delete_workqueue)) {
1811 destroy_workqueue(glock_workqueue);
1812 return PTR_ERR(gfs2_delete_workqueue);
1813 }
97cc1025
SW
1814
1815 register_shrinker(&glock_shrinker);
c4f68a13 1816
85d1da67
SW
1817 return 0;
1818}
1819
8fbbfd21
SW
1820void gfs2_glock_exit(void)
1821{
97cc1025 1822 unregister_shrinker(&glock_shrinker);
c4f68a13 1823 destroy_workqueue(glock_workqueue);
b94a170e 1824 destroy_workqueue(gfs2_delete_workqueue);
8fbbfd21
SW
1825}
1826
bc015cb8
SW
1827static inline struct gfs2_glock *glock_hash_chain(unsigned hash)
1828{
1829 return hlist_bl_entry(hlist_bl_first_rcu(&gl_hash_table[hash]),
1830 struct gfs2_glock, gl_list);
1831}
1832
1833static inline struct gfs2_glock *glock_hash_next(struct gfs2_glock *gl)
1834{
7e32d026 1835 return hlist_bl_entry(rcu_dereference(gl->gl_list.next),
bc015cb8
SW
1836 struct gfs2_glock, gl_list);
1837}
1838
6802e340 1839static int gfs2_glock_iter_next(struct gfs2_glock_iter *gi)
7c52b166 1840{
7b08fc62
SW
1841 struct gfs2_glock *gl;
1842
bc015cb8
SW
1843 do {
1844 gl = gi->gl;
1845 if (gl) {
1846 gi->gl = glock_hash_next(gl);
ba1ddcb6 1847 gi->nhash++;
bc015cb8 1848 } else {
ba1ddcb6
SW
1849 if (gi->hash >= GFS2_GL_HASH_SIZE) {
1850 rcu_read_unlock();
1851 return 1;
1852 }
bc015cb8 1853 gi->gl = glock_hash_chain(gi->hash);
ba1ddcb6 1854 gi->nhash = 0;
bc015cb8
SW
1855 }
1856 while (gi->gl == NULL) {
1857 gi->hash++;
1858 if (gi->hash >= GFS2_GL_HASH_SIZE) {
1859 rcu_read_unlock();
1860 return 1;
1861 }
1862 gi->gl = glock_hash_chain(gi->hash);
ba1ddcb6 1863 gi->nhash = 0;
bc015cb8
SW
1864 }
1865 /* Skip entries for other sb and dead entries */
1866 } while (gi->sdp != gi->gl->gl_sbd || atomic_read(&gi->gl->gl_ref) == 0);
a947e033 1867
7c52b166
RP
1868 return 0;
1869}
1870
6802e340 1871static void *gfs2_glock_seq_start(struct seq_file *seq, loff_t *pos)
7c52b166 1872{
6802e340 1873 struct gfs2_glock_iter *gi = seq->private;
7c52b166
RP
1874 loff_t n = *pos;
1875
ba1ddcb6
SW
1876 if (gi->last_pos <= *pos)
1877 n = gi->nhash + (*pos - gi->last_pos);
1878 else
1879 gi->hash = 0;
1880
1881 gi->nhash = 0;
bc015cb8 1882 rcu_read_lock();
7c52b166 1883
6802e340 1884 do {
bc015cb8 1885 if (gfs2_glock_iter_next(gi))
7c52b166 1886 return NULL;
6802e340 1887 } while (n--);
7c52b166 1888
ba1ddcb6 1889 gi->last_pos = *pos;
6802e340 1890 return gi->gl;
7c52b166
RP
1891}
1892
6802e340 1893static void *gfs2_glock_seq_next(struct seq_file *seq, void *iter_ptr,
7c52b166
RP
1894 loff_t *pos)
1895{
6802e340 1896 struct gfs2_glock_iter *gi = seq->private;
7c52b166
RP
1897
1898 (*pos)++;
ba1ddcb6 1899 gi->last_pos = *pos;
bc015cb8 1900 if (gfs2_glock_iter_next(gi))
7c52b166 1901 return NULL;
7c52b166 1902
6802e340 1903 return gi->gl;
7c52b166
RP
1904}
1905
6802e340 1906static void gfs2_glock_seq_stop(struct seq_file *seq, void *iter_ptr)
7c52b166 1907{
6802e340 1908 struct gfs2_glock_iter *gi = seq->private;
bc015cb8
SW
1909
1910 if (gi->gl)
1911 rcu_read_unlock();
1912 gi->gl = NULL;
7c52b166
RP
1913}
1914
6802e340 1915static int gfs2_glock_seq_show(struct seq_file *seq, void *iter_ptr)
7c52b166 1916{
6802e340 1917 return dump_glock(seq, iter_ptr);
7c52b166
RP
1918}
1919
a245769f
SW
1920static void *gfs2_sbstats_seq_start(struct seq_file *seq, loff_t *pos)
1921{
1922 struct gfs2_glock_iter *gi = seq->private;
1923
1924 gi->hash = *pos;
1925 if (*pos >= GFS2_NR_SBSTATS)
1926 return NULL;
1927 preempt_disable();
1928 return SEQ_START_TOKEN;
1929}
1930
1931static void *gfs2_sbstats_seq_next(struct seq_file *seq, void *iter_ptr,
1932 loff_t *pos)
1933{
1934 struct gfs2_glock_iter *gi = seq->private;
1935 (*pos)++;
1936 gi->hash++;
1937 if (gi->hash >= GFS2_NR_SBSTATS) {
1938 preempt_enable();
1939 return NULL;
1940 }
1941 return SEQ_START_TOKEN;
1942}
1943
1944static void gfs2_sbstats_seq_stop(struct seq_file *seq, void *iter_ptr)
1945{
1946 preempt_enable();
1947}
1948
4ef29002 1949static const struct seq_operations gfs2_glock_seq_ops = {
7c52b166
RP
1950 .start = gfs2_glock_seq_start,
1951 .next = gfs2_glock_seq_next,
1952 .stop = gfs2_glock_seq_stop,
1953 .show = gfs2_glock_seq_show,
1954};
1955
a245769f
SW
1956static const struct seq_operations gfs2_glstats_seq_ops = {
1957 .start = gfs2_glock_seq_start,
1958 .next = gfs2_glock_seq_next,
1959 .stop = gfs2_glock_seq_stop,
1960 .show = gfs2_glstats_seq_show,
1961};
1962
1963static const struct seq_operations gfs2_sbstats_seq_ops = {
1964 .start = gfs2_sbstats_seq_start,
1965 .next = gfs2_sbstats_seq_next,
1966 .stop = gfs2_sbstats_seq_stop,
1967 .show = gfs2_sbstats_seq_show,
1968};
1969
0fe2f1e9
SW
1970#define GFS2_SEQ_GOODSIZE min(PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER, 65536UL)
1971
a245769f 1972static int gfs2_glocks_open(struct inode *inode, struct file *file)
7c52b166 1973{
6802e340
SW
1974 int ret = seq_open_private(file, &gfs2_glock_seq_ops,
1975 sizeof(struct gfs2_glock_iter));
1976 if (ret == 0) {
1977 struct seq_file *seq = file->private_data;
1978 struct gfs2_glock_iter *gi = seq->private;
1979 gi->sdp = inode->i_private;
0fe2f1e9 1980 seq->buf = kmalloc(GFS2_SEQ_GOODSIZE, GFP_KERNEL | __GFP_NOWARN);
df5d2f55 1981 if (seq->buf)
0fe2f1e9 1982 seq->size = GFS2_SEQ_GOODSIZE;
6802e340
SW
1983 }
1984 return ret;
7c52b166
RP
1985}
1986
a245769f
SW
1987static int gfs2_glstats_open(struct inode *inode, struct file *file)
1988{
1989 int ret = seq_open_private(file, &gfs2_glstats_seq_ops,
1990 sizeof(struct gfs2_glock_iter));
1991 if (ret == 0) {
1992 struct seq_file *seq = file->private_data;
1993 struct gfs2_glock_iter *gi = seq->private;
1994 gi->sdp = inode->i_private;
0fe2f1e9 1995 seq->buf = kmalloc(GFS2_SEQ_GOODSIZE, GFP_KERNEL | __GFP_NOWARN);
df5d2f55 1996 if (seq->buf)
0fe2f1e9 1997 seq->size = GFS2_SEQ_GOODSIZE;
a245769f
SW
1998 }
1999 return ret;
2000}
2001
2002static int gfs2_sbstats_open(struct inode *inode, struct file *file)
2003{
2004 int ret = seq_open_private(file, &gfs2_sbstats_seq_ops,
2005 sizeof(struct gfs2_glock_iter));
2006 if (ret == 0) {
2007 struct seq_file *seq = file->private_data;
2008 struct gfs2_glock_iter *gi = seq->private;
2009 gi->sdp = inode->i_private;
2010 }
2011 return ret;
2012}
2013
2014static const struct file_operations gfs2_glocks_fops = {
2015 .owner = THIS_MODULE,
2016 .open = gfs2_glocks_open,
2017 .read = seq_read,
2018 .llseek = seq_lseek,
2019 .release = seq_release_private,
2020};
2021
2022static const struct file_operations gfs2_glstats_fops = {
7c52b166 2023 .owner = THIS_MODULE,
a245769f
SW
2024 .open = gfs2_glstats_open,
2025 .read = seq_read,
2026 .llseek = seq_lseek,
2027 .release = seq_release_private,
2028};
2029
2030static const struct file_operations gfs2_sbstats_fops = {
2031 .owner = THIS_MODULE,
2032 .open = gfs2_sbstats_open,
7c52b166
RP
2033 .read = seq_read,
2034 .llseek = seq_lseek,
6802e340 2035 .release = seq_release_private,
7c52b166
RP
2036};
2037
2038int gfs2_create_debugfs_file(struct gfs2_sbd *sdp)
2039{
5f882096
RP
2040 sdp->debugfs_dir = debugfs_create_dir(sdp->sd_table_name, gfs2_root);
2041 if (!sdp->debugfs_dir)
2042 return -ENOMEM;
2043 sdp->debugfs_dentry_glocks = debugfs_create_file("glocks",
2044 S_IFREG | S_IRUGO,
2045 sdp->debugfs_dir, sdp,
a245769f 2046 &gfs2_glocks_fops);
5f882096 2047 if (!sdp->debugfs_dentry_glocks)
a245769f
SW
2048 goto fail;
2049
2050 sdp->debugfs_dentry_glstats = debugfs_create_file("glstats",
2051 S_IFREG | S_IRUGO,
2052 sdp->debugfs_dir, sdp,
2053 &gfs2_glstats_fops);
2054 if (!sdp->debugfs_dentry_glstats)
2055 goto fail;
2056
2057 sdp->debugfs_dentry_sbstats = debugfs_create_file("sbstats",
2058 S_IFREG | S_IRUGO,
2059 sdp->debugfs_dir, sdp,
2060 &gfs2_sbstats_fops);
2061 if (!sdp->debugfs_dentry_sbstats)
2062 goto fail;
7c52b166
RP
2063
2064 return 0;
a245769f
SW
2065fail:
2066 gfs2_delete_debugfs_file(sdp);
2067 return -ENOMEM;
7c52b166
RP
2068}
2069
2070void gfs2_delete_debugfs_file(struct gfs2_sbd *sdp)
2071{
a245769f 2072 if (sdp->debugfs_dir) {
5f882096
RP
2073 if (sdp->debugfs_dentry_glocks) {
2074 debugfs_remove(sdp->debugfs_dentry_glocks);
2075 sdp->debugfs_dentry_glocks = NULL;
2076 }
a245769f
SW
2077 if (sdp->debugfs_dentry_glstats) {
2078 debugfs_remove(sdp->debugfs_dentry_glstats);
2079 sdp->debugfs_dentry_glstats = NULL;
2080 }
2081 if (sdp->debugfs_dentry_sbstats) {
2082 debugfs_remove(sdp->debugfs_dentry_sbstats);
2083 sdp->debugfs_dentry_sbstats = NULL;
2084 }
5f882096
RP
2085 debugfs_remove(sdp->debugfs_dir);
2086 sdp->debugfs_dir = NULL;
2087 }
7c52b166
RP
2088}
2089
2090int gfs2_register_debugfs(void)
2091{
2092 gfs2_root = debugfs_create_dir("gfs2", NULL);
2093 return gfs2_root ? 0 : -ENOMEM;
2094}
2095
2096void gfs2_unregister_debugfs(void)
2097{
2098 debugfs_remove(gfs2_root);
5f882096 2099 gfs2_root = NULL;
7c52b166 2100}
This page took 0.632916 seconds and 5 git commands to generate.