gfs2: do_promote glock holder stealing fix
[linux-2.6-microblaze.git] / fs / gfs2 / glock.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (C) Sistina Software, Inc.  1997-2003 All rights reserved.
4  * Copyright (C) 2004-2008 Red Hat, Inc.  All rights reserved.
5  */
6
7 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8
9 #include <linux/sched.h>
10 #include <linux/slab.h>
11 #include <linux/spinlock.h>
12 #include <linux/buffer_head.h>
13 #include <linux/delay.h>
14 #include <linux/sort.h>
15 #include <linux/hash.h>
16 #include <linux/jhash.h>
17 #include <linux/kallsyms.h>
18 #include <linux/gfs2_ondisk.h>
19 #include <linux/list.h>
20 #include <linux/wait.h>
21 #include <linux/module.h>
22 #include <linux/uaccess.h>
23 #include <linux/seq_file.h>
24 #include <linux/debugfs.h>
25 #include <linux/kthread.h>
26 #include <linux/freezer.h>
27 #include <linux/workqueue.h>
28 #include <linux/jiffies.h>
29 #include <linux/rcupdate.h>
30 #include <linux/rculist_bl.h>
31 #include <linux/bit_spinlock.h>
32 #include <linux/percpu.h>
33 #include <linux/list_sort.h>
34 #include <linux/lockref.h>
35 #include <linux/rhashtable.h>
36
37 #include "gfs2.h"
38 #include "incore.h"
39 #include "glock.h"
40 #include "glops.h"
41 #include "inode.h"
42 #include "lops.h"
43 #include "meta_io.h"
44 #include "quota.h"
45 #include "super.h"
46 #include "util.h"
47 #include "bmap.h"
48 #define CREATE_TRACE_POINTS
49 #include "trace_gfs2.h"
50
51 struct gfs2_glock_iter {
52         struct gfs2_sbd *sdp;           /* incore superblock           */
53         struct rhashtable_iter hti;     /* rhashtable iterator         */
54         struct gfs2_glock *gl;          /* current glock struct        */
55         loff_t last_pos;                /* last position               */
56 };
57
58 typedef void (*glock_examiner) (struct gfs2_glock * gl);
59
60 static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target);
61 static void __gfs2_glock_dq(struct gfs2_holder *gh);
62
63 static struct dentry *gfs2_root;
64 static struct workqueue_struct *glock_workqueue;
65 struct workqueue_struct *gfs2_delete_workqueue;
66 static LIST_HEAD(lru_list);
67 static atomic_t lru_count = ATOMIC_INIT(0);
68 static DEFINE_SPINLOCK(lru_lock);
69
70 #define GFS2_GL_HASH_SHIFT      15
71 #define GFS2_GL_HASH_SIZE       BIT(GFS2_GL_HASH_SHIFT)
72
73 static const struct rhashtable_params ht_parms = {
74         .nelem_hint = GFS2_GL_HASH_SIZE * 3 / 4,
75         .key_len = offsetofend(struct lm_lockname, ln_type),
76         .key_offset = offsetof(struct gfs2_glock, gl_name),
77         .head_offset = offsetof(struct gfs2_glock, gl_node),
78 };
79
80 static struct rhashtable gl_hash_table;
81
82 #define GLOCK_WAIT_TABLE_BITS 12
83 #define GLOCK_WAIT_TABLE_SIZE (1 << GLOCK_WAIT_TABLE_BITS)
84 static wait_queue_head_t glock_wait_table[GLOCK_WAIT_TABLE_SIZE] __cacheline_aligned;
85
86 struct wait_glock_queue {
87         struct lm_lockname *name;
88         wait_queue_entry_t wait;
89 };
90
91 static int glock_wake_function(wait_queue_entry_t *wait, unsigned int mode,
92                                int sync, void *key)
93 {
94         struct wait_glock_queue *wait_glock =
95                 container_of(wait, struct wait_glock_queue, wait);
96         struct lm_lockname *wait_name = wait_glock->name;
97         struct lm_lockname *wake_name = key;
98
99         if (wake_name->ln_sbd != wait_name->ln_sbd ||
100             wake_name->ln_number != wait_name->ln_number ||
101             wake_name->ln_type != wait_name->ln_type)
102                 return 0;
103         return autoremove_wake_function(wait, mode, sync, key);
104 }
105
106 static wait_queue_head_t *glock_waitqueue(struct lm_lockname *name)
107 {
108         u32 hash = jhash2((u32 *)name, ht_parms.key_len / 4, 0);
109
110         return glock_wait_table + hash_32(hash, GLOCK_WAIT_TABLE_BITS);
111 }
112
113 /**
114  * wake_up_glock  -  Wake up waiters on a glock
115  * @gl: the glock
116  */
117 static void wake_up_glock(struct gfs2_glock *gl)
118 {
119         wait_queue_head_t *wq = glock_waitqueue(&gl->gl_name);
120
121         if (waitqueue_active(wq))
122                 __wake_up(wq, TASK_NORMAL, 1, &gl->gl_name);
123 }
124
125 static void gfs2_glock_dealloc(struct rcu_head *rcu)
126 {
127         struct gfs2_glock *gl = container_of(rcu, struct gfs2_glock, gl_rcu);
128
129         kfree(gl->gl_lksb.sb_lvbptr);
130         if (gl->gl_ops->go_flags & GLOF_ASPACE) {
131                 struct gfs2_glock_aspace *gla =
132                         container_of(gl, struct gfs2_glock_aspace, glock);
133                 kmem_cache_free(gfs2_glock_aspace_cachep, gla);
134         } else
135                 kmem_cache_free(gfs2_glock_cachep, gl);
136 }
137
138 /**
139  * glock_blocked_by_withdraw - determine if we can still use a glock
140  * @gl: the glock
141  *
142  * We need to allow some glocks to be enqueued, dequeued, promoted, and demoted
143  * when we're withdrawn. For example, to maintain metadata integrity, we should
144  * disallow the use of inode and rgrp glocks when withdrawn. Other glocks, like
145  * iopen or the transaction glocks may be safely used because none of their
146  * metadata goes through the journal. So in general, we should disallow all
147  * glocks that are journaled, and allow all the others. One exception is:
148  * we need to allow our active journal to be promoted and demoted so others
149  * may recover it and we can reacquire it when they're done.
150  */
151 static bool glock_blocked_by_withdraw(struct gfs2_glock *gl)
152 {
153         struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
154
155         if (likely(!gfs2_withdrawn(sdp)))
156                 return false;
157         if (gl->gl_ops->go_flags & GLOF_NONDISK)
158                 return false;
159         if (!sdp->sd_jdesc ||
160             gl->gl_name.ln_number == sdp->sd_jdesc->jd_no_addr)
161                 return false;
162         return true;
163 }
164
165 void gfs2_glock_free(struct gfs2_glock *gl)
166 {
167         struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
168
169         gfs2_glock_assert_withdraw(gl, atomic_read(&gl->gl_revokes) == 0);
170         rhashtable_remove_fast(&gl_hash_table, &gl->gl_node, ht_parms);
171         smp_mb();
172         wake_up_glock(gl);
173         call_rcu(&gl->gl_rcu, gfs2_glock_dealloc);
174         if (atomic_dec_and_test(&sdp->sd_glock_disposal))
175                 wake_up(&sdp->sd_glock_wait);
176 }
177
178 /**
179  * gfs2_glock_hold() - increment reference count on glock
180  * @gl: The glock to hold
181  *
182  */
183
184 void gfs2_glock_hold(struct gfs2_glock *gl)
185 {
186         GLOCK_BUG_ON(gl, __lockref_is_dead(&gl->gl_lockref));
187         lockref_get(&gl->gl_lockref);
188 }
189
190 /**
191  * demote_ok - Check to see if it's ok to unlock a glock
192  * @gl: the glock
193  *
194  * Returns: 1 if it's ok
195  */
196
197 static int demote_ok(const struct gfs2_glock *gl)
198 {
199         const struct gfs2_glock_operations *glops = gl->gl_ops;
200
201         if (gl->gl_state == LM_ST_UNLOCKED)
202                 return 0;
203         /*
204          * Note that demote_ok is used for the lru process of disposing of
205          * glocks. For this purpose, we don't care if the glock's holders
206          * have the HIF_MAY_DEMOTE flag set or not. If someone is using
207          * them, don't demote.
208          */
209         if (!list_empty(&gl->gl_holders))
210                 return 0;
211         if (glops->go_demote_ok)
212                 return glops->go_demote_ok(gl);
213         return 1;
214 }
215
216
217 void gfs2_glock_add_to_lru(struct gfs2_glock *gl)
218 {
219         if (!(gl->gl_ops->go_flags & GLOF_LRU))
220                 return;
221
222         spin_lock(&lru_lock);
223
224         list_move_tail(&gl->gl_lru, &lru_list);
225
226         if (!test_bit(GLF_LRU, &gl->gl_flags)) {
227                 set_bit(GLF_LRU, &gl->gl_flags);
228                 atomic_inc(&lru_count);
229         }
230
231         spin_unlock(&lru_lock);
232 }
233
234 static void gfs2_glock_remove_from_lru(struct gfs2_glock *gl)
235 {
236         if (!(gl->gl_ops->go_flags & GLOF_LRU))
237                 return;
238
239         spin_lock(&lru_lock);
240         if (test_bit(GLF_LRU, &gl->gl_flags)) {
241                 list_del_init(&gl->gl_lru);
242                 atomic_dec(&lru_count);
243                 clear_bit(GLF_LRU, &gl->gl_flags);
244         }
245         spin_unlock(&lru_lock);
246 }
247
248 /*
249  * Enqueue the glock on the work queue.  Passes one glock reference on to the
250  * work queue.
251  */
252 static void __gfs2_glock_queue_work(struct gfs2_glock *gl, unsigned long delay) {
253         if (!queue_delayed_work(glock_workqueue, &gl->gl_work, delay)) {
254                 /*
255                  * We are holding the lockref spinlock, and the work was still
256                  * queued above.  The queued work (glock_work_func) takes that
257                  * spinlock before dropping its glock reference(s), so it
258                  * cannot have dropped them in the meantime.
259                  */
260                 GLOCK_BUG_ON(gl, gl->gl_lockref.count < 2);
261                 gl->gl_lockref.count--;
262         }
263 }
264
265 static void gfs2_glock_queue_work(struct gfs2_glock *gl, unsigned long delay) {
266         spin_lock(&gl->gl_lockref.lock);
267         __gfs2_glock_queue_work(gl, delay);
268         spin_unlock(&gl->gl_lockref.lock);
269 }
270
271 static void __gfs2_glock_put(struct gfs2_glock *gl)
272 {
273         struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
274         struct address_space *mapping = gfs2_glock2aspace(gl);
275
276         lockref_mark_dead(&gl->gl_lockref);
277
278         gfs2_glock_remove_from_lru(gl);
279         spin_unlock(&gl->gl_lockref.lock);
280         GLOCK_BUG_ON(gl, !list_empty(&gl->gl_holders));
281         if (mapping) {
282                 truncate_inode_pages_final(mapping);
283                 if (!gfs2_withdrawn(sdp))
284                         GLOCK_BUG_ON(gl, !mapping_empty(mapping));
285         }
286         trace_gfs2_glock_put(gl);
287         sdp->sd_lockstruct.ls_ops->lm_put_lock(gl);
288 }
289
290 /*
291  * Cause the glock to be put in work queue context.
292  */
293 void gfs2_glock_queue_put(struct gfs2_glock *gl)
294 {
295         gfs2_glock_queue_work(gl, 0);
296 }
297
298 /**
299  * gfs2_glock_put() - Decrement reference count on glock
300  * @gl: The glock to put
301  *
302  */
303
304 void gfs2_glock_put(struct gfs2_glock *gl)
305 {
306         if (lockref_put_or_lock(&gl->gl_lockref))
307                 return;
308
309         __gfs2_glock_put(gl);
310 }
311
312 /**
313  * may_grant - check if it's ok to grant a new lock
314  * @gl: The glock
315  * @current_gh: One of the current holders of @gl
316  * @gh: The lock request which we wish to grant
317  *
318  * With our current compatibility rules, if a glock has one or more active
319  * holders (HIF_HOLDER flag set), any of those holders can be passed in as
320  * @current_gh; they are all the same as far as compatibility with the new @gh
321  * goes.
322  *
323  * Returns true if it's ok to grant the lock.
324  */
325
326 static inline bool may_grant(struct gfs2_glock *gl,
327                              struct gfs2_holder *current_gh,
328                              struct gfs2_holder *gh)
329 {
330         if (current_gh) {
331                 GLOCK_BUG_ON(gl, !test_bit(HIF_HOLDER, &current_gh->gh_iflags));
332
333                 switch(current_gh->gh_state) {
334                 case LM_ST_EXCLUSIVE:
335                         /*
336                          * Here we make a special exception to grant holders
337                          * who agree to share the EX lock with other holders
338                          * who also have the bit set. If the original holder
339                          * has the LM_FLAG_NODE_SCOPE bit set, we grant more
340                          * holders with the bit set.
341                          */
342                         return gh->gh_state == LM_ST_EXCLUSIVE &&
343                                (current_gh->gh_flags & LM_FLAG_NODE_SCOPE) &&
344                                (gh->gh_flags & LM_FLAG_NODE_SCOPE);
345
346                 case LM_ST_SHARED:
347                 case LM_ST_DEFERRED:
348                         return gh->gh_state == current_gh->gh_state;
349
350                 default:
351                         return false;
352                 }
353         }
354
355         if (gl->gl_state == gh->gh_state)
356                 return true;
357         if (gh->gh_flags & GL_EXACT)
358                 return false;
359         if (gl->gl_state == LM_ST_EXCLUSIVE) {
360                 return gh->gh_state == LM_ST_SHARED ||
361                        gh->gh_state == LM_ST_DEFERRED;
362         }
363         if (gh->gh_flags & LM_FLAG_ANY)
364                 return gl->gl_state != LM_ST_UNLOCKED;
365         return false;
366 }
367
368 static void gfs2_holder_wake(struct gfs2_holder *gh)
369 {
370         clear_bit(HIF_WAIT, &gh->gh_iflags);
371         smp_mb__after_atomic();
372         wake_up_bit(&gh->gh_iflags, HIF_WAIT);
373         if (gh->gh_flags & GL_ASYNC) {
374                 struct gfs2_sbd *sdp = gh->gh_gl->gl_name.ln_sbd;
375
376                 wake_up(&sdp->sd_async_glock_wait);
377         }
378 }
379
380 /**
381  * do_error - Something unexpected has happened during a lock request
382  * @gl: The glock
383  * @ret: The status from the DLM
384  */
385
386 static void do_error(struct gfs2_glock *gl, const int ret)
387 {
388         struct gfs2_holder *gh, *tmp;
389
390         list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) {
391                 if (!test_bit(HIF_WAIT, &gh->gh_iflags))
392                         continue;
393                 if (ret & LM_OUT_ERROR)
394                         gh->gh_error = -EIO;
395                 else if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))
396                         gh->gh_error = GLR_TRYFAILED;
397                 else
398                         continue;
399                 list_del_init(&gh->gh_list);
400                 trace_gfs2_glock_queue(gh, 0);
401                 gfs2_holder_wake(gh);
402         }
403 }
404
405 /**
406  * demote_incompat_holders - demote incompatible demoteable holders
407  * @gl: the glock we want to promote
408  * @current_gh: the newly promoted holder
409  *
410  * We're passing the newly promoted holder in @current_gh, but actually, any of
411  * the strong holders would do.
412  */
413 static void demote_incompat_holders(struct gfs2_glock *gl,
414                                     struct gfs2_holder *current_gh)
415 {
416         struct gfs2_holder *gh, *tmp;
417
418         /*
419          * Demote incompatible holders before we make ourselves eligible.
420          * (This holder may or may not allow auto-demoting, but we don't want
421          * to demote the new holder before it's even granted.)
422          */
423         list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) {
424                 /*
425                  * Since holders are at the front of the list, we stop when we
426                  * find the first non-holder.
427                  */
428                 if (!test_bit(HIF_HOLDER, &gh->gh_iflags))
429                         return;
430                 if (gh == current_gh)
431                         continue;
432                 if (test_bit(HIF_MAY_DEMOTE, &gh->gh_iflags) &&
433                     !may_grant(gl, current_gh, gh)) {
434                         /*
435                          * We should not recurse into do_promote because
436                          * __gfs2_glock_dq only calls handle_callback,
437                          * gfs2_glock_add_to_lru and __gfs2_glock_queue_work.
438                          */
439                         __gfs2_glock_dq(gh);
440                 }
441         }
442 }
443
444 /**
445  * find_first_holder - find the first "holder" gh
446  * @gl: the glock
447  */
448
449 static inline struct gfs2_holder *find_first_holder(const struct gfs2_glock *gl)
450 {
451         struct gfs2_holder *gh;
452
453         if (!list_empty(&gl->gl_holders)) {
454                 gh = list_first_entry(&gl->gl_holders, struct gfs2_holder,
455                                       gh_list);
456                 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
457                         return gh;
458         }
459         return NULL;
460 }
461
462 /**
463  * find_first_strong_holder - find the first non-demoteable holder
464  * @gl: the glock
465  *
466  * Find the first holder that doesn't have the HIF_MAY_DEMOTE flag set.
467  */
468 static inline struct gfs2_holder *
469 find_first_strong_holder(struct gfs2_glock *gl)
470 {
471         struct gfs2_holder *gh;
472
473         list_for_each_entry(gh, &gl->gl_holders, gh_list) {
474                 if (!test_bit(HIF_HOLDER, &gh->gh_iflags))
475                         return NULL;
476                 if (!test_bit(HIF_MAY_DEMOTE, &gh->gh_iflags))
477                         return gh;
478         }
479         return NULL;
480 }
481
482 /*
483  * gfs2_instantiate - Call the glops instantiate function
484  * @gh: The glock holder
485  *
486  * Returns: 0 if instantiate was successful, or error.
487  */
488 int gfs2_instantiate(struct gfs2_holder *gh)
489 {
490         struct gfs2_glock *gl = gh->gh_gl;
491         const struct gfs2_glock_operations *glops = gl->gl_ops;
492         int ret;
493
494 again:
495         if (!test_bit(GLF_INSTANTIATE_NEEDED, &gl->gl_flags))
496                 goto done;
497
498         /*
499          * Since we unlock the lockref lock, we set a flag to indicate
500          * instantiate is in progress.
501          */
502         if (test_and_set_bit(GLF_INSTANTIATE_IN_PROG, &gl->gl_flags)) {
503                 wait_on_bit(&gl->gl_flags, GLF_INSTANTIATE_IN_PROG,
504                             TASK_UNINTERRUPTIBLE);
505                 /*
506                  * Here we just waited for a different instantiate to finish.
507                  * But that may not have been successful, as when a process
508                  * locks an inode glock _before_ it has an actual inode to
509                  * instantiate into. So we check again. This process might
510                  * have an inode to instantiate, so might be successful.
511                  */
512                 goto again;
513         }
514
515         ret = glops->go_instantiate(gl);
516         if (!ret)
517                 clear_bit(GLF_INSTANTIATE_NEEDED, &gl->gl_flags);
518         clear_and_wake_up_bit(GLF_INSTANTIATE_IN_PROG, &gl->gl_flags);
519         if (ret)
520                 return ret;
521
522 done:
523         if (glops->go_held)
524                 return glops->go_held(gh);
525         return 0;
526 }
527
528 /**
529  * do_promote - promote as many requests as possible on the current queue
530  * @gl: The glock
531  * 
532  * Returns: 1 if there is a blocked holder at the head of the list
533  */
534
535 static int do_promote(struct gfs2_glock *gl)
536 {
537         struct gfs2_holder *gh, *tmp, *current_gh;
538         bool incompat_holders_demoted = false;
539
540         current_gh = find_first_strong_holder(gl);
541         list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) {
542                 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
543                         continue;
544                 if (!may_grant(gl, current_gh, gh)) {
545                         /*
546                          * If we get here, it means we may not grant this holder for
547                          * some reason. If this holder is the head of the list, it
548                          * means we have a blocked holder at the head, so return 1.
549                          */
550                         if (list_is_first(&gh->gh_list, &gl->gl_holders))
551                                 return 1;
552                         do_error(gl, 0);
553                         break;
554                 }
555                 set_bit(HIF_HOLDER, &gh->gh_iflags);
556                 trace_gfs2_promote(gh);
557                 gfs2_holder_wake(gh);
558                 if (!incompat_holders_demoted) {
559                         current_gh = gh;
560                         demote_incompat_holders(gl, current_gh);
561                         incompat_holders_demoted = true;
562                 }
563         }
564         return 0;
565 }
566
567 /**
568  * find_first_waiter - find the first gh that's waiting for the glock
569  * @gl: the glock
570  */
571
572 static inline struct gfs2_holder *find_first_waiter(const struct gfs2_glock *gl)
573 {
574         struct gfs2_holder *gh;
575
576         list_for_each_entry(gh, &gl->gl_holders, gh_list) {
577                 if (!test_bit(HIF_HOLDER, &gh->gh_iflags))
578                         return gh;
579         }
580         return NULL;
581 }
582
583 /**
584  * state_change - record that the glock is now in a different state
585  * @gl: the glock
586  * @new_state: the new state
587  */
588
589 static void state_change(struct gfs2_glock *gl, unsigned int new_state)
590 {
591         int held1, held2;
592
593         held1 = (gl->gl_state != LM_ST_UNLOCKED);
594         held2 = (new_state != LM_ST_UNLOCKED);
595
596         if (held1 != held2) {
597                 GLOCK_BUG_ON(gl, __lockref_is_dead(&gl->gl_lockref));
598                 if (held2)
599                         gl->gl_lockref.count++;
600                 else
601                         gl->gl_lockref.count--;
602         }
603         if (new_state != gl->gl_target)
604                 /* shorten our minimum hold time */
605                 gl->gl_hold_time = max(gl->gl_hold_time - GL_GLOCK_HOLD_DECR,
606                                        GL_GLOCK_MIN_HOLD);
607         gl->gl_state = new_state;
608         gl->gl_tchange = jiffies;
609 }
610
611 static void gfs2_set_demote(struct gfs2_glock *gl)
612 {
613         struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
614
615         set_bit(GLF_DEMOTE, &gl->gl_flags);
616         smp_mb();
617         wake_up(&sdp->sd_async_glock_wait);
618 }
619
620 static void gfs2_demote_wake(struct gfs2_glock *gl)
621 {
622         gl->gl_demote_state = LM_ST_EXCLUSIVE;
623         clear_bit(GLF_DEMOTE, &gl->gl_flags);
624         smp_mb__after_atomic();
625         wake_up_bit(&gl->gl_flags, GLF_DEMOTE);
626 }
627
628 /**
629  * finish_xmote - The DLM has replied to one of our lock requests
630  * @gl: The glock
631  * @ret: The status from the DLM
632  *
633  */
634
635 static void finish_xmote(struct gfs2_glock *gl, unsigned int ret)
636 {
637         const struct gfs2_glock_operations *glops = gl->gl_ops;
638         struct gfs2_holder *gh;
639         unsigned state = ret & LM_OUT_ST_MASK;
640
641         spin_lock(&gl->gl_lockref.lock);
642         trace_gfs2_glock_state_change(gl, state);
643         state_change(gl, state);
644         gh = find_first_waiter(gl);
645
646         /* Demote to UN request arrived during demote to SH or DF */
647         if (test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags) &&
648             state != LM_ST_UNLOCKED && gl->gl_demote_state == LM_ST_UNLOCKED)
649                 gl->gl_target = LM_ST_UNLOCKED;
650
651         /* Check for state != intended state */
652         if (unlikely(state != gl->gl_target)) {
653                 if (gh && (ret & LM_OUT_CANCELED))
654                         gfs2_holder_wake(gh);
655                 if (gh && !test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags)) {
656                         /* move to back of queue and try next entry */
657                         if (ret & LM_OUT_CANCELED) {
658                                 if ((gh->gh_flags & LM_FLAG_PRIORITY) == 0)
659                                         list_move_tail(&gh->gh_list, &gl->gl_holders);
660                                 gh = find_first_waiter(gl);
661                                 gl->gl_target = gh->gh_state;
662                                 goto retry;
663                         }
664                         /* Some error or failed "try lock" - report it */
665                         if ((ret & LM_OUT_ERROR) ||
666                             (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) {
667                                 gl->gl_target = gl->gl_state;
668                                 do_error(gl, ret);
669                                 goto out;
670                         }
671                 }
672                 switch(state) {
673                 /* Unlocked due to conversion deadlock, try again */
674                 case LM_ST_UNLOCKED:
675 retry:
676                         do_xmote(gl, gh, gl->gl_target);
677                         break;
678                 /* Conversion fails, unlock and try again */
679                 case LM_ST_SHARED:
680                 case LM_ST_DEFERRED:
681                         do_xmote(gl, gh, LM_ST_UNLOCKED);
682                         break;
683                 default: /* Everything else */
684                         fs_err(gl->gl_name.ln_sbd, "wanted %u got %u\n",
685                                gl->gl_target, state);
686                         GLOCK_BUG_ON(gl, 1);
687                 }
688                 spin_unlock(&gl->gl_lockref.lock);
689                 return;
690         }
691
692         /* Fast path - we got what we asked for */
693         if (test_and_clear_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags))
694                 gfs2_demote_wake(gl);
695         if (state != LM_ST_UNLOCKED) {
696                 if (glops->go_xmote_bh) {
697                         int rv;
698
699                         spin_unlock(&gl->gl_lockref.lock);
700                         rv = glops->go_xmote_bh(gl);
701                         spin_lock(&gl->gl_lockref.lock);
702                         if (rv) {
703                                 do_error(gl, rv);
704                                 goto out;
705                         }
706                 }
707                 do_promote(gl);
708         }
709 out:
710         clear_bit(GLF_LOCK, &gl->gl_flags);
711         spin_unlock(&gl->gl_lockref.lock);
712 }
713
714 static bool is_system_glock(struct gfs2_glock *gl)
715 {
716         struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
717         struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode);
718
719         if (gl == m_ip->i_gl)
720                 return true;
721         return false;
722 }
723
724 /**
725  * do_xmote - Calls the DLM to change the state of a lock
726  * @gl: The lock state
727  * @gh: The holder (only for promotes)
728  * @target: The target lock state
729  *
730  */
731
732 static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target)
733 __releases(&gl->gl_lockref.lock)
734 __acquires(&gl->gl_lockref.lock)
735 {
736         const struct gfs2_glock_operations *glops = gl->gl_ops;
737         struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
738         unsigned int lck_flags = (unsigned int)(gh ? gh->gh_flags : 0);
739         int ret;
740
741         if (target != LM_ST_UNLOCKED && glock_blocked_by_withdraw(gl) &&
742             gh && !(gh->gh_flags & LM_FLAG_NOEXP))
743                 return;
744         lck_flags &= (LM_FLAG_TRY | LM_FLAG_TRY_1CB | LM_FLAG_NOEXP |
745                       LM_FLAG_PRIORITY);
746         GLOCK_BUG_ON(gl, gl->gl_state == target);
747         GLOCK_BUG_ON(gl, gl->gl_state == gl->gl_target);
748         if ((target == LM_ST_UNLOCKED || target == LM_ST_DEFERRED) &&
749             glops->go_inval) {
750                 /*
751                  * If another process is already doing the invalidate, let that
752                  * finish first.  The glock state machine will get back to this
753                  * holder again later.
754                  */
755                 if (test_and_set_bit(GLF_INVALIDATE_IN_PROGRESS,
756                                      &gl->gl_flags))
757                         return;
758                 do_error(gl, 0); /* Fail queued try locks */
759         }
760         gl->gl_req = target;
761         set_bit(GLF_BLOCKING, &gl->gl_flags);
762         if ((gl->gl_req == LM_ST_UNLOCKED) ||
763             (gl->gl_state == LM_ST_EXCLUSIVE) ||
764             (lck_flags & (LM_FLAG_TRY|LM_FLAG_TRY_1CB)))
765                 clear_bit(GLF_BLOCKING, &gl->gl_flags);
766         spin_unlock(&gl->gl_lockref.lock);
767         if (glops->go_sync) {
768                 ret = glops->go_sync(gl);
769                 /* If we had a problem syncing (due to io errors or whatever,
770                  * we should not invalidate the metadata or tell dlm to
771                  * release the glock to other nodes.
772                  */
773                 if (ret) {
774                         if (cmpxchg(&sdp->sd_log_error, 0, ret)) {
775                                 fs_err(sdp, "Error %d syncing glock \n", ret);
776                                 gfs2_dump_glock(NULL, gl, true);
777                         }
778                         goto skip_inval;
779                 }
780         }
781         if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags)) {
782                 /*
783                  * The call to go_sync should have cleared out the ail list.
784                  * If there are still items, we have a problem. We ought to
785                  * withdraw, but we can't because the withdraw code also uses
786                  * glocks. Warn about the error, dump the glock, then fall
787                  * through and wait for logd to do the withdraw for us.
788                  */
789                 if ((atomic_read(&gl->gl_ail_count) != 0) &&
790                     (!cmpxchg(&sdp->sd_log_error, 0, -EIO))) {
791                         gfs2_glock_assert_warn(gl,
792                                                !atomic_read(&gl->gl_ail_count));
793                         gfs2_dump_glock(NULL, gl, true);
794                 }
795                 glops->go_inval(gl, target == LM_ST_DEFERRED ? 0 : DIO_METADATA);
796                 clear_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags);
797         }
798
799 skip_inval:
800         gfs2_glock_hold(gl);
801         /*
802          * Check for an error encountered since we called go_sync and go_inval.
803          * If so, we can't withdraw from the glock code because the withdraw
804          * code itself uses glocks (see function signal_our_withdraw) to
805          * change the mount to read-only. Most importantly, we must not call
806          * dlm to unlock the glock until the journal is in a known good state
807          * (after journal replay) otherwise other nodes may use the object
808          * (rgrp or dinode) and then later, journal replay will corrupt the
809          * file system. The best we can do here is wait for the logd daemon
810          * to see sd_log_error and withdraw, and in the meantime, requeue the
811          * work for later.
812          *
813          * We make a special exception for some system glocks, such as the
814          * system statfs inode glock, which needs to be granted before the
815          * gfs2_quotad daemon can exit, and that exit needs to finish before
816          * we can unmount the withdrawn file system.
817          *
818          * However, if we're just unlocking the lock (say, for unmount, when
819          * gfs2_gl_hash_clear calls clear_glock) and recovery is complete
820          * then it's okay to tell dlm to unlock it.
821          */
822         if (unlikely(sdp->sd_log_error && !gfs2_withdrawn(sdp)))
823                 gfs2_withdraw_delayed(sdp);
824         if (glock_blocked_by_withdraw(gl) &&
825             (target != LM_ST_UNLOCKED ||
826              test_bit(SDF_WITHDRAW_RECOVERY, &sdp->sd_flags))) {
827                 if (!is_system_glock(gl)) {
828                         gfs2_glock_queue_work(gl, GL_GLOCK_DFT_HOLD);
829                         goto out;
830                 } else {
831                         clear_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags);
832                 }
833         }
834
835         if (sdp->sd_lockstruct.ls_ops->lm_lock) {
836                 /* lock_dlm */
837                 ret = sdp->sd_lockstruct.ls_ops->lm_lock(gl, target, lck_flags);
838                 if (ret == -EINVAL && gl->gl_target == LM_ST_UNLOCKED &&
839                     target == LM_ST_UNLOCKED &&
840                     test_bit(SDF_SKIP_DLM_UNLOCK, &sdp->sd_flags)) {
841                         finish_xmote(gl, target);
842                         gfs2_glock_queue_work(gl, 0);
843                 } else if (ret) {
844                         fs_err(sdp, "lm_lock ret %d\n", ret);
845                         GLOCK_BUG_ON(gl, !gfs2_withdrawn(sdp));
846                 }
847         } else { /* lock_nolock */
848                 finish_xmote(gl, target);
849                 gfs2_glock_queue_work(gl, 0);
850         }
851 out:
852         spin_lock(&gl->gl_lockref.lock);
853 }
854
855 /**
856  * run_queue - do all outstanding tasks related to a glock
857  * @gl: The glock in question
858  * @nonblock: True if we must not block in run_queue
859  *
860  */
861
862 static void run_queue(struct gfs2_glock *gl, const int nonblock)
863 __releases(&gl->gl_lockref.lock)
864 __acquires(&gl->gl_lockref.lock)
865 {
866         struct gfs2_holder *gh = NULL;
867
868         if (test_and_set_bit(GLF_LOCK, &gl->gl_flags))
869                 return;
870
871         GLOCK_BUG_ON(gl, test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags));
872
873         if (test_bit(GLF_DEMOTE, &gl->gl_flags) &&
874             gl->gl_demote_state != gl->gl_state) {
875                 if (find_first_holder(gl))
876                         goto out_unlock;
877                 if (nonblock)
878                         goto out_sched;
879                 set_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags);
880                 GLOCK_BUG_ON(gl, gl->gl_demote_state == LM_ST_EXCLUSIVE);
881                 gl->gl_target = gl->gl_demote_state;
882         } else {
883                 if (test_bit(GLF_DEMOTE, &gl->gl_flags))
884                         gfs2_demote_wake(gl);
885                 if (do_promote(gl) == 0)
886                         goto out_unlock;
887                 gh = find_first_waiter(gl);
888                 gl->gl_target = gh->gh_state;
889                 if (!(gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)))
890                         do_error(gl, 0); /* Fail queued try locks */
891         }
892         do_xmote(gl, gh, gl->gl_target);
893         return;
894
895 out_sched:
896         clear_bit(GLF_LOCK, &gl->gl_flags);
897         smp_mb__after_atomic();
898         gl->gl_lockref.count++;
899         __gfs2_glock_queue_work(gl, 0);
900         return;
901
902 out_unlock:
903         clear_bit(GLF_LOCK, &gl->gl_flags);
904         smp_mb__after_atomic();
905         return;
906 }
907
908 void gfs2_inode_remember_delete(struct gfs2_glock *gl, u64 generation)
909 {
910         struct gfs2_inode_lvb *ri = (void *)gl->gl_lksb.sb_lvbptr;
911
912         if (ri->ri_magic == 0)
913                 ri->ri_magic = cpu_to_be32(GFS2_MAGIC);
914         if (ri->ri_magic == cpu_to_be32(GFS2_MAGIC))
915                 ri->ri_generation_deleted = cpu_to_be64(generation);
916 }
917
918 bool gfs2_inode_already_deleted(struct gfs2_glock *gl, u64 generation)
919 {
920         struct gfs2_inode_lvb *ri = (void *)gl->gl_lksb.sb_lvbptr;
921
922         if (ri->ri_magic != cpu_to_be32(GFS2_MAGIC))
923                 return false;
924         return generation <= be64_to_cpu(ri->ri_generation_deleted);
925 }
926
927 static void gfs2_glock_poke(struct gfs2_glock *gl)
928 {
929         int flags = LM_FLAG_TRY_1CB | LM_FLAG_ANY | GL_SKIP;
930         struct gfs2_holder gh;
931         int error;
932
933         __gfs2_holder_init(gl, LM_ST_SHARED, flags, &gh, _RET_IP_);
934         error = gfs2_glock_nq(&gh);
935         if (!error)
936                 gfs2_glock_dq(&gh);
937         gfs2_holder_uninit(&gh);
938 }
939
940 static bool gfs2_try_evict(struct gfs2_glock *gl)
941 {
942         struct gfs2_inode *ip;
943         bool evicted = false;
944
945         /*
946          * If there is contention on the iopen glock and we have an inode, try
947          * to grab and release the inode so that it can be evicted.  This will
948          * allow the remote node to go ahead and delete the inode without us
949          * having to do it, which will avoid rgrp glock thrashing.
950          *
951          * The remote node is likely still holding the corresponding inode
952          * glock, so it will run before we get to verify that the delete has
953          * happened below.
954          */
955         spin_lock(&gl->gl_lockref.lock);
956         ip = gl->gl_object;
957         if (ip && !igrab(&ip->i_inode))
958                 ip = NULL;
959         spin_unlock(&gl->gl_lockref.lock);
960         if (ip) {
961                 struct gfs2_glock *inode_gl = NULL;
962
963                 gl->gl_no_formal_ino = ip->i_no_formal_ino;
964                 set_bit(GIF_DEFERRED_DELETE, &ip->i_flags);
965                 d_prune_aliases(&ip->i_inode);
966                 iput(&ip->i_inode);
967
968                 /* If the inode was evicted, gl->gl_object will now be NULL. */
969                 spin_lock(&gl->gl_lockref.lock);
970                 ip = gl->gl_object;
971                 if (ip) {
972                         inode_gl = ip->i_gl;
973                         lockref_get(&inode_gl->gl_lockref);
974                         clear_bit(GIF_DEFERRED_DELETE, &ip->i_flags);
975                 }
976                 spin_unlock(&gl->gl_lockref.lock);
977                 if (inode_gl) {
978                         gfs2_glock_poke(inode_gl);
979                         gfs2_glock_put(inode_gl);
980                 }
981                 evicted = !ip;
982         }
983         return evicted;
984 }
985
986 static void delete_work_func(struct work_struct *work)
987 {
988         struct delayed_work *dwork = to_delayed_work(work);
989         struct gfs2_glock *gl = container_of(dwork, struct gfs2_glock, gl_delete);
990         struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
991         struct inode *inode;
992         u64 no_addr = gl->gl_name.ln_number;
993
994         spin_lock(&gl->gl_lockref.lock);
995         clear_bit(GLF_PENDING_DELETE, &gl->gl_flags);
996         spin_unlock(&gl->gl_lockref.lock);
997
998         if (test_bit(GLF_DEMOTE, &gl->gl_flags)) {
999                 /*
1000                  * If we can evict the inode, give the remote node trying to
1001                  * delete the inode some time before verifying that the delete
1002                  * has happened.  Otherwise, if we cause contention on the inode glock
1003                  * immediately, the remote node will think that we still have
1004                  * the inode in use, and so it will give up waiting.
1005                  *
1006                  * If we can't evict the inode, signal to the remote node that
1007                  * the inode is still in use.  We'll later try to delete the
1008                  * inode locally in gfs2_evict_inode.
1009                  *
1010                  * FIXME: We only need to verify that the remote node has
1011                  * deleted the inode because nodes before this remote delete
1012                  * rework won't cooperate.  At a later time, when we no longer
1013                  * care about compatibility with such nodes, we can skip this
1014                  * step entirely.
1015                  */
1016                 if (gfs2_try_evict(gl)) {
1017                         if (gfs2_queue_delete_work(gl, 5 * HZ))
1018                                 return;
1019                 }
1020                 goto out;
1021         }
1022
1023         inode = gfs2_lookup_by_inum(sdp, no_addr, gl->gl_no_formal_ino,
1024                                     GFS2_BLKST_UNLINKED);
1025         if (!IS_ERR_OR_NULL(inode)) {
1026                 d_prune_aliases(inode);
1027                 iput(inode);
1028         }
1029 out:
1030         gfs2_glock_put(gl);
1031 }
1032
1033 static void glock_work_func(struct work_struct *work)
1034 {
1035         unsigned long delay = 0;
1036         struct gfs2_glock *gl = container_of(work, struct gfs2_glock, gl_work.work);
1037         unsigned int drop_refs = 1;
1038
1039         if (test_and_clear_bit(GLF_REPLY_PENDING, &gl->gl_flags)) {
1040                 finish_xmote(gl, gl->gl_reply);
1041                 drop_refs++;
1042         }
1043         spin_lock(&gl->gl_lockref.lock);
1044         if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
1045             gl->gl_state != LM_ST_UNLOCKED &&
1046             gl->gl_demote_state != LM_ST_EXCLUSIVE) {
1047                 unsigned long holdtime, now = jiffies;
1048
1049                 holdtime = gl->gl_tchange + gl->gl_hold_time;
1050                 if (time_before(now, holdtime))
1051                         delay = holdtime - now;
1052
1053                 if (!delay) {
1054                         clear_bit(GLF_PENDING_DEMOTE, &gl->gl_flags);
1055                         gfs2_set_demote(gl);
1056                 }
1057         }
1058         run_queue(gl, 0);
1059         if (delay) {
1060                 /* Keep one glock reference for the work we requeue. */
1061                 drop_refs--;
1062                 if (gl->gl_name.ln_type != LM_TYPE_INODE)
1063                         delay = 0;
1064                 __gfs2_glock_queue_work(gl, delay);
1065         }
1066
1067         /*
1068          * Drop the remaining glock references manually here. (Mind that
1069          * __gfs2_glock_queue_work depends on the lockref spinlock begin held
1070          * here as well.)
1071          */
1072         gl->gl_lockref.count -= drop_refs;
1073         if (!gl->gl_lockref.count) {
1074                 __gfs2_glock_put(gl);
1075                 return;
1076         }
1077         spin_unlock(&gl->gl_lockref.lock);
1078 }
1079
1080 static struct gfs2_glock *find_insert_glock(struct lm_lockname *name,
1081                                             struct gfs2_glock *new)
1082 {
1083         struct wait_glock_queue wait;
1084         wait_queue_head_t *wq = glock_waitqueue(name);
1085         struct gfs2_glock *gl;
1086
1087         wait.name = name;
1088         init_wait(&wait.wait);
1089         wait.wait.func = glock_wake_function;
1090
1091 again:
1092         prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
1093         rcu_read_lock();
1094         if (new) {
1095                 gl = rhashtable_lookup_get_insert_fast(&gl_hash_table,
1096                         &new->gl_node, ht_parms);
1097                 if (IS_ERR(gl))
1098                         goto out;
1099         } else {
1100                 gl = rhashtable_lookup_fast(&gl_hash_table,
1101                         name, ht_parms);
1102         }
1103         if (gl && !lockref_get_not_dead(&gl->gl_lockref)) {
1104                 rcu_read_unlock();
1105                 schedule();
1106                 goto again;
1107         }
1108 out:
1109         rcu_read_unlock();
1110         finish_wait(wq, &wait.wait);
1111         return gl;
1112 }
1113
1114 /**
1115  * gfs2_glock_get() - Get a glock, or create one if one doesn't exist
1116  * @sdp: The GFS2 superblock
1117  * @number: the lock number
1118  * @glops: The glock_operations to use
1119  * @create: If 0, don't create the glock if it doesn't exist
1120  * @glp: the glock is returned here
1121  *
1122  * This does not lock a glock, just finds/creates structures for one.
1123  *
1124  * Returns: errno
1125  */
1126
1127 int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number,
1128                    const struct gfs2_glock_operations *glops, int create,
1129                    struct gfs2_glock **glp)
1130 {
1131         struct super_block *s = sdp->sd_vfs;
1132         struct lm_lockname name = { .ln_number = number,
1133                                     .ln_type = glops->go_type,
1134                                     .ln_sbd = sdp };
1135         struct gfs2_glock *gl, *tmp;
1136         struct address_space *mapping;
1137         int ret = 0;
1138
1139         gl = find_insert_glock(&name, NULL);
1140         if (gl) {
1141                 *glp = gl;
1142                 return 0;
1143         }
1144         if (!create)
1145                 return -ENOENT;
1146
1147         if (glops->go_flags & GLOF_ASPACE) {
1148                 struct gfs2_glock_aspace *gla =
1149                         kmem_cache_alloc(gfs2_glock_aspace_cachep, GFP_NOFS);
1150                 if (!gla)
1151                         return -ENOMEM;
1152                 gl = &gla->glock;
1153         } else {
1154                 gl = kmem_cache_alloc(gfs2_glock_cachep, GFP_NOFS);
1155                 if (!gl)
1156                         return -ENOMEM;
1157         }
1158         memset(&gl->gl_lksb, 0, sizeof(struct dlm_lksb));
1159         gl->gl_ops = glops;
1160
1161         if (glops->go_flags & GLOF_LVB) {
1162                 gl->gl_lksb.sb_lvbptr = kzalloc(GDLM_LVB_SIZE, GFP_NOFS);
1163                 if (!gl->gl_lksb.sb_lvbptr) {
1164                         gfs2_glock_dealloc(&gl->gl_rcu);
1165                         return -ENOMEM;
1166                 }
1167         }
1168
1169         atomic_inc(&sdp->sd_glock_disposal);
1170         gl->gl_node.next = NULL;
1171         gl->gl_flags = glops->go_instantiate ? BIT(GLF_INSTANTIATE_NEEDED) : 0;
1172         gl->gl_name = name;
1173         lockdep_set_subclass(&gl->gl_lockref.lock, glops->go_subclass);
1174         gl->gl_lockref.count = 1;
1175         gl->gl_state = LM_ST_UNLOCKED;
1176         gl->gl_target = LM_ST_UNLOCKED;
1177         gl->gl_demote_state = LM_ST_EXCLUSIVE;
1178         gl->gl_dstamp = 0;
1179         preempt_disable();
1180         /* We use the global stats to estimate the initial per-glock stats */
1181         gl->gl_stats = this_cpu_ptr(sdp->sd_lkstats)->lkstats[glops->go_type];
1182         preempt_enable();
1183         gl->gl_stats.stats[GFS2_LKS_DCOUNT] = 0;
1184         gl->gl_stats.stats[GFS2_LKS_QCOUNT] = 0;
1185         gl->gl_tchange = jiffies;
1186         gl->gl_object = NULL;
1187         gl->gl_hold_time = GL_GLOCK_DFT_HOLD;
1188         INIT_DELAYED_WORK(&gl->gl_work, glock_work_func);
1189         if (gl->gl_name.ln_type == LM_TYPE_IOPEN)
1190                 INIT_DELAYED_WORK(&gl->gl_delete, delete_work_func);
1191
1192         mapping = gfs2_glock2aspace(gl);
1193         if (mapping) {
1194                 mapping->a_ops = &gfs2_meta_aops;
1195                 mapping->host = s->s_bdev->bd_inode;
1196                 mapping->flags = 0;
1197                 mapping_set_gfp_mask(mapping, GFP_NOFS);
1198                 mapping->private_data = NULL;
1199                 mapping->writeback_index = 0;
1200         }
1201
1202         tmp = find_insert_glock(&name, gl);
1203         if (!tmp) {
1204                 *glp = gl;
1205                 goto out;
1206         }
1207         if (IS_ERR(tmp)) {
1208                 ret = PTR_ERR(tmp);
1209                 goto out_free;
1210         }
1211         *glp = tmp;
1212
1213 out_free:
1214         gfs2_glock_dealloc(&gl->gl_rcu);
1215         if (atomic_dec_and_test(&sdp->sd_glock_disposal))
1216                 wake_up(&sdp->sd_glock_wait);
1217
1218 out:
1219         return ret;
1220 }
1221
1222 /**
1223  * __gfs2_holder_init - initialize a struct gfs2_holder in the default way
1224  * @gl: the glock
1225  * @state: the state we're requesting
1226  * @flags: the modifier flags
1227  * @gh: the holder structure
1228  *
1229  */
1230
1231 void __gfs2_holder_init(struct gfs2_glock *gl, unsigned int state, u16 flags,
1232                         struct gfs2_holder *gh, unsigned long ip)
1233 {
1234         INIT_LIST_HEAD(&gh->gh_list);
1235         gh->gh_gl = gl;
1236         gh->gh_ip = ip;
1237         gh->gh_owner_pid = get_pid(task_pid(current));
1238         gh->gh_state = state;
1239         gh->gh_flags = flags;
1240         gh->gh_iflags = 0;
1241         gfs2_glock_hold(gl);
1242 }
1243
1244 /**
1245  * gfs2_holder_reinit - reinitialize a struct gfs2_holder so we can requeue it
1246  * @state: the state we're requesting
1247  * @flags: the modifier flags
1248  * @gh: the holder structure
1249  *
1250  * Don't mess with the glock.
1251  *
1252  */
1253
1254 void gfs2_holder_reinit(unsigned int state, u16 flags, struct gfs2_holder *gh)
1255 {
1256         gh->gh_state = state;
1257         gh->gh_flags = flags;
1258         gh->gh_iflags = 0;
1259         gh->gh_ip = _RET_IP_;
1260         put_pid(gh->gh_owner_pid);
1261         gh->gh_owner_pid = get_pid(task_pid(current));
1262 }
1263
1264 /**
1265  * gfs2_holder_uninit - uninitialize a holder structure (drop glock reference)
1266  * @gh: the holder structure
1267  *
1268  */
1269
1270 void gfs2_holder_uninit(struct gfs2_holder *gh)
1271 {
1272         put_pid(gh->gh_owner_pid);
1273         gfs2_glock_put(gh->gh_gl);
1274         gfs2_holder_mark_uninitialized(gh);
1275         gh->gh_ip = 0;
1276 }
1277
1278 static void gfs2_glock_update_hold_time(struct gfs2_glock *gl,
1279                                         unsigned long start_time)
1280 {
1281         /* Have we waited longer that a second? */
1282         if (time_after(jiffies, start_time + HZ)) {
1283                 /* Lengthen the minimum hold time. */
1284                 gl->gl_hold_time = min(gl->gl_hold_time + GL_GLOCK_HOLD_INCR,
1285                                        GL_GLOCK_MAX_HOLD);
1286         }
1287 }
1288
1289 /**
1290  * gfs2_glock_holder_ready - holder is ready and its error code can be collected
1291  * @gh: the glock holder
1292  *
1293  * Called when a glock holder no longer needs to be waited for because it is
1294  * now either held (HIF_HOLDER set; gh_error == 0), or acquiring the lock has
1295  * failed (gh_error != 0).
1296  */
1297
1298 int gfs2_glock_holder_ready(struct gfs2_holder *gh)
1299 {
1300         if (gh->gh_error || (gh->gh_flags & GL_SKIP))
1301                 return gh->gh_error;
1302         gh->gh_error = gfs2_instantiate(gh);
1303         if (gh->gh_error)
1304                 gfs2_glock_dq(gh);
1305         return gh->gh_error;
1306 }
1307
1308 /**
1309  * gfs2_glock_wait - wait on a glock acquisition
1310  * @gh: the glock holder
1311  *
1312  * Returns: 0 on success
1313  */
1314
1315 int gfs2_glock_wait(struct gfs2_holder *gh)
1316 {
1317         unsigned long start_time = jiffies;
1318
1319         might_sleep();
1320         wait_on_bit(&gh->gh_iflags, HIF_WAIT, TASK_UNINTERRUPTIBLE);
1321         gfs2_glock_update_hold_time(gh->gh_gl, start_time);
1322         return gfs2_glock_holder_ready(gh);
1323 }
1324
1325 static int glocks_pending(unsigned int num_gh, struct gfs2_holder *ghs)
1326 {
1327         int i;
1328
1329         for (i = 0; i < num_gh; i++)
1330                 if (test_bit(HIF_WAIT, &ghs[i].gh_iflags))
1331                         return 1;
1332         return 0;
1333 }
1334
1335 /**
1336  * gfs2_glock_async_wait - wait on multiple asynchronous glock acquisitions
1337  * @num_gh: the number of holders in the array
1338  * @ghs: the glock holder array
1339  *
1340  * Returns: 0 on success, meaning all glocks have been granted and are held.
1341  *          -ESTALE if the request timed out, meaning all glocks were released,
1342  *          and the caller should retry the operation.
1343  */
1344
1345 int gfs2_glock_async_wait(unsigned int num_gh, struct gfs2_holder *ghs)
1346 {
1347         struct gfs2_sbd *sdp = ghs[0].gh_gl->gl_name.ln_sbd;
1348         int i, ret = 0, timeout = 0;
1349         unsigned long start_time = jiffies;
1350
1351         might_sleep();
1352         /*
1353          * Total up the (minimum hold time * 2) of all glocks and use that to
1354          * determine the max amount of time we should wait.
1355          */
1356         for (i = 0; i < num_gh; i++)
1357                 timeout += ghs[i].gh_gl->gl_hold_time << 1;
1358
1359         if (!wait_event_timeout(sdp->sd_async_glock_wait,
1360                                 !glocks_pending(num_gh, ghs), timeout)) {
1361                 ret = -ESTALE; /* request timed out. */
1362                 goto out;
1363         }
1364
1365         for (i = 0; i < num_gh; i++) {
1366                 struct gfs2_holder *gh = &ghs[i];
1367                 int ret2;
1368
1369                 if (test_bit(HIF_HOLDER, &gh->gh_iflags)) {
1370                         gfs2_glock_update_hold_time(gh->gh_gl,
1371                                                     start_time);
1372                 }
1373                 ret2 = gfs2_glock_holder_ready(gh);
1374                 if (!ret)
1375                         ret = ret2;
1376         }
1377
1378 out:
1379         if (ret) {
1380                 for (i = 0; i < num_gh; i++) {
1381                         struct gfs2_holder *gh = &ghs[i];
1382
1383                         gfs2_glock_dq(gh);
1384                 }
1385         }
1386         return ret;
1387 }
1388
1389 /**
1390  * handle_callback - process a demote request
1391  * @gl: the glock
1392  * @state: the state the caller wants us to change to
1393  * @delay: zero to demote immediately; otherwise pending demote
1394  * @remote: true if this came from a different cluster node
1395  *
1396  * There are only two requests that we are going to see in actual
1397  * practise: LM_ST_SHARED and LM_ST_UNLOCKED
1398  */
1399
1400 static void handle_callback(struct gfs2_glock *gl, unsigned int state,
1401                             unsigned long delay, bool remote)
1402 {
1403         if (delay)
1404                 set_bit(GLF_PENDING_DEMOTE, &gl->gl_flags);
1405         else
1406                 gfs2_set_demote(gl);
1407         if (gl->gl_demote_state == LM_ST_EXCLUSIVE) {
1408                 gl->gl_demote_state = state;
1409                 gl->gl_demote_time = jiffies;
1410         } else if (gl->gl_demote_state != LM_ST_UNLOCKED &&
1411                         gl->gl_demote_state != state) {
1412                 gl->gl_demote_state = LM_ST_UNLOCKED;
1413         }
1414         if (gl->gl_ops->go_callback)
1415                 gl->gl_ops->go_callback(gl, remote);
1416         trace_gfs2_demote_rq(gl, remote);
1417 }
1418
1419 void gfs2_print_dbg(struct seq_file *seq, const char *fmt, ...)
1420 {
1421         struct va_format vaf;
1422         va_list args;
1423
1424         va_start(args, fmt);
1425
1426         if (seq) {
1427                 seq_vprintf(seq, fmt, args);
1428         } else {
1429                 vaf.fmt = fmt;
1430                 vaf.va = &args;
1431
1432                 pr_err("%pV", &vaf);
1433         }
1434
1435         va_end(args);
1436 }
1437
1438 /**
1439  * add_to_queue - Add a holder to the wait queue (but look for recursion)
1440  * @gh: the holder structure to add
1441  *
1442  * Eventually we should move the recursive locking trap to a
1443  * debugging option or something like that. This is the fast
1444  * path and needs to have the minimum number of distractions.
1445  * 
1446  */
1447
1448 static inline void add_to_queue(struct gfs2_holder *gh)
1449 __releases(&gl->gl_lockref.lock)
1450 __acquires(&gl->gl_lockref.lock)
1451 {
1452         struct gfs2_glock *gl = gh->gh_gl;
1453         struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
1454         struct list_head *insert_pt = NULL;
1455         struct gfs2_holder *gh2;
1456         int try_futile = 0;
1457
1458         GLOCK_BUG_ON(gl, gh->gh_owner_pid == NULL);
1459         if (test_and_set_bit(HIF_WAIT, &gh->gh_iflags))
1460                 GLOCK_BUG_ON(gl, true);
1461
1462         if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) {
1463                 if (test_bit(GLF_LOCK, &gl->gl_flags)) {
1464                         struct gfs2_holder *current_gh;
1465
1466                         current_gh = find_first_strong_holder(gl);
1467                         try_futile = !may_grant(gl, current_gh, gh);
1468                 }
1469                 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags))
1470                         goto fail;
1471         }
1472
1473         list_for_each_entry(gh2, &gl->gl_holders, gh_list) {
1474                 if (unlikely(gh2->gh_owner_pid == gh->gh_owner_pid &&
1475                     (gh->gh_gl->gl_ops->go_type != LM_TYPE_FLOCK) &&
1476                     !test_bit(HIF_MAY_DEMOTE, &gh2->gh_iflags)))
1477                         goto trap_recursive;
1478                 if (try_futile &&
1479                     !(gh2->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) {
1480 fail:
1481                         gh->gh_error = GLR_TRYFAILED;
1482                         gfs2_holder_wake(gh);
1483                         return;
1484                 }
1485                 if (test_bit(HIF_HOLDER, &gh2->gh_iflags))
1486                         continue;
1487                 if (unlikely((gh->gh_flags & LM_FLAG_PRIORITY) && !insert_pt))
1488                         insert_pt = &gh2->gh_list;
1489         }
1490         trace_gfs2_glock_queue(gh, 1);
1491         gfs2_glstats_inc(gl, GFS2_LKS_QCOUNT);
1492         gfs2_sbstats_inc(gl, GFS2_LKS_QCOUNT);
1493         if (likely(insert_pt == NULL)) {
1494                 list_add_tail(&gh->gh_list, &gl->gl_holders);
1495                 if (unlikely(gh->gh_flags & LM_FLAG_PRIORITY))
1496                         goto do_cancel;
1497                 return;
1498         }
1499         list_add_tail(&gh->gh_list, insert_pt);
1500 do_cancel:
1501         gh = list_first_entry(&gl->gl_holders, struct gfs2_holder, gh_list);
1502         if (!(gh->gh_flags & LM_FLAG_PRIORITY)) {
1503                 spin_unlock(&gl->gl_lockref.lock);
1504                 if (sdp->sd_lockstruct.ls_ops->lm_cancel)
1505                         sdp->sd_lockstruct.ls_ops->lm_cancel(gl);
1506                 spin_lock(&gl->gl_lockref.lock);
1507         }
1508         return;
1509
1510 trap_recursive:
1511         fs_err(sdp, "original: %pSR\n", (void *)gh2->gh_ip);
1512         fs_err(sdp, "pid: %d\n", pid_nr(gh2->gh_owner_pid));
1513         fs_err(sdp, "lock type: %d req lock state : %d\n",
1514                gh2->gh_gl->gl_name.ln_type, gh2->gh_state);
1515         fs_err(sdp, "new: %pSR\n", (void *)gh->gh_ip);
1516         fs_err(sdp, "pid: %d\n", pid_nr(gh->gh_owner_pid));
1517         fs_err(sdp, "lock type: %d req lock state : %d\n",
1518                gh->gh_gl->gl_name.ln_type, gh->gh_state);
1519         gfs2_dump_glock(NULL, gl, true);
1520         BUG();
1521 }
1522
1523 /**
1524  * gfs2_glock_nq - enqueue a struct gfs2_holder onto a glock (acquire a glock)
1525  * @gh: the holder structure
1526  *
1527  * if (gh->gh_flags & GL_ASYNC), this never returns an error
1528  *
1529  * Returns: 0, GLR_TRYFAILED, or errno on failure
1530  */
1531
1532 int gfs2_glock_nq(struct gfs2_holder *gh)
1533 {
1534         struct gfs2_glock *gl = gh->gh_gl;
1535         int error = 0;
1536
1537         if (glock_blocked_by_withdraw(gl) && !(gh->gh_flags & LM_FLAG_NOEXP))
1538                 return -EIO;
1539
1540         if (test_bit(GLF_LRU, &gl->gl_flags))
1541                 gfs2_glock_remove_from_lru(gl);
1542
1543         gh->gh_error = 0;
1544         spin_lock(&gl->gl_lockref.lock);
1545         add_to_queue(gh);
1546         if (unlikely((LM_FLAG_NOEXP & gh->gh_flags) &&
1547                      test_and_clear_bit(GLF_FROZEN, &gl->gl_flags))) {
1548                 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
1549                 gl->gl_lockref.count++;
1550                 __gfs2_glock_queue_work(gl, 0);
1551         }
1552         run_queue(gl, 1);
1553         spin_unlock(&gl->gl_lockref.lock);
1554
1555         if (!(gh->gh_flags & GL_ASYNC))
1556                 error = gfs2_glock_wait(gh);
1557
1558         return error;
1559 }
1560
1561 /**
1562  * gfs2_glock_poll - poll to see if an async request has been completed
1563  * @gh: the holder
1564  *
1565  * Returns: 1 if the request is ready to be gfs2_glock_wait()ed on
1566  */
1567
1568 int gfs2_glock_poll(struct gfs2_holder *gh)
1569 {
1570         return test_bit(HIF_WAIT, &gh->gh_iflags) ? 0 : 1;
1571 }
1572
1573 static inline bool needs_demote(struct gfs2_glock *gl)
1574 {
1575         return (test_bit(GLF_DEMOTE, &gl->gl_flags) ||
1576                 test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags));
1577 }
1578
1579 static void __gfs2_glock_dq(struct gfs2_holder *gh)
1580 {
1581         struct gfs2_glock *gl = gh->gh_gl;
1582         struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
1583         unsigned delay = 0;
1584         int fast_path = 0;
1585
1586         /*
1587          * This while loop is similar to function demote_incompat_holders:
1588          * If the glock is due to be demoted (which may be from another node
1589          * or even if this holder is GL_NOCACHE), the weak holders are
1590          * demoted as well, allowing the glock to be demoted.
1591          */
1592         while (gh) {
1593                 /*
1594                  * If we're in the process of file system withdraw, we cannot
1595                  * just dequeue any glocks until our journal is recovered, lest
1596                  * we introduce file system corruption. We need two exceptions
1597                  * to this rule: We need to allow unlocking of nondisk glocks
1598                  * and the glock for our own journal that needs recovery.
1599                  */
1600                 if (test_bit(SDF_WITHDRAW_RECOVERY, &sdp->sd_flags) &&
1601                     glock_blocked_by_withdraw(gl) &&
1602                     gh->gh_gl != sdp->sd_jinode_gl) {
1603                         sdp->sd_glock_dqs_held++;
1604                         spin_unlock(&gl->gl_lockref.lock);
1605                         might_sleep();
1606                         wait_on_bit(&sdp->sd_flags, SDF_WITHDRAW_RECOVERY,
1607                                     TASK_UNINTERRUPTIBLE);
1608                         spin_lock(&gl->gl_lockref.lock);
1609                 }
1610
1611                 /*
1612                  * This holder should not be cached, so mark it for demote.
1613                  * Note: this should be done before the check for needs_demote
1614                  * below.
1615                  */
1616                 if (gh->gh_flags & GL_NOCACHE)
1617                         handle_callback(gl, LM_ST_UNLOCKED, 0, false);
1618
1619                 list_del_init(&gh->gh_list);
1620                 clear_bit(HIF_HOLDER, &gh->gh_iflags);
1621                 trace_gfs2_glock_queue(gh, 0);
1622
1623                 /*
1624                  * If there hasn't been a demote request we are done.
1625                  * (Let the remaining holders, if any, keep holding it.)
1626                  */
1627                 if (!needs_demote(gl)) {
1628                         if (list_empty(&gl->gl_holders))
1629                                 fast_path = 1;
1630                         break;
1631                 }
1632                 /*
1633                  * If we have another strong holder (we cannot auto-demote)
1634                  * we are done. It keeps holding it until it is done.
1635                  */
1636                 if (find_first_strong_holder(gl))
1637                         break;
1638
1639                 /*
1640                  * If we have a weak holder at the head of the list, it
1641                  * (and all others like it) must be auto-demoted. If there
1642                  * are no more weak holders, we exit the while loop.
1643                  */
1644                 gh = find_first_holder(gl);
1645         }
1646
1647         if (!test_bit(GLF_LFLUSH, &gl->gl_flags) && demote_ok(gl))
1648                 gfs2_glock_add_to_lru(gl);
1649
1650         if (unlikely(!fast_path)) {
1651                 gl->gl_lockref.count++;
1652                 if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
1653                     !test_bit(GLF_DEMOTE, &gl->gl_flags) &&
1654                     gl->gl_name.ln_type == LM_TYPE_INODE)
1655                         delay = gl->gl_hold_time;
1656                 __gfs2_glock_queue_work(gl, delay);
1657         }
1658 }
1659
1660 /**
1661  * gfs2_glock_dq - dequeue a struct gfs2_holder from a glock (release a glock)
1662  * @gh: the glock holder
1663  *
1664  */
1665 void gfs2_glock_dq(struct gfs2_holder *gh)
1666 {
1667         struct gfs2_glock *gl = gh->gh_gl;
1668
1669         spin_lock(&gl->gl_lockref.lock);
1670         if (list_is_first(&gh->gh_list, &gl->gl_holders) &&
1671             !test_bit(HIF_HOLDER, &gh->gh_iflags)) {
1672                 spin_unlock(&gl->gl_lockref.lock);
1673                 gl->gl_name.ln_sbd->sd_lockstruct.ls_ops->lm_cancel(gl);
1674                 wait_on_bit(&gh->gh_iflags, HIF_WAIT, TASK_UNINTERRUPTIBLE);
1675                 spin_lock(&gl->gl_lockref.lock);
1676         }
1677
1678         __gfs2_glock_dq(gh);
1679         spin_unlock(&gl->gl_lockref.lock);
1680 }
1681
1682 void gfs2_glock_dq_wait(struct gfs2_holder *gh)
1683 {
1684         struct gfs2_glock *gl = gh->gh_gl;
1685         gfs2_glock_dq(gh);
1686         might_sleep();
1687         wait_on_bit(&gl->gl_flags, GLF_DEMOTE, TASK_UNINTERRUPTIBLE);
1688 }
1689
1690 /**
1691  * gfs2_glock_dq_uninit - dequeue a holder from a glock and initialize it
1692  * @gh: the holder structure
1693  *
1694  */
1695
1696 void gfs2_glock_dq_uninit(struct gfs2_holder *gh)
1697 {
1698         gfs2_glock_dq(gh);
1699         gfs2_holder_uninit(gh);
1700 }
1701
1702 /**
1703  * gfs2_glock_nq_num - acquire a glock based on lock number
1704  * @sdp: the filesystem
1705  * @number: the lock number
1706  * @glops: the glock operations for the type of glock
1707  * @state: the state to acquire the glock in
1708  * @flags: modifier flags for the acquisition
1709  * @gh: the struct gfs2_holder
1710  *
1711  * Returns: errno
1712  */
1713
1714 int gfs2_glock_nq_num(struct gfs2_sbd *sdp, u64 number,
1715                       const struct gfs2_glock_operations *glops,
1716                       unsigned int state, u16 flags, struct gfs2_holder *gh)
1717 {
1718         struct gfs2_glock *gl;
1719         int error;
1720
1721         error = gfs2_glock_get(sdp, number, glops, CREATE, &gl);
1722         if (!error) {
1723                 error = gfs2_glock_nq_init(gl, state, flags, gh);
1724                 gfs2_glock_put(gl);
1725         }
1726
1727         return error;
1728 }
1729
1730 /**
1731  * glock_compare - Compare two struct gfs2_glock structures for sorting
1732  * @arg_a: the first structure
1733  * @arg_b: the second structure
1734  *
1735  */
1736
1737 static int glock_compare(const void *arg_a, const void *arg_b)
1738 {
1739         const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1740         const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1741         const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1742         const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
1743
1744         if (a->ln_number > b->ln_number)
1745                 return 1;
1746         if (a->ln_number < b->ln_number)
1747                 return -1;
1748         BUG_ON(gh_a->gh_gl->gl_ops->go_type == gh_b->gh_gl->gl_ops->go_type);
1749         return 0;
1750 }
1751
1752 /**
1753  * nq_m_sync - synchonously acquire more than one glock in deadlock free order
1754  * @num_gh: the number of structures
1755  * @ghs: an array of struct gfs2_holder structures
1756  * @p: placeholder for the holder structure to pass back
1757  *
1758  * Returns: 0 on success (all glocks acquired),
1759  *          errno on failure (no glocks acquired)
1760  */
1761
1762 static int nq_m_sync(unsigned int num_gh, struct gfs2_holder *ghs,
1763                      struct gfs2_holder **p)
1764 {
1765         unsigned int x;
1766         int error = 0;
1767
1768         for (x = 0; x < num_gh; x++)
1769                 p[x] = &ghs[x];
1770
1771         sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare, NULL);
1772
1773         for (x = 0; x < num_gh; x++) {
1774                 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1775
1776                 error = gfs2_glock_nq(p[x]);
1777                 if (error) {
1778                         while (x--)
1779                                 gfs2_glock_dq(p[x]);
1780                         break;
1781                 }
1782         }
1783
1784         return error;
1785 }
1786
1787 /**
1788  * gfs2_glock_nq_m - acquire multiple glocks
1789  * @num_gh: the number of structures
1790  * @ghs: an array of struct gfs2_holder structures
1791  *
1792  *
1793  * Returns: 0 on success (all glocks acquired),
1794  *          errno on failure (no glocks acquired)
1795  */
1796
1797 int gfs2_glock_nq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1798 {
1799         struct gfs2_holder *tmp[4];
1800         struct gfs2_holder **pph = tmp;
1801         int error = 0;
1802
1803         switch(num_gh) {
1804         case 0:
1805                 return 0;
1806         case 1:
1807                 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1808                 return gfs2_glock_nq(ghs);
1809         default:
1810                 if (num_gh <= 4)
1811                         break;
1812                 pph = kmalloc_array(num_gh, sizeof(struct gfs2_holder *),
1813                                     GFP_NOFS);
1814                 if (!pph)
1815                         return -ENOMEM;
1816         }
1817
1818         error = nq_m_sync(num_gh, ghs, pph);
1819
1820         if (pph != tmp)
1821                 kfree(pph);
1822
1823         return error;
1824 }
1825
1826 /**
1827  * gfs2_glock_dq_m - release multiple glocks
1828  * @num_gh: the number of structures
1829  * @ghs: an array of struct gfs2_holder structures
1830  *
1831  */
1832
1833 void gfs2_glock_dq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1834 {
1835         while (num_gh--)
1836                 gfs2_glock_dq(&ghs[num_gh]);
1837 }
1838
1839 void gfs2_glock_cb(struct gfs2_glock *gl, unsigned int state)
1840 {
1841         unsigned long delay = 0;
1842         unsigned long holdtime;
1843         unsigned long now = jiffies;
1844
1845         gfs2_glock_hold(gl);
1846         spin_lock(&gl->gl_lockref.lock);
1847         holdtime = gl->gl_tchange + gl->gl_hold_time;
1848         if (!list_empty(&gl->gl_holders) &&
1849             gl->gl_name.ln_type == LM_TYPE_INODE) {
1850                 if (time_before(now, holdtime))
1851                         delay = holdtime - now;
1852                 if (test_bit(GLF_REPLY_PENDING, &gl->gl_flags))
1853                         delay = gl->gl_hold_time;
1854         }
1855         /*
1856          * Note 1: We cannot call demote_incompat_holders from handle_callback
1857          * or gfs2_set_demote due to recursion problems like: gfs2_glock_dq ->
1858          * handle_callback -> demote_incompat_holders -> gfs2_glock_dq
1859          * Plus, we only want to demote the holders if the request comes from
1860          * a remote cluster node because local holder conflicts are resolved
1861          * elsewhere.
1862          *
1863          * Note 2: if a remote node wants this glock in EX mode, lock_dlm will
1864          * request that we set our state to UNLOCKED. Here we mock up a holder
1865          * to make it look like someone wants the lock EX locally. Any SH
1866          * and DF requests should be able to share the lock without demoting.
1867          *
1868          * Note 3: We only want to demote the demoteable holders when there
1869          * are no more strong holders. The demoteable holders might as well
1870          * keep the glock until the last strong holder is done with it.
1871          */
1872         if (!find_first_strong_holder(gl)) {
1873                 struct gfs2_holder mock_gh = {
1874                         .gh_gl = gl,
1875                         .gh_state = (state == LM_ST_UNLOCKED) ?
1876                                     LM_ST_EXCLUSIVE : state,
1877                         .gh_iflags = BIT(HIF_HOLDER)
1878                 };
1879
1880                 demote_incompat_holders(gl, &mock_gh);
1881         }
1882         handle_callback(gl, state, delay, true);
1883         __gfs2_glock_queue_work(gl, delay);
1884         spin_unlock(&gl->gl_lockref.lock);
1885 }
1886
1887 /**
1888  * gfs2_should_freeze - Figure out if glock should be frozen
1889  * @gl: The glock in question
1890  *
1891  * Glocks are not frozen if (a) the result of the dlm operation is
1892  * an error, (b) the locking operation was an unlock operation or
1893  * (c) if there is a "noexp" flagged request anywhere in the queue
1894  *
1895  * Returns: 1 if freezing should occur, 0 otherwise
1896  */
1897
1898 static int gfs2_should_freeze(const struct gfs2_glock *gl)
1899 {
1900         const struct gfs2_holder *gh;
1901
1902         if (gl->gl_reply & ~LM_OUT_ST_MASK)
1903                 return 0;
1904         if (gl->gl_target == LM_ST_UNLOCKED)
1905                 return 0;
1906
1907         list_for_each_entry(gh, &gl->gl_holders, gh_list) {
1908                 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
1909                         continue;
1910                 if (LM_FLAG_NOEXP & gh->gh_flags)
1911                         return 0;
1912         }
1913
1914         return 1;
1915 }
1916
1917 /**
1918  * gfs2_glock_complete - Callback used by locking
1919  * @gl: Pointer to the glock
1920  * @ret: The return value from the dlm
1921  *
1922  * The gl_reply field is under the gl_lockref.lock lock so that it is ok
1923  * to use a bitfield shared with other glock state fields.
1924  */
1925
1926 void gfs2_glock_complete(struct gfs2_glock *gl, int ret)
1927 {
1928         struct lm_lockstruct *ls = &gl->gl_name.ln_sbd->sd_lockstruct;
1929
1930         spin_lock(&gl->gl_lockref.lock);
1931         gl->gl_reply = ret;
1932
1933         if (unlikely(test_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags))) {
1934                 if (gfs2_should_freeze(gl)) {
1935                         set_bit(GLF_FROZEN, &gl->gl_flags);
1936                         spin_unlock(&gl->gl_lockref.lock);
1937                         return;
1938                 }
1939         }
1940
1941         gl->gl_lockref.count++;
1942         set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
1943         __gfs2_glock_queue_work(gl, 0);
1944         spin_unlock(&gl->gl_lockref.lock);
1945 }
1946
1947 static int glock_cmp(void *priv, const struct list_head *a,
1948                      const struct list_head *b)
1949 {
1950         struct gfs2_glock *gla, *glb;
1951
1952         gla = list_entry(a, struct gfs2_glock, gl_lru);
1953         glb = list_entry(b, struct gfs2_glock, gl_lru);
1954
1955         if (gla->gl_name.ln_number > glb->gl_name.ln_number)
1956                 return 1;
1957         if (gla->gl_name.ln_number < glb->gl_name.ln_number)
1958                 return -1;
1959
1960         return 0;
1961 }
1962
1963 /**
1964  * gfs2_dispose_glock_lru - Demote a list of glocks
1965  * @list: The list to dispose of
1966  *
1967  * Disposing of glocks may involve disk accesses, so that here we sort
1968  * the glocks by number (i.e. disk location of the inodes) so that if
1969  * there are any such accesses, they'll be sent in order (mostly).
1970  *
1971  * Must be called under the lru_lock, but may drop and retake this
1972  * lock. While the lru_lock is dropped, entries may vanish from the
1973  * list, but no new entries will appear on the list (since it is
1974  * private)
1975  */
1976
1977 static void gfs2_dispose_glock_lru(struct list_head *list)
1978 __releases(&lru_lock)
1979 __acquires(&lru_lock)
1980 {
1981         struct gfs2_glock *gl;
1982
1983         list_sort(NULL, list, glock_cmp);
1984
1985         while(!list_empty(list)) {
1986                 gl = list_first_entry(list, struct gfs2_glock, gl_lru);
1987                 list_del_init(&gl->gl_lru);
1988                 clear_bit(GLF_LRU, &gl->gl_flags);
1989                 if (!spin_trylock(&gl->gl_lockref.lock)) {
1990 add_back_to_lru:
1991                         list_add(&gl->gl_lru, &lru_list);
1992                         set_bit(GLF_LRU, &gl->gl_flags);
1993                         atomic_inc(&lru_count);
1994                         continue;
1995                 }
1996                 if (test_and_set_bit(GLF_LOCK, &gl->gl_flags)) {
1997                         spin_unlock(&gl->gl_lockref.lock);
1998                         goto add_back_to_lru;
1999                 }
2000                 gl->gl_lockref.count++;
2001                 if (demote_ok(gl))
2002                         handle_callback(gl, LM_ST_UNLOCKED, 0, false);
2003                 WARN_ON(!test_and_clear_bit(GLF_LOCK, &gl->gl_flags));
2004                 __gfs2_glock_queue_work(gl, 0);
2005                 spin_unlock(&gl->gl_lockref.lock);
2006                 cond_resched_lock(&lru_lock);
2007         }
2008 }
2009
2010 /**
2011  * gfs2_scan_glock_lru - Scan the LRU looking for locks to demote
2012  * @nr: The number of entries to scan
2013  *
2014  * This function selects the entries on the LRU which are able to
2015  * be demoted, and then kicks off the process by calling
2016  * gfs2_dispose_glock_lru() above.
2017  */
2018
2019 static long gfs2_scan_glock_lru(int nr)
2020 {
2021         struct gfs2_glock *gl;
2022         LIST_HEAD(skipped);
2023         LIST_HEAD(dispose);
2024         long freed = 0;
2025
2026         spin_lock(&lru_lock);
2027         while ((nr-- >= 0) && !list_empty(&lru_list)) {
2028                 gl = list_first_entry(&lru_list, struct gfs2_glock, gl_lru);
2029
2030                 /* Test for being demotable */
2031                 if (!test_bit(GLF_LOCK, &gl->gl_flags)) {
2032                         list_move(&gl->gl_lru, &dispose);
2033                         atomic_dec(&lru_count);
2034                         freed++;
2035                         continue;
2036                 }
2037
2038                 list_move(&gl->gl_lru, &skipped);
2039         }
2040         list_splice(&skipped, &lru_list);
2041         if (!list_empty(&dispose))
2042                 gfs2_dispose_glock_lru(&dispose);
2043         spin_unlock(&lru_lock);
2044
2045         return freed;
2046 }
2047
2048 static unsigned long gfs2_glock_shrink_scan(struct shrinker *shrink,
2049                                             struct shrink_control *sc)
2050 {
2051         if (!(sc->gfp_mask & __GFP_FS))
2052                 return SHRINK_STOP;
2053         return gfs2_scan_glock_lru(sc->nr_to_scan);
2054 }
2055
2056 static unsigned long gfs2_glock_shrink_count(struct shrinker *shrink,
2057                                              struct shrink_control *sc)
2058 {
2059         return vfs_pressure_ratio(atomic_read(&lru_count));
2060 }
2061
2062 static struct shrinker glock_shrinker = {
2063         .seeks = DEFAULT_SEEKS,
2064         .count_objects = gfs2_glock_shrink_count,
2065         .scan_objects = gfs2_glock_shrink_scan,
2066 };
2067
2068 /**
2069  * glock_hash_walk - Call a function for glock in a hash bucket
2070  * @examiner: the function
2071  * @sdp: the filesystem
2072  *
2073  * Note that the function can be called multiple times on the same
2074  * object.  So the user must ensure that the function can cope with
2075  * that.
2076  */
2077
2078 static void glock_hash_walk(glock_examiner examiner, const struct gfs2_sbd *sdp)
2079 {
2080         struct gfs2_glock *gl;
2081         struct rhashtable_iter iter;
2082
2083         rhashtable_walk_enter(&gl_hash_table, &iter);
2084
2085         do {
2086                 rhashtable_walk_start(&iter);
2087
2088                 while ((gl = rhashtable_walk_next(&iter)) && !IS_ERR(gl)) {
2089                         if (gl->gl_name.ln_sbd == sdp)
2090                                 examiner(gl);
2091                 }
2092
2093                 rhashtable_walk_stop(&iter);
2094         } while (cond_resched(), gl == ERR_PTR(-EAGAIN));
2095
2096         rhashtable_walk_exit(&iter);
2097 }
2098
2099 bool gfs2_queue_delete_work(struct gfs2_glock *gl, unsigned long delay)
2100 {
2101         bool queued;
2102
2103         spin_lock(&gl->gl_lockref.lock);
2104         queued = queue_delayed_work(gfs2_delete_workqueue,
2105                                     &gl->gl_delete, delay);
2106         if (queued)
2107                 set_bit(GLF_PENDING_DELETE, &gl->gl_flags);
2108         spin_unlock(&gl->gl_lockref.lock);
2109         return queued;
2110 }
2111
2112 void gfs2_cancel_delete_work(struct gfs2_glock *gl)
2113 {
2114         if (cancel_delayed_work(&gl->gl_delete)) {
2115                 clear_bit(GLF_PENDING_DELETE, &gl->gl_flags);
2116                 gfs2_glock_put(gl);
2117         }
2118 }
2119
2120 bool gfs2_delete_work_queued(const struct gfs2_glock *gl)
2121 {
2122         return test_bit(GLF_PENDING_DELETE, &gl->gl_flags);
2123 }
2124
2125 static void flush_delete_work(struct gfs2_glock *gl)
2126 {
2127         if (gl->gl_name.ln_type == LM_TYPE_IOPEN) {
2128                 if (cancel_delayed_work(&gl->gl_delete)) {
2129                         queue_delayed_work(gfs2_delete_workqueue,
2130                                            &gl->gl_delete, 0);
2131                 }
2132         }
2133 }
2134
2135 void gfs2_flush_delete_work(struct gfs2_sbd *sdp)
2136 {
2137         glock_hash_walk(flush_delete_work, sdp);
2138         flush_workqueue(gfs2_delete_workqueue);
2139 }
2140
2141 /**
2142  * thaw_glock - thaw out a glock which has an unprocessed reply waiting
2143  * @gl: The glock to thaw
2144  *
2145  */
2146
2147 static void thaw_glock(struct gfs2_glock *gl)
2148 {
2149         if (!test_and_clear_bit(GLF_FROZEN, &gl->gl_flags))
2150                 return;
2151         if (!lockref_get_not_dead(&gl->gl_lockref))
2152                 return;
2153         set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
2154         gfs2_glock_queue_work(gl, 0);
2155 }
2156
2157 /**
2158  * clear_glock - look at a glock and see if we can free it from glock cache
2159  * @gl: the glock to look at
2160  *
2161  */
2162
2163 static void clear_glock(struct gfs2_glock *gl)
2164 {
2165         gfs2_glock_remove_from_lru(gl);
2166
2167         spin_lock(&gl->gl_lockref.lock);
2168         if (!__lockref_is_dead(&gl->gl_lockref)) {
2169                 gl->gl_lockref.count++;
2170                 if (gl->gl_state != LM_ST_UNLOCKED)
2171                         handle_callback(gl, LM_ST_UNLOCKED, 0, false);
2172                 __gfs2_glock_queue_work(gl, 0);
2173         }
2174         spin_unlock(&gl->gl_lockref.lock);
2175 }
2176
2177 /**
2178  * gfs2_glock_thaw - Thaw any frozen glocks
2179  * @sdp: The super block
2180  *
2181  */
2182
2183 void gfs2_glock_thaw(struct gfs2_sbd *sdp)
2184 {
2185         glock_hash_walk(thaw_glock, sdp);
2186 }
2187
2188 static void dump_glock(struct seq_file *seq, struct gfs2_glock *gl, bool fsid)
2189 {
2190         spin_lock(&gl->gl_lockref.lock);
2191         gfs2_dump_glock(seq, gl, fsid);
2192         spin_unlock(&gl->gl_lockref.lock);
2193 }
2194
2195 static void dump_glock_func(struct gfs2_glock *gl)
2196 {
2197         dump_glock(NULL, gl, true);
2198 }
2199
2200 /**
2201  * gfs2_gl_hash_clear - Empty out the glock hash table
2202  * @sdp: the filesystem
2203  *
2204  * Called when unmounting the filesystem.
2205  */
2206
2207 void gfs2_gl_hash_clear(struct gfs2_sbd *sdp)
2208 {
2209         set_bit(SDF_SKIP_DLM_UNLOCK, &sdp->sd_flags);
2210         flush_workqueue(glock_workqueue);
2211         glock_hash_walk(clear_glock, sdp);
2212         flush_workqueue(glock_workqueue);
2213         wait_event_timeout(sdp->sd_glock_wait,
2214                            atomic_read(&sdp->sd_glock_disposal) == 0,
2215                            HZ * 600);
2216         glock_hash_walk(dump_glock_func, sdp);
2217 }
2218
2219 static const char *state2str(unsigned state)
2220 {
2221         switch(state) {
2222         case LM_ST_UNLOCKED:
2223                 return "UN";
2224         case LM_ST_SHARED:
2225                 return "SH";
2226         case LM_ST_DEFERRED:
2227                 return "DF";
2228         case LM_ST_EXCLUSIVE:
2229                 return "EX";
2230         }
2231         return "??";
2232 }
2233
2234 static const char *hflags2str(char *buf, u16 flags, unsigned long iflags)
2235 {
2236         char *p = buf;
2237         if (flags & LM_FLAG_TRY)
2238                 *p++ = 't';
2239         if (flags & LM_FLAG_TRY_1CB)
2240                 *p++ = 'T';
2241         if (flags & LM_FLAG_NOEXP)
2242                 *p++ = 'e';
2243         if (flags & LM_FLAG_ANY)
2244                 *p++ = 'A';
2245         if (flags & LM_FLAG_PRIORITY)
2246                 *p++ = 'p';
2247         if (flags & LM_FLAG_NODE_SCOPE)
2248                 *p++ = 'n';
2249         if (flags & GL_ASYNC)
2250                 *p++ = 'a';
2251         if (flags & GL_EXACT)
2252                 *p++ = 'E';
2253         if (flags & GL_NOCACHE)
2254                 *p++ = 'c';
2255         if (test_bit(HIF_HOLDER, &iflags))
2256                 *p++ = 'H';
2257         if (test_bit(HIF_WAIT, &iflags))
2258                 *p++ = 'W';
2259         if (test_bit(HIF_MAY_DEMOTE, &iflags))
2260                 *p++ = 'D';
2261         if (flags & GL_SKIP)
2262                 *p++ = 's';
2263         *p = 0;
2264         return buf;
2265 }
2266
2267 /**
2268  * dump_holder - print information about a glock holder
2269  * @seq: the seq_file struct
2270  * @gh: the glock holder
2271  * @fs_id_buf: pointer to file system id (if requested)
2272  *
2273  */
2274
2275 static void dump_holder(struct seq_file *seq, const struct gfs2_holder *gh,
2276                         const char *fs_id_buf)
2277 {
2278         struct task_struct *gh_owner = NULL;
2279         char flags_buf[32];
2280
2281         rcu_read_lock();
2282         if (gh->gh_owner_pid)
2283                 gh_owner = pid_task(gh->gh_owner_pid, PIDTYPE_PID);
2284         gfs2_print_dbg(seq, "%s H: s:%s f:%s e:%d p:%ld [%s] %pS\n",
2285                        fs_id_buf, state2str(gh->gh_state),
2286                        hflags2str(flags_buf, gh->gh_flags, gh->gh_iflags),
2287                        gh->gh_error,
2288                        gh->gh_owner_pid ? (long)pid_nr(gh->gh_owner_pid) : -1,
2289                        gh_owner ? gh_owner->comm : "(ended)",
2290                        (void *)gh->gh_ip);
2291         rcu_read_unlock();
2292 }
2293
2294 static const char *gflags2str(char *buf, const struct gfs2_glock *gl)
2295 {
2296         const unsigned long *gflags = &gl->gl_flags;
2297         char *p = buf;
2298
2299         if (test_bit(GLF_LOCK, gflags))
2300                 *p++ = 'l';
2301         if (test_bit(GLF_DEMOTE, gflags))
2302                 *p++ = 'D';
2303         if (test_bit(GLF_PENDING_DEMOTE, gflags))
2304                 *p++ = 'd';
2305         if (test_bit(GLF_DEMOTE_IN_PROGRESS, gflags))
2306                 *p++ = 'p';
2307         if (test_bit(GLF_DIRTY, gflags))
2308                 *p++ = 'y';
2309         if (test_bit(GLF_LFLUSH, gflags))
2310                 *p++ = 'f';
2311         if (test_bit(GLF_INVALIDATE_IN_PROGRESS, gflags))
2312                 *p++ = 'i';
2313         if (test_bit(GLF_REPLY_PENDING, gflags))
2314                 *p++ = 'r';
2315         if (test_bit(GLF_INITIAL, gflags))
2316                 *p++ = 'I';
2317         if (test_bit(GLF_FROZEN, gflags))
2318                 *p++ = 'F';
2319         if (!list_empty(&gl->gl_holders))
2320                 *p++ = 'q';
2321         if (test_bit(GLF_LRU, gflags))
2322                 *p++ = 'L';
2323         if (gl->gl_object)
2324                 *p++ = 'o';
2325         if (test_bit(GLF_BLOCKING, gflags))
2326                 *p++ = 'b';
2327         if (test_bit(GLF_PENDING_DELETE, gflags))
2328                 *p++ = 'P';
2329         if (test_bit(GLF_FREEING, gflags))
2330                 *p++ = 'x';
2331         if (test_bit(GLF_INSTANTIATE_NEEDED, gflags))
2332                 *p++ = 'n';
2333         if (test_bit(GLF_INSTANTIATE_IN_PROG, gflags))
2334                 *p++ = 'N';
2335         *p = 0;
2336         return buf;
2337 }
2338
2339 /**
2340  * gfs2_dump_glock - print information about a glock
2341  * @seq: The seq_file struct
2342  * @gl: the glock
2343  * @fsid: If true, also dump the file system id
2344  *
2345  * The file format is as follows:
2346  * One line per object, capital letters are used to indicate objects
2347  * G = glock, I = Inode, R = rgrp, H = holder. Glocks are not indented,
2348  * other objects are indented by a single space and follow the glock to
2349  * which they are related. Fields are indicated by lower case letters
2350  * followed by a colon and the field value, except for strings which are in
2351  * [] so that its possible to see if they are composed of spaces for
2352  * example. The field's are n = number (id of the object), f = flags,
2353  * t = type, s = state, r = refcount, e = error, p = pid.
2354  *
2355  */
2356
2357 void gfs2_dump_glock(struct seq_file *seq, struct gfs2_glock *gl, bool fsid)
2358 {
2359         const struct gfs2_glock_operations *glops = gl->gl_ops;
2360         unsigned long long dtime;
2361         const struct gfs2_holder *gh;
2362         char gflags_buf[32];
2363         struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
2364         char fs_id_buf[sizeof(sdp->sd_fsname) + 7];
2365         unsigned long nrpages = 0;
2366
2367         if (gl->gl_ops->go_flags & GLOF_ASPACE) {
2368                 struct address_space *mapping = gfs2_glock2aspace(gl);
2369
2370                 nrpages = mapping->nrpages;
2371         }
2372         memset(fs_id_buf, 0, sizeof(fs_id_buf));
2373         if (fsid && sdp) /* safety precaution */
2374                 sprintf(fs_id_buf, "fsid=%s: ", sdp->sd_fsname);
2375         dtime = jiffies - gl->gl_demote_time;
2376         dtime *= 1000000/HZ; /* demote time in uSec */
2377         if (!test_bit(GLF_DEMOTE, &gl->gl_flags))
2378                 dtime = 0;
2379         gfs2_print_dbg(seq, "%sG:  s:%s n:%u/%llx f:%s t:%s d:%s/%llu a:%d "
2380                        "v:%d r:%d m:%ld p:%lu\n",
2381                        fs_id_buf, state2str(gl->gl_state),
2382                        gl->gl_name.ln_type,
2383                        (unsigned long long)gl->gl_name.ln_number,
2384                        gflags2str(gflags_buf, gl),
2385                        state2str(gl->gl_target),
2386                        state2str(gl->gl_demote_state), dtime,
2387                        atomic_read(&gl->gl_ail_count),
2388                        atomic_read(&gl->gl_revokes),
2389                        (int)gl->gl_lockref.count, gl->gl_hold_time, nrpages);
2390
2391         list_for_each_entry(gh, &gl->gl_holders, gh_list)
2392                 dump_holder(seq, gh, fs_id_buf);
2393
2394         if (gl->gl_state != LM_ST_UNLOCKED && glops->go_dump)
2395                 glops->go_dump(seq, gl, fs_id_buf);
2396 }
2397
2398 static int gfs2_glstats_seq_show(struct seq_file *seq, void *iter_ptr)
2399 {
2400         struct gfs2_glock *gl = iter_ptr;
2401
2402         seq_printf(seq, "G: n:%u/%llx rtt:%llu/%llu rttb:%llu/%llu irt:%llu/%llu dcnt: %llu qcnt: %llu\n",
2403                    gl->gl_name.ln_type,
2404                    (unsigned long long)gl->gl_name.ln_number,
2405                    (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SRTT],
2406                    (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SRTTVAR],
2407                    (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SRTTB],
2408                    (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SRTTVARB],
2409                    (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SIRT],
2410                    (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SIRTVAR],
2411                    (unsigned long long)gl->gl_stats.stats[GFS2_LKS_DCOUNT],
2412                    (unsigned long long)gl->gl_stats.stats[GFS2_LKS_QCOUNT]);
2413         return 0;
2414 }
2415
2416 static const char *gfs2_gltype[] = {
2417         "type",
2418         "reserved",
2419         "nondisk",
2420         "inode",
2421         "rgrp",
2422         "meta",
2423         "iopen",
2424         "flock",
2425         "plock",
2426         "quota",
2427         "journal",
2428 };
2429
2430 static const char *gfs2_stype[] = {
2431         [GFS2_LKS_SRTT]         = "srtt",
2432         [GFS2_LKS_SRTTVAR]      = "srttvar",
2433         [GFS2_LKS_SRTTB]        = "srttb",
2434         [GFS2_LKS_SRTTVARB]     = "srttvarb",
2435         [GFS2_LKS_SIRT]         = "sirt",
2436         [GFS2_LKS_SIRTVAR]      = "sirtvar",
2437         [GFS2_LKS_DCOUNT]       = "dlm",
2438         [GFS2_LKS_QCOUNT]       = "queue",
2439 };
2440
2441 #define GFS2_NR_SBSTATS (ARRAY_SIZE(gfs2_gltype) * ARRAY_SIZE(gfs2_stype))
2442
2443 static int gfs2_sbstats_seq_show(struct seq_file *seq, void *iter_ptr)
2444 {
2445         struct gfs2_sbd *sdp = seq->private;
2446         loff_t pos = *(loff_t *)iter_ptr;
2447         unsigned index = pos >> 3;
2448         unsigned subindex = pos & 0x07;
2449         int i;
2450
2451         if (index == 0 && subindex != 0)
2452                 return 0;
2453
2454         seq_printf(seq, "%-10s %8s:", gfs2_gltype[index],
2455                    (index == 0) ? "cpu": gfs2_stype[subindex]);
2456
2457         for_each_possible_cpu(i) {
2458                 const struct gfs2_pcpu_lkstats *lkstats = per_cpu_ptr(sdp->sd_lkstats, i);
2459
2460                 if (index == 0)
2461                         seq_printf(seq, " %15u", i);
2462                 else
2463                         seq_printf(seq, " %15llu", (unsigned long long)lkstats->
2464                                    lkstats[index - 1].stats[subindex]);
2465         }
2466         seq_putc(seq, '\n');
2467         return 0;
2468 }
2469
2470 int __init gfs2_glock_init(void)
2471 {
2472         int i, ret;
2473
2474         ret = rhashtable_init(&gl_hash_table, &ht_parms);
2475         if (ret < 0)
2476                 return ret;
2477
2478         glock_workqueue = alloc_workqueue("glock_workqueue", WQ_MEM_RECLAIM |
2479                                           WQ_HIGHPRI | WQ_FREEZABLE, 0);
2480         if (!glock_workqueue) {
2481                 rhashtable_destroy(&gl_hash_table);
2482                 return -ENOMEM;
2483         }
2484         gfs2_delete_workqueue = alloc_workqueue("delete_workqueue",
2485                                                 WQ_MEM_RECLAIM | WQ_FREEZABLE,
2486                                                 0);
2487         if (!gfs2_delete_workqueue) {
2488                 destroy_workqueue(glock_workqueue);
2489                 rhashtable_destroy(&gl_hash_table);
2490                 return -ENOMEM;
2491         }
2492
2493         ret = register_shrinker(&glock_shrinker);
2494         if (ret) {
2495                 destroy_workqueue(gfs2_delete_workqueue);
2496                 destroy_workqueue(glock_workqueue);
2497                 rhashtable_destroy(&gl_hash_table);
2498                 return ret;
2499         }
2500
2501         for (i = 0; i < GLOCK_WAIT_TABLE_SIZE; i++)
2502                 init_waitqueue_head(glock_wait_table + i);
2503
2504         return 0;
2505 }
2506
2507 void gfs2_glock_exit(void)
2508 {
2509         unregister_shrinker(&glock_shrinker);
2510         rhashtable_destroy(&gl_hash_table);
2511         destroy_workqueue(glock_workqueue);
2512         destroy_workqueue(gfs2_delete_workqueue);
2513 }
2514
2515 static void gfs2_glock_iter_next(struct gfs2_glock_iter *gi, loff_t n)
2516 {
2517         struct gfs2_glock *gl = gi->gl;
2518
2519         if (gl) {
2520                 if (n == 0)
2521                         return;
2522                 if (!lockref_put_not_zero(&gl->gl_lockref))
2523                         gfs2_glock_queue_put(gl);
2524         }
2525         for (;;) {
2526                 gl = rhashtable_walk_next(&gi->hti);
2527                 if (IS_ERR_OR_NULL(gl)) {
2528                         if (gl == ERR_PTR(-EAGAIN)) {
2529                                 n = 1;
2530                                 continue;
2531                         }
2532                         gl = NULL;
2533                         break;
2534                 }
2535                 if (gl->gl_name.ln_sbd != gi->sdp)
2536                         continue;
2537                 if (n <= 1) {
2538                         if (!lockref_get_not_dead(&gl->gl_lockref))
2539                                 continue;
2540                         break;
2541                 } else {
2542                         if (__lockref_is_dead(&gl->gl_lockref))
2543                                 continue;
2544                         n--;
2545                 }
2546         }
2547         gi->gl = gl;
2548 }
2549
2550 static void *gfs2_glock_seq_start(struct seq_file *seq, loff_t *pos)
2551         __acquires(RCU)
2552 {
2553         struct gfs2_glock_iter *gi = seq->private;
2554         loff_t n;
2555
2556         /*
2557          * We can either stay where we are, skip to the next hash table
2558          * entry, or start from the beginning.
2559          */
2560         if (*pos < gi->last_pos) {
2561                 rhashtable_walk_exit(&gi->hti);
2562                 rhashtable_walk_enter(&gl_hash_table, &gi->hti);
2563                 n = *pos + 1;
2564         } else {
2565                 n = *pos - gi->last_pos;
2566         }
2567
2568         rhashtable_walk_start(&gi->hti);
2569
2570         gfs2_glock_iter_next(gi, n);
2571         gi->last_pos = *pos;
2572         return gi->gl;
2573 }
2574
2575 static void *gfs2_glock_seq_next(struct seq_file *seq, void *iter_ptr,
2576                                  loff_t *pos)
2577 {
2578         struct gfs2_glock_iter *gi = seq->private;
2579
2580         (*pos)++;
2581         gi->last_pos = *pos;
2582         gfs2_glock_iter_next(gi, 1);
2583         return gi->gl;
2584 }
2585
2586 static void gfs2_glock_seq_stop(struct seq_file *seq, void *iter_ptr)
2587         __releases(RCU)
2588 {
2589         struct gfs2_glock_iter *gi = seq->private;
2590
2591         rhashtable_walk_stop(&gi->hti);
2592 }
2593
2594 static int gfs2_glock_seq_show(struct seq_file *seq, void *iter_ptr)
2595 {
2596         dump_glock(seq, iter_ptr, false);
2597         return 0;
2598 }
2599
2600 static void *gfs2_sbstats_seq_start(struct seq_file *seq, loff_t *pos)
2601 {
2602         preempt_disable();
2603         if (*pos >= GFS2_NR_SBSTATS)
2604                 return NULL;
2605         return pos;
2606 }
2607
2608 static void *gfs2_sbstats_seq_next(struct seq_file *seq, void *iter_ptr,
2609                                    loff_t *pos)
2610 {
2611         (*pos)++;
2612         if (*pos >= GFS2_NR_SBSTATS)
2613                 return NULL;
2614         return pos;
2615 }
2616
2617 static void gfs2_sbstats_seq_stop(struct seq_file *seq, void *iter_ptr)
2618 {
2619         preempt_enable();
2620 }
2621
2622 static const struct seq_operations gfs2_glock_seq_ops = {
2623         .start = gfs2_glock_seq_start,
2624         .next  = gfs2_glock_seq_next,
2625         .stop  = gfs2_glock_seq_stop,
2626         .show  = gfs2_glock_seq_show,
2627 };
2628
2629 static const struct seq_operations gfs2_glstats_seq_ops = {
2630         .start = gfs2_glock_seq_start,
2631         .next  = gfs2_glock_seq_next,
2632         .stop  = gfs2_glock_seq_stop,
2633         .show  = gfs2_glstats_seq_show,
2634 };
2635
2636 static const struct seq_operations gfs2_sbstats_sops = {
2637         .start = gfs2_sbstats_seq_start,
2638         .next  = gfs2_sbstats_seq_next,
2639         .stop  = gfs2_sbstats_seq_stop,
2640         .show  = gfs2_sbstats_seq_show,
2641 };
2642
2643 #define GFS2_SEQ_GOODSIZE min(PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER, 65536UL)
2644
2645 static int __gfs2_glocks_open(struct inode *inode, struct file *file,
2646                               const struct seq_operations *ops)
2647 {
2648         int ret = seq_open_private(file, ops, sizeof(struct gfs2_glock_iter));
2649         if (ret == 0) {
2650                 struct seq_file *seq = file->private_data;
2651                 struct gfs2_glock_iter *gi = seq->private;
2652
2653                 gi->sdp = inode->i_private;
2654                 seq->buf = kmalloc(GFS2_SEQ_GOODSIZE, GFP_KERNEL | __GFP_NOWARN);
2655                 if (seq->buf)
2656                         seq->size = GFS2_SEQ_GOODSIZE;
2657                 /*
2658                  * Initially, we are "before" the first hash table entry; the
2659                  * first call to rhashtable_walk_next gets us the first entry.
2660                  */
2661                 gi->last_pos = -1;
2662                 gi->gl = NULL;
2663                 rhashtable_walk_enter(&gl_hash_table, &gi->hti);
2664         }
2665         return ret;
2666 }
2667
2668 static int gfs2_glocks_open(struct inode *inode, struct file *file)
2669 {
2670         return __gfs2_glocks_open(inode, file, &gfs2_glock_seq_ops);
2671 }
2672
2673 static int gfs2_glocks_release(struct inode *inode, struct file *file)
2674 {
2675         struct seq_file *seq = file->private_data;
2676         struct gfs2_glock_iter *gi = seq->private;
2677
2678         if (gi->gl)
2679                 gfs2_glock_put(gi->gl);
2680         rhashtable_walk_exit(&gi->hti);
2681         return seq_release_private(inode, file);
2682 }
2683
2684 static int gfs2_glstats_open(struct inode *inode, struct file *file)
2685 {
2686         return __gfs2_glocks_open(inode, file, &gfs2_glstats_seq_ops);
2687 }
2688
2689 static const struct file_operations gfs2_glocks_fops = {
2690         .owner   = THIS_MODULE,
2691         .open    = gfs2_glocks_open,
2692         .read    = seq_read,
2693         .llseek  = seq_lseek,
2694         .release = gfs2_glocks_release,
2695 };
2696
2697 static const struct file_operations gfs2_glstats_fops = {
2698         .owner   = THIS_MODULE,
2699         .open    = gfs2_glstats_open,
2700         .read    = seq_read,
2701         .llseek  = seq_lseek,
2702         .release = gfs2_glocks_release,
2703 };
2704
2705 DEFINE_SEQ_ATTRIBUTE(gfs2_sbstats);
2706
2707 void gfs2_create_debugfs_file(struct gfs2_sbd *sdp)
2708 {
2709         sdp->debugfs_dir = debugfs_create_dir(sdp->sd_table_name, gfs2_root);
2710
2711         debugfs_create_file("glocks", S_IFREG | S_IRUGO, sdp->debugfs_dir, sdp,
2712                             &gfs2_glocks_fops);
2713
2714         debugfs_create_file("glstats", S_IFREG | S_IRUGO, sdp->debugfs_dir, sdp,
2715                             &gfs2_glstats_fops);
2716
2717         debugfs_create_file("sbstats", S_IFREG | S_IRUGO, sdp->debugfs_dir, sdp,
2718                             &gfs2_sbstats_fops);
2719 }
2720
2721 void gfs2_delete_debugfs_file(struct gfs2_sbd *sdp)
2722 {
2723         debugfs_remove_recursive(sdp->debugfs_dir);
2724         sdp->debugfs_dir = NULL;
2725 }
2726
2727 void gfs2_register_debugfs(void)
2728 {
2729         gfs2_root = debugfs_create_dir("gfs2", NULL);
2730 }
2731
2732 void gfs2_unregister_debugfs(void)
2733 {
2734         debugfs_remove(gfs2_root);
2735         gfs2_root = NULL;
2736 }