2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
7 * of the GNU General Public License version 2.
10 #include <linux/sched.h>
11 #include <linux/slab.h>
12 #include <linux/spinlock.h>
13 #include <linux/buffer_head.h>
14 #include <linux/delay.h>
15 #include <linux/sort.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 <asm/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>
45 #define CREATE_TRACE_POINTS
46 #include "trace_gfs2.h"
48 struct gfs2_glock_iter {
49 int hash; /* hash bucket index */
50 unsigned nhash; /* Index within current bucket */
51 struct gfs2_sbd *sdp; /* incore superblock */
52 struct gfs2_glock *gl; /* current glock struct */
53 loff_t last_pos; /* last position */
56 typedef void (*glock_examiner) (struct gfs2_glock * gl);
58 static int __dump_glock(struct seq_file *seq, const struct gfs2_glock *gl);
59 #define GLOCK_BUG_ON(gl,x) do { if (unlikely(x)) { __dump_glock(NULL, gl); BUG(); } } while(0)
60 static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target);
62 static struct dentry *gfs2_root;
63 static struct workqueue_struct *glock_workqueue;
64 struct workqueue_struct *gfs2_delete_workqueue;
65 static LIST_HEAD(lru_list);
66 static atomic_t lru_count = ATOMIC_INIT(0);
67 static DEFINE_SPINLOCK(lru_lock);
69 #define GFS2_GL_HASH_SHIFT 15
70 #define GFS2_GL_HASH_SIZE (1 << GFS2_GL_HASH_SHIFT)
71 #define GFS2_GL_HASH_MASK (GFS2_GL_HASH_SIZE - 1)
73 static struct hlist_bl_head gl_hash_table[GFS2_GL_HASH_SIZE];
74 static struct dentry *gfs2_root;
77 * gl_hash() - Turn glock number into hash bucket number
78 * @lock: The glock number
80 * Returns: The number of the corresponding hash bucket
83 static unsigned int gl_hash(const struct gfs2_sbd *sdp,
84 const struct lm_lockname *name)
88 h = jhash(&name->ln_number, sizeof(u64), 0);
89 h = jhash(&name->ln_type, sizeof(unsigned int), h);
90 h = jhash(&sdp, sizeof(struct gfs2_sbd *), h);
91 h &= GFS2_GL_HASH_MASK;
96 static inline void spin_lock_bucket(unsigned int hash)
98 hlist_bl_lock(&gl_hash_table[hash]);
101 static inline void spin_unlock_bucket(unsigned int hash)
103 hlist_bl_unlock(&gl_hash_table[hash]);
106 static void gfs2_glock_dealloc(struct rcu_head *rcu)
108 struct gfs2_glock *gl = container_of(rcu, struct gfs2_glock, gl_rcu);
110 if (gl->gl_ops->go_flags & GLOF_ASPACE)
111 kmem_cache_free(gfs2_glock_aspace_cachep, gl);
113 kmem_cache_free(gfs2_glock_cachep, gl);
116 void gfs2_glock_free(struct gfs2_glock *gl)
118 struct gfs2_sbd *sdp = gl->gl_sbd;
120 call_rcu(&gl->gl_rcu, gfs2_glock_dealloc);
121 if (atomic_dec_and_test(&sdp->sd_glock_disposal))
122 wake_up(&sdp->sd_glock_wait);
126 * gfs2_glock_hold() - increment reference count on glock
127 * @gl: The glock to hold
131 void gfs2_glock_hold(struct gfs2_glock *gl)
133 GLOCK_BUG_ON(gl, atomic_read(&gl->gl_ref) == 0);
134 atomic_inc(&gl->gl_ref);
138 * demote_ok - Check to see if it's ok to unlock a glock
141 * Returns: 1 if it's ok
144 static int demote_ok(const struct gfs2_glock *gl)
146 const struct gfs2_glock_operations *glops = gl->gl_ops;
148 if (gl->gl_state == LM_ST_UNLOCKED)
150 if (!list_empty(&gl->gl_holders))
152 if (glops->go_demote_ok)
153 return glops->go_demote_ok(gl);
158 void gfs2_glock_add_to_lru(struct gfs2_glock *gl)
160 spin_lock(&lru_lock);
162 if (!list_empty(&gl->gl_lru))
163 list_del_init(&gl->gl_lru);
165 atomic_inc(&lru_count);
167 list_add_tail(&gl->gl_lru, &lru_list);
168 set_bit(GLF_LRU, &gl->gl_flags);
169 spin_unlock(&lru_lock);
172 static void __gfs2_glock_remove_from_lru(struct gfs2_glock *gl)
174 if (!list_empty(&gl->gl_lru)) {
175 list_del_init(&gl->gl_lru);
176 atomic_dec(&lru_count);
177 clear_bit(GLF_LRU, &gl->gl_flags);
181 static void gfs2_glock_remove_from_lru(struct gfs2_glock *gl)
183 spin_lock(&lru_lock);
184 __gfs2_glock_remove_from_lru(gl);
185 spin_unlock(&lru_lock);
189 * __gfs2_glock_schedule_for_reclaim - Add a glock to the reclaim list
192 * If the glock is demotable, then we add it (or move it) to the end
193 * of the glock LRU list.
196 static void __gfs2_glock_schedule_for_reclaim(struct gfs2_glock *gl)
199 gfs2_glock_add_to_lru(gl);
203 * gfs2_glock_put_nolock() - Decrement reference count on glock
204 * @gl: The glock to put
206 * This function should only be used if the caller has its own reference
207 * to the glock, in addition to the one it is dropping.
210 void gfs2_glock_put_nolock(struct gfs2_glock *gl)
212 if (atomic_dec_and_test(&gl->gl_ref))
217 * gfs2_glock_put() - Decrement reference count on glock
218 * @gl: The glock to put
222 void gfs2_glock_put(struct gfs2_glock *gl)
224 struct gfs2_sbd *sdp = gl->gl_sbd;
225 struct address_space *mapping = gfs2_glock2aspace(gl);
227 if (atomic_dec_and_lock(&gl->gl_ref, &lru_lock)) {
228 __gfs2_glock_remove_from_lru(gl);
229 spin_unlock(&lru_lock);
230 spin_lock_bucket(gl->gl_hash);
231 hlist_bl_del_rcu(&gl->gl_list);
232 spin_unlock_bucket(gl->gl_hash);
233 GLOCK_BUG_ON(gl, !list_empty(&gl->gl_holders));
234 GLOCK_BUG_ON(gl, mapping && mapping->nrpages);
235 trace_gfs2_glock_put(gl);
236 sdp->sd_lockstruct.ls_ops->lm_put_lock(gl);
241 * search_bucket() - Find struct gfs2_glock by lock number
242 * @bucket: the bucket to search
243 * @name: The lock name
245 * Returns: NULL, or the struct gfs2_glock with the requested number
248 static struct gfs2_glock *search_bucket(unsigned int hash,
249 const struct gfs2_sbd *sdp,
250 const struct lm_lockname *name)
252 struct gfs2_glock *gl;
253 struct hlist_bl_node *h;
255 hlist_bl_for_each_entry_rcu(gl, h, &gl_hash_table[hash], gl_list) {
256 if (!lm_name_equal(&gl->gl_name, name))
258 if (gl->gl_sbd != sdp)
260 if (atomic_inc_not_zero(&gl->gl_ref))
268 * may_grant - check if its ok to grant a new lock
270 * @gh: The lock request which we wish to grant
272 * Returns: true if its ok to grant the lock
275 static inline int may_grant(const struct gfs2_glock *gl, const struct gfs2_holder *gh)
277 const struct gfs2_holder *gh_head = list_entry(gl->gl_holders.next, const struct gfs2_holder, gh_list);
278 if ((gh->gh_state == LM_ST_EXCLUSIVE ||
279 gh_head->gh_state == LM_ST_EXCLUSIVE) && gh != gh_head)
281 if (gl->gl_state == gh->gh_state)
283 if (gh->gh_flags & GL_EXACT)
285 if (gl->gl_state == LM_ST_EXCLUSIVE) {
286 if (gh->gh_state == LM_ST_SHARED && gh_head->gh_state == LM_ST_SHARED)
288 if (gh->gh_state == LM_ST_DEFERRED && gh_head->gh_state == LM_ST_DEFERRED)
291 if (gl->gl_state != LM_ST_UNLOCKED && (gh->gh_flags & LM_FLAG_ANY))
296 static void gfs2_holder_wake(struct gfs2_holder *gh)
298 clear_bit(HIF_WAIT, &gh->gh_iflags);
299 smp_mb__after_clear_bit();
300 wake_up_bit(&gh->gh_iflags, HIF_WAIT);
304 * do_error - Something unexpected has happened during a lock request
308 static inline void do_error(struct gfs2_glock *gl, const int ret)
310 struct gfs2_holder *gh, *tmp;
312 list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) {
313 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
315 if (ret & LM_OUT_ERROR)
317 else if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))
318 gh->gh_error = GLR_TRYFAILED;
321 list_del_init(&gh->gh_list);
322 trace_gfs2_glock_queue(gh, 0);
323 gfs2_holder_wake(gh);
328 * do_promote - promote as many requests as possible on the current queue
331 * Returns: 1 if there is a blocked holder at the head of the list, or 2
332 * if a type specific operation is underway.
335 static int do_promote(struct gfs2_glock *gl)
336 __releases(&gl->gl_spin)
337 __acquires(&gl->gl_spin)
339 const struct gfs2_glock_operations *glops = gl->gl_ops;
340 struct gfs2_holder *gh, *tmp;
344 list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) {
345 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
347 if (may_grant(gl, gh)) {
348 if (gh->gh_list.prev == &gl->gl_holders &&
350 spin_unlock(&gl->gl_spin);
351 /* FIXME: eliminate this eventually */
352 ret = glops->go_lock(gh);
353 spin_lock(&gl->gl_spin);
358 list_del_init(&gh->gh_list);
359 trace_gfs2_glock_queue(gh, 0);
360 gfs2_holder_wake(gh);
363 set_bit(HIF_HOLDER, &gh->gh_iflags);
364 trace_gfs2_promote(gh, 1);
365 gfs2_holder_wake(gh);
368 set_bit(HIF_HOLDER, &gh->gh_iflags);
369 trace_gfs2_promote(gh, 0);
370 gfs2_holder_wake(gh);
373 if (gh->gh_list.prev == &gl->gl_holders)
382 * find_first_waiter - find the first gh that's waiting for the glock
386 static inline struct gfs2_holder *find_first_waiter(const struct gfs2_glock *gl)
388 struct gfs2_holder *gh;
390 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
391 if (!test_bit(HIF_HOLDER, &gh->gh_iflags))
398 * state_change - record that the glock is now in a different state
400 * @new_state the new state
404 static void state_change(struct gfs2_glock *gl, unsigned int new_state)
408 held1 = (gl->gl_state != LM_ST_UNLOCKED);
409 held2 = (new_state != LM_ST_UNLOCKED);
411 if (held1 != held2) {
415 gfs2_glock_put_nolock(gl);
417 if (held1 && held2 && list_empty(&gl->gl_holders))
418 clear_bit(GLF_QUEUED, &gl->gl_flags);
420 if (new_state != gl->gl_target)
421 /* shorten our minimum hold time */
422 gl->gl_hold_time = max(gl->gl_hold_time - GL_GLOCK_HOLD_DECR,
424 gl->gl_state = new_state;
425 gl->gl_tchange = jiffies;
428 static void gfs2_demote_wake(struct gfs2_glock *gl)
430 gl->gl_demote_state = LM_ST_EXCLUSIVE;
431 clear_bit(GLF_DEMOTE, &gl->gl_flags);
432 smp_mb__after_clear_bit();
433 wake_up_bit(&gl->gl_flags, GLF_DEMOTE);
437 * finish_xmote - The DLM has replied to one of our lock requests
439 * @ret: The status from the DLM
443 static void finish_xmote(struct gfs2_glock *gl, unsigned int ret)
445 const struct gfs2_glock_operations *glops = gl->gl_ops;
446 struct gfs2_holder *gh;
447 unsigned state = ret & LM_OUT_ST_MASK;
450 spin_lock(&gl->gl_spin);
451 trace_gfs2_glock_state_change(gl, state);
452 state_change(gl, state);
453 gh = find_first_waiter(gl);
455 /* Demote to UN request arrived during demote to SH or DF */
456 if (test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags) &&
457 state != LM_ST_UNLOCKED && gl->gl_demote_state == LM_ST_UNLOCKED)
458 gl->gl_target = LM_ST_UNLOCKED;
460 /* Check for state != intended state */
461 if (unlikely(state != gl->gl_target)) {
462 if (gh && !test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags)) {
463 /* move to back of queue and try next entry */
464 if (ret & LM_OUT_CANCELED) {
465 if ((gh->gh_flags & LM_FLAG_PRIORITY) == 0)
466 list_move_tail(&gh->gh_list, &gl->gl_holders);
467 gh = find_first_waiter(gl);
468 gl->gl_target = gh->gh_state;
471 /* Some error or failed "try lock" - report it */
472 if ((ret & LM_OUT_ERROR) ||
473 (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) {
474 gl->gl_target = gl->gl_state;
480 /* Unlocked due to conversion deadlock, try again */
483 do_xmote(gl, gh, gl->gl_target);
485 /* Conversion fails, unlock and try again */
488 do_xmote(gl, gh, LM_ST_UNLOCKED);
490 default: /* Everything else */
491 printk(KERN_ERR "GFS2: wanted %u got %u\n", gl->gl_target, state);
494 spin_unlock(&gl->gl_spin);
498 /* Fast path - we got what we asked for */
499 if (test_and_clear_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags))
500 gfs2_demote_wake(gl);
501 if (state != LM_ST_UNLOCKED) {
502 if (glops->go_xmote_bh) {
503 spin_unlock(&gl->gl_spin);
504 rv = glops->go_xmote_bh(gl, gh);
505 spin_lock(&gl->gl_spin);
516 clear_bit(GLF_LOCK, &gl->gl_flags);
518 spin_unlock(&gl->gl_spin);
522 * do_xmote - Calls the DLM to change the state of a lock
523 * @gl: The lock state
524 * @gh: The holder (only for promotes)
525 * @target: The target lock state
529 static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target)
530 __releases(&gl->gl_spin)
531 __acquires(&gl->gl_spin)
533 const struct gfs2_glock_operations *glops = gl->gl_ops;
534 struct gfs2_sbd *sdp = gl->gl_sbd;
535 unsigned int lck_flags = gh ? gh->gh_flags : 0;
538 lck_flags &= (LM_FLAG_TRY | LM_FLAG_TRY_1CB | LM_FLAG_NOEXP |
540 GLOCK_BUG_ON(gl, gl->gl_state == target);
541 GLOCK_BUG_ON(gl, gl->gl_state == gl->gl_target);
542 if ((target == LM_ST_UNLOCKED || target == LM_ST_DEFERRED) &&
544 set_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags);
545 do_error(gl, 0); /* Fail queued try locks */
548 set_bit(GLF_BLOCKING, &gl->gl_flags);
549 if ((gl->gl_req == LM_ST_UNLOCKED) ||
550 (gl->gl_state == LM_ST_EXCLUSIVE) ||
551 (lck_flags & (LM_FLAG_TRY|LM_FLAG_TRY_1CB)))
552 clear_bit(GLF_BLOCKING, &gl->gl_flags);
553 spin_unlock(&gl->gl_spin);
554 if (glops->go_xmote_th)
555 glops->go_xmote_th(gl);
556 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags))
557 glops->go_inval(gl, target == LM_ST_DEFERRED ? 0 : DIO_METADATA);
558 clear_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags);
561 if (sdp->sd_lockstruct.ls_ops->lm_lock) {
563 ret = sdp->sd_lockstruct.ls_ops->lm_lock(gl, target, lck_flags);
564 GLOCK_BUG_ON(gl, ret);
565 } else { /* lock_nolock */
566 finish_xmote(gl, target);
567 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
571 spin_lock(&gl->gl_spin);
575 * find_first_holder - find the first "holder" gh
579 static inline struct gfs2_holder *find_first_holder(const struct gfs2_glock *gl)
581 struct gfs2_holder *gh;
583 if (!list_empty(&gl->gl_holders)) {
584 gh = list_entry(gl->gl_holders.next, struct gfs2_holder, gh_list);
585 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
592 * run_queue - do all outstanding tasks related to a glock
593 * @gl: The glock in question
594 * @nonblock: True if we must not block in run_queue
598 static void run_queue(struct gfs2_glock *gl, const int nonblock)
599 __releases(&gl->gl_spin)
600 __acquires(&gl->gl_spin)
602 struct gfs2_holder *gh = NULL;
605 if (test_and_set_bit(GLF_LOCK, &gl->gl_flags))
608 GLOCK_BUG_ON(gl, test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags));
610 if (test_bit(GLF_DEMOTE, &gl->gl_flags) &&
611 gl->gl_demote_state != gl->gl_state) {
612 if (find_first_holder(gl))
616 set_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags);
617 GLOCK_BUG_ON(gl, gl->gl_demote_state == LM_ST_EXCLUSIVE);
618 gl->gl_target = gl->gl_demote_state;
620 if (test_bit(GLF_DEMOTE, &gl->gl_flags))
621 gfs2_demote_wake(gl);
622 ret = do_promote(gl);
627 gh = find_first_waiter(gl);
628 gl->gl_target = gh->gh_state;
629 if (!(gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)))
630 do_error(gl, 0); /* Fail queued try locks */
632 do_xmote(gl, gh, gl->gl_target);
637 clear_bit(GLF_LOCK, &gl->gl_flags);
638 smp_mb__after_clear_bit();
640 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
641 gfs2_glock_put_nolock(gl);
645 clear_bit(GLF_LOCK, &gl->gl_flags);
646 smp_mb__after_clear_bit();
650 static void delete_work_func(struct work_struct *work)
652 struct gfs2_glock *gl = container_of(work, struct gfs2_glock, gl_delete);
653 struct gfs2_sbd *sdp = gl->gl_sbd;
654 struct gfs2_inode *ip;
656 u64 no_addr = gl->gl_name.ln_number;
659 /* Note: Unsafe to dereference ip as we don't hold right refs/locks */
662 inode = gfs2_ilookup(sdp->sd_vfs, no_addr, 1);
664 inode = gfs2_lookup_by_inum(sdp, no_addr, NULL, GFS2_BLKST_UNLINKED);
665 if (inode && !IS_ERR(inode)) {
666 d_prune_aliases(inode);
672 static void glock_work_func(struct work_struct *work)
674 unsigned long delay = 0;
675 struct gfs2_glock *gl = container_of(work, struct gfs2_glock, gl_work.work);
678 if (test_and_clear_bit(GLF_REPLY_PENDING, &gl->gl_flags)) {
679 finish_xmote(gl, gl->gl_reply);
682 spin_lock(&gl->gl_spin);
683 if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
684 gl->gl_state != LM_ST_UNLOCKED &&
685 gl->gl_demote_state != LM_ST_EXCLUSIVE) {
686 unsigned long holdtime, now = jiffies;
688 holdtime = gl->gl_tchange + gl->gl_hold_time;
689 if (time_before(now, holdtime))
690 delay = holdtime - now;
693 clear_bit(GLF_PENDING_DEMOTE, &gl->gl_flags);
694 set_bit(GLF_DEMOTE, &gl->gl_flags);
698 spin_unlock(&gl->gl_spin);
702 if (gl->gl_name.ln_type != LM_TYPE_INODE)
704 if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
712 * gfs2_glock_get() - Get a glock, or create one if one doesn't exist
713 * @sdp: The GFS2 superblock
714 * @number: the lock number
715 * @glops: The glock_operations to use
716 * @create: If 0, don't create the glock if it doesn't exist
717 * @glp: the glock is returned here
719 * This does not lock a glock, just finds/creates structures for one.
724 int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number,
725 const struct gfs2_glock_operations *glops, int create,
726 struct gfs2_glock **glp)
728 struct super_block *s = sdp->sd_vfs;
729 struct lm_lockname name = { .ln_number = number, .ln_type = glops->go_type };
730 struct gfs2_glock *gl, *tmp;
731 unsigned int hash = gl_hash(sdp, &name);
732 struct address_space *mapping;
733 struct kmem_cache *cachep;
736 gl = search_bucket(hash, sdp, &name);
745 if (glops->go_flags & GLOF_ASPACE)
746 cachep = gfs2_glock_aspace_cachep;
748 cachep = gfs2_glock_cachep;
749 gl = kmem_cache_alloc(cachep, GFP_KERNEL);
753 atomic_inc(&sdp->sd_glock_disposal);
757 atomic_set(&gl->gl_ref, 1);
758 gl->gl_state = LM_ST_UNLOCKED;
759 gl->gl_target = LM_ST_UNLOCKED;
760 gl->gl_demote_state = LM_ST_EXCLUSIVE;
763 gl->gl_dstamp = ktime_set(0, 0);
765 /* We use the global stats to estimate the initial per-glock stats */
766 gl->gl_stats = this_cpu_ptr(sdp->sd_lkstats)->lkstats[glops->go_type];
768 gl->gl_stats.stats[GFS2_LKS_DCOUNT] = 0;
769 gl->gl_stats.stats[GFS2_LKS_QCOUNT] = 0;
770 memset(&gl->gl_lksb, 0, sizeof(struct dlm_lksb));
771 memset(gl->gl_lvb, 0, 32 * sizeof(char));
772 gl->gl_lksb.sb_lvbptr = gl->gl_lvb;
773 gl->gl_tchange = jiffies;
774 gl->gl_object = NULL;
775 gl->gl_hold_time = GL_GLOCK_DFT_HOLD;
776 INIT_DELAYED_WORK(&gl->gl_work, glock_work_func);
777 INIT_WORK(&gl->gl_delete, delete_work_func);
779 mapping = gfs2_glock2aspace(gl);
781 mapping->a_ops = &gfs2_meta_aops;
782 mapping->host = s->s_bdev->bd_inode;
784 mapping_set_gfp_mask(mapping, GFP_NOFS);
785 mapping->assoc_mapping = NULL;
786 mapping->backing_dev_info = s->s_bdi;
787 mapping->writeback_index = 0;
790 spin_lock_bucket(hash);
791 tmp = search_bucket(hash, sdp, &name);
793 spin_unlock_bucket(hash);
794 kmem_cache_free(cachep, gl);
795 atomic_dec(&sdp->sd_glock_disposal);
798 hlist_bl_add_head_rcu(&gl->gl_list, &gl_hash_table[hash]);
799 spin_unlock_bucket(hash);
808 * gfs2_holder_init - initialize a struct gfs2_holder in the default way
810 * @state: the state we're requesting
811 * @flags: the modifier flags
812 * @gh: the holder structure
816 void gfs2_holder_init(struct gfs2_glock *gl, unsigned int state, unsigned flags,
817 struct gfs2_holder *gh)
819 INIT_LIST_HEAD(&gh->gh_list);
821 gh->gh_ip = (unsigned long)__builtin_return_address(0);
822 gh->gh_owner_pid = get_pid(task_pid(current));
823 gh->gh_state = state;
824 gh->gh_flags = flags;
831 * gfs2_holder_reinit - reinitialize a struct gfs2_holder so we can requeue it
832 * @state: the state we're requesting
833 * @flags: the modifier flags
834 * @gh: the holder structure
836 * Don't mess with the glock.
840 void gfs2_holder_reinit(unsigned int state, unsigned flags, struct gfs2_holder *gh)
842 gh->gh_state = state;
843 gh->gh_flags = flags;
845 gh->gh_ip = (unsigned long)__builtin_return_address(0);
846 if (gh->gh_owner_pid)
847 put_pid(gh->gh_owner_pid);
848 gh->gh_owner_pid = get_pid(task_pid(current));
852 * gfs2_holder_uninit - uninitialize a holder structure (drop glock reference)
853 * @gh: the holder structure
857 void gfs2_holder_uninit(struct gfs2_holder *gh)
859 put_pid(gh->gh_owner_pid);
860 gfs2_glock_put(gh->gh_gl);
866 * gfs2_glock_holder_wait
869 * This function and gfs2_glock_demote_wait both show up in the WCHAN
870 * field. Thus I've separated these otherwise identical functions in
871 * order to be more informative to the user.
874 static int gfs2_glock_holder_wait(void *word)
880 static int gfs2_glock_demote_wait(void *word)
886 static void wait_on_holder(struct gfs2_holder *gh)
888 unsigned long time1 = jiffies;
891 wait_on_bit(&gh->gh_iflags, HIF_WAIT, gfs2_glock_holder_wait, TASK_UNINTERRUPTIBLE);
892 if (time_after(jiffies, time1 + HZ)) /* have we waited > a second? */
893 /* Lengthen the minimum hold time. */
894 gh->gh_gl->gl_hold_time = min(gh->gh_gl->gl_hold_time +
899 static void wait_on_demote(struct gfs2_glock *gl)
902 wait_on_bit(&gl->gl_flags, GLF_DEMOTE, gfs2_glock_demote_wait, TASK_UNINTERRUPTIBLE);
906 * handle_callback - process a demote request
908 * @state: the state the caller wants us to change to
910 * There are only two requests that we are going to see in actual
911 * practise: LM_ST_SHARED and LM_ST_UNLOCKED
914 static void handle_callback(struct gfs2_glock *gl, unsigned int state,
917 int bit = delay ? GLF_PENDING_DEMOTE : GLF_DEMOTE;
919 set_bit(bit, &gl->gl_flags);
920 if (gl->gl_demote_state == LM_ST_EXCLUSIVE) {
921 gl->gl_demote_state = state;
922 gl->gl_demote_time = jiffies;
923 } else if (gl->gl_demote_state != LM_ST_UNLOCKED &&
924 gl->gl_demote_state != state) {
925 gl->gl_demote_state = LM_ST_UNLOCKED;
927 if (gl->gl_ops->go_callback)
928 gl->gl_ops->go_callback(gl);
929 trace_gfs2_demote_rq(gl);
933 * gfs2_glock_wait - wait on a glock acquisition
934 * @gh: the glock holder
936 * Returns: 0 on success
939 int gfs2_glock_wait(struct gfs2_holder *gh)
945 void gfs2_print_dbg(struct seq_file *seq, const char *fmt, ...)
947 struct va_format vaf;
953 seq_vprintf(seq, fmt, args);
958 printk(KERN_ERR " %pV", &vaf);
965 * add_to_queue - Add a holder to the wait queue (but look for recursion)
966 * @gh: the holder structure to add
968 * Eventually we should move the recursive locking trap to a
969 * debugging option or something like that. This is the fast
970 * path and needs to have the minimum number of distractions.
974 static inline void add_to_queue(struct gfs2_holder *gh)
975 __releases(&gl->gl_spin)
976 __acquires(&gl->gl_spin)
978 struct gfs2_glock *gl = gh->gh_gl;
979 struct gfs2_sbd *sdp = gl->gl_sbd;
980 struct list_head *insert_pt = NULL;
981 struct gfs2_holder *gh2;
984 BUG_ON(gh->gh_owner_pid == NULL);
985 if (test_and_set_bit(HIF_WAIT, &gh->gh_iflags))
988 if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) {
989 if (test_bit(GLF_LOCK, &gl->gl_flags))
991 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags))
995 list_for_each_entry(gh2, &gl->gl_holders, gh_list) {
996 if (unlikely(gh2->gh_owner_pid == gh->gh_owner_pid &&
997 (gh->gh_gl->gl_ops->go_type != LM_TYPE_FLOCK)))
1000 !(gh2->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) &&
1001 !may_grant(gl, gh)) {
1003 gh->gh_error = GLR_TRYFAILED;
1004 gfs2_holder_wake(gh);
1007 if (test_bit(HIF_HOLDER, &gh2->gh_iflags))
1009 if (unlikely((gh->gh_flags & LM_FLAG_PRIORITY) && !insert_pt))
1010 insert_pt = &gh2->gh_list;
1012 set_bit(GLF_QUEUED, &gl->gl_flags);
1013 trace_gfs2_glock_queue(gh, 1);
1014 gfs2_glstats_inc(gl, GFS2_LKS_QCOUNT);
1015 gfs2_sbstats_inc(gl, GFS2_LKS_QCOUNT);
1016 if (likely(insert_pt == NULL)) {
1017 list_add_tail(&gh->gh_list, &gl->gl_holders);
1018 if (unlikely(gh->gh_flags & LM_FLAG_PRIORITY))
1022 list_add_tail(&gh->gh_list, insert_pt);
1024 gh = list_entry(gl->gl_holders.next, struct gfs2_holder, gh_list);
1025 if (!(gh->gh_flags & LM_FLAG_PRIORITY)) {
1026 spin_unlock(&gl->gl_spin);
1027 if (sdp->sd_lockstruct.ls_ops->lm_cancel)
1028 sdp->sd_lockstruct.ls_ops->lm_cancel(gl);
1029 spin_lock(&gl->gl_spin);
1034 print_symbol(KERN_ERR "original: %s\n", gh2->gh_ip);
1035 printk(KERN_ERR "pid: %d\n", pid_nr(gh2->gh_owner_pid));
1036 printk(KERN_ERR "lock type: %d req lock state : %d\n",
1037 gh2->gh_gl->gl_name.ln_type, gh2->gh_state);
1038 print_symbol(KERN_ERR "new: %s\n", gh->gh_ip);
1039 printk(KERN_ERR "pid: %d\n", pid_nr(gh->gh_owner_pid));
1040 printk(KERN_ERR "lock type: %d req lock state : %d\n",
1041 gh->gh_gl->gl_name.ln_type, gh->gh_state);
1042 __dump_glock(NULL, gl);
1047 * gfs2_glock_nq - enqueue a struct gfs2_holder onto a glock (acquire a glock)
1048 * @gh: the holder structure
1050 * if (gh->gh_flags & GL_ASYNC), this never returns an error
1052 * Returns: 0, GLR_TRYFAILED, or errno on failure
1055 int gfs2_glock_nq(struct gfs2_holder *gh)
1057 struct gfs2_glock *gl = gh->gh_gl;
1058 struct gfs2_sbd *sdp = gl->gl_sbd;
1061 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
1064 if (test_bit(GLF_LRU, &gl->gl_flags))
1065 gfs2_glock_remove_from_lru(gl);
1067 spin_lock(&gl->gl_spin);
1069 if ((LM_FLAG_NOEXP & gh->gh_flags) &&
1070 test_and_clear_bit(GLF_FROZEN, &gl->gl_flags))
1071 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
1073 spin_unlock(&gl->gl_spin);
1075 if (!(gh->gh_flags & GL_ASYNC))
1076 error = gfs2_glock_wait(gh);
1082 * gfs2_glock_poll - poll to see if an async request has been completed
1085 * Returns: 1 if the request is ready to be gfs2_glock_wait()ed on
1088 int gfs2_glock_poll(struct gfs2_holder *gh)
1090 return test_bit(HIF_WAIT, &gh->gh_iflags) ? 0 : 1;
1094 * gfs2_glock_dq - dequeue a struct gfs2_holder from a glock (release a glock)
1095 * @gh: the glock holder
1099 void gfs2_glock_dq(struct gfs2_holder *gh)
1101 struct gfs2_glock *gl = gh->gh_gl;
1102 const struct gfs2_glock_operations *glops = gl->gl_ops;
1106 spin_lock(&gl->gl_spin);
1107 if (gh->gh_flags & GL_NOCACHE)
1108 handle_callback(gl, LM_ST_UNLOCKED, 0);
1110 list_del_init(&gh->gh_list);
1111 if (find_first_holder(gl) == NULL) {
1112 if (glops->go_unlock) {
1113 GLOCK_BUG_ON(gl, test_and_set_bit(GLF_LOCK, &gl->gl_flags));
1114 spin_unlock(&gl->gl_spin);
1115 glops->go_unlock(gh);
1116 spin_lock(&gl->gl_spin);
1117 clear_bit(GLF_LOCK, &gl->gl_flags);
1119 if (list_empty(&gl->gl_holders) &&
1120 !test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
1121 !test_bit(GLF_DEMOTE, &gl->gl_flags))
1124 if (!test_bit(GLF_LFLUSH, &gl->gl_flags))
1125 __gfs2_glock_schedule_for_reclaim(gl);
1126 trace_gfs2_glock_queue(gh, 0);
1127 spin_unlock(&gl->gl_spin);
1128 if (likely(fast_path))
1131 gfs2_glock_hold(gl);
1132 if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
1133 !test_bit(GLF_DEMOTE, &gl->gl_flags) &&
1134 gl->gl_name.ln_type == LM_TYPE_INODE)
1135 delay = gl->gl_hold_time;
1136 if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
1140 void gfs2_glock_dq_wait(struct gfs2_holder *gh)
1142 struct gfs2_glock *gl = gh->gh_gl;
1148 * gfs2_glock_dq_uninit - dequeue a holder from a glock and initialize it
1149 * @gh: the holder structure
1153 void gfs2_glock_dq_uninit(struct gfs2_holder *gh)
1156 gfs2_holder_uninit(gh);
1160 * gfs2_glock_nq_num - acquire a glock based on lock number
1161 * @sdp: the filesystem
1162 * @number: the lock number
1163 * @glops: the glock operations for the type of glock
1164 * @state: the state to acquire the glock in
1165 * @flags: modifier flags for the acquisition
1166 * @gh: the struct gfs2_holder
1171 int gfs2_glock_nq_num(struct gfs2_sbd *sdp, u64 number,
1172 const struct gfs2_glock_operations *glops,
1173 unsigned int state, int flags, struct gfs2_holder *gh)
1175 struct gfs2_glock *gl;
1178 error = gfs2_glock_get(sdp, number, glops, CREATE, &gl);
1180 error = gfs2_glock_nq_init(gl, state, flags, gh);
1188 * glock_compare - Compare two struct gfs2_glock structures for sorting
1189 * @arg_a: the first structure
1190 * @arg_b: the second structure
1194 static int glock_compare(const void *arg_a, const void *arg_b)
1196 const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1197 const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1198 const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1199 const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
1201 if (a->ln_number > b->ln_number)
1203 if (a->ln_number < b->ln_number)
1205 BUG_ON(gh_a->gh_gl->gl_ops->go_type == gh_b->gh_gl->gl_ops->go_type);
1210 * nq_m_sync - synchonously acquire more than one glock in deadlock free order
1211 * @num_gh: the number of structures
1212 * @ghs: an array of struct gfs2_holder structures
1214 * Returns: 0 on success (all glocks acquired),
1215 * errno on failure (no glocks acquired)
1218 static int nq_m_sync(unsigned int num_gh, struct gfs2_holder *ghs,
1219 struct gfs2_holder **p)
1224 for (x = 0; x < num_gh; x++)
1227 sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare, NULL);
1229 for (x = 0; x < num_gh; x++) {
1230 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1232 error = gfs2_glock_nq(p[x]);
1235 gfs2_glock_dq(p[x]);
1244 * gfs2_glock_nq_m - acquire multiple glocks
1245 * @num_gh: the number of structures
1246 * @ghs: an array of struct gfs2_holder structures
1249 * Returns: 0 on success (all glocks acquired),
1250 * errno on failure (no glocks acquired)
1253 int gfs2_glock_nq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1255 struct gfs2_holder *tmp[4];
1256 struct gfs2_holder **pph = tmp;
1263 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1264 return gfs2_glock_nq(ghs);
1268 pph = kmalloc(num_gh * sizeof(struct gfs2_holder *), GFP_NOFS);
1273 error = nq_m_sync(num_gh, ghs, pph);
1282 * gfs2_glock_dq_m - release multiple glocks
1283 * @num_gh: the number of structures
1284 * @ghs: an array of struct gfs2_holder structures
1288 void gfs2_glock_dq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1291 gfs2_glock_dq(&ghs[num_gh]);
1295 * gfs2_glock_dq_uninit_m - release multiple glocks
1296 * @num_gh: the number of structures
1297 * @ghs: an array of struct gfs2_holder structures
1301 void gfs2_glock_dq_uninit_m(unsigned int num_gh, struct gfs2_holder *ghs)
1304 gfs2_glock_dq_uninit(&ghs[num_gh]);
1307 void gfs2_glock_cb(struct gfs2_glock *gl, unsigned int state)
1309 unsigned long delay = 0;
1310 unsigned long holdtime;
1311 unsigned long now = jiffies;
1313 gfs2_glock_hold(gl);
1314 holdtime = gl->gl_tchange + gl->gl_hold_time;
1315 if (test_bit(GLF_QUEUED, &gl->gl_flags) &&
1316 gl->gl_name.ln_type == LM_TYPE_INODE) {
1317 if (time_before(now, holdtime))
1318 delay = holdtime - now;
1319 if (test_bit(GLF_REPLY_PENDING, &gl->gl_flags))
1320 delay = gl->gl_hold_time;
1323 spin_lock(&gl->gl_spin);
1324 handle_callback(gl, state, delay);
1325 spin_unlock(&gl->gl_spin);
1326 if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
1331 * gfs2_should_freeze - Figure out if glock should be frozen
1332 * @gl: The glock in question
1334 * Glocks are not frozen if (a) the result of the dlm operation is
1335 * an error, (b) the locking operation was an unlock operation or
1336 * (c) if there is a "noexp" flagged request anywhere in the queue
1338 * Returns: 1 if freezing should occur, 0 otherwise
1341 static int gfs2_should_freeze(const struct gfs2_glock *gl)
1343 const struct gfs2_holder *gh;
1345 if (gl->gl_reply & ~LM_OUT_ST_MASK)
1347 if (gl->gl_target == LM_ST_UNLOCKED)
1350 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
1351 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
1353 if (LM_FLAG_NOEXP & gh->gh_flags)
1361 * gfs2_glock_complete - Callback used by locking
1362 * @gl: Pointer to the glock
1363 * @ret: The return value from the dlm
1365 * The gl_reply field is under the gl_spin lock so that it is ok
1366 * to use a bitfield shared with other glock state fields.
1369 void gfs2_glock_complete(struct gfs2_glock *gl, int ret)
1371 struct lm_lockstruct *ls = &gl->gl_sbd->sd_lockstruct;
1373 spin_lock(&gl->gl_spin);
1376 if (unlikely(test_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags))) {
1377 if (gfs2_should_freeze(gl)) {
1378 set_bit(GLF_FROZEN, &gl->gl_flags);
1379 spin_unlock(&gl->gl_spin);
1384 spin_unlock(&gl->gl_spin);
1385 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
1387 gfs2_glock_hold(gl);
1388 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1393 static int gfs2_shrink_glock_memory(struct shrinker *shrink,
1394 struct shrink_control *sc)
1396 struct gfs2_glock *gl;
1399 int nr = sc->nr_to_scan;
1400 gfp_t gfp_mask = sc->gfp_mask;
1406 if (!(gfp_mask & __GFP_FS))
1409 spin_lock(&lru_lock);
1410 while(nr && !list_empty(&lru_list)) {
1411 gl = list_entry(lru_list.next, struct gfs2_glock, gl_lru);
1412 list_del_init(&gl->gl_lru);
1413 clear_bit(GLF_LRU, &gl->gl_flags);
1414 atomic_dec(&lru_count);
1416 /* Test for being demotable */
1417 if (!test_and_set_bit(GLF_LOCK, &gl->gl_flags)) {
1418 gfs2_glock_hold(gl);
1419 spin_unlock(&lru_lock);
1420 spin_lock(&gl->gl_spin);
1421 may_demote = demote_ok(gl);
1423 handle_callback(gl, LM_ST_UNLOCKED, 0);
1426 clear_bit(GLF_LOCK, &gl->gl_flags);
1427 smp_mb__after_clear_bit();
1428 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1429 gfs2_glock_put_nolock(gl);
1430 spin_unlock(&gl->gl_spin);
1431 spin_lock(&lru_lock);
1435 list_add(&gl->gl_lru, &skipped);
1436 set_bit(GLF_LRU, &gl->gl_flags);
1438 list_splice(&skipped, &lru_list);
1439 atomic_add(nr_skipped, &lru_count);
1440 spin_unlock(&lru_lock);
1442 return (atomic_read(&lru_count) / 100) * sysctl_vfs_cache_pressure;
1445 static struct shrinker glock_shrinker = {
1446 .shrink = gfs2_shrink_glock_memory,
1447 .seeks = DEFAULT_SEEKS,
1451 * examine_bucket - Call a function for glock in a hash bucket
1452 * @examiner: the function
1453 * @sdp: the filesystem
1454 * @bucket: the bucket
1458 static void examine_bucket(glock_examiner examiner, const struct gfs2_sbd *sdp,
1461 struct gfs2_glock *gl;
1462 struct hlist_bl_head *head = &gl_hash_table[hash];
1463 struct hlist_bl_node *pos;
1466 hlist_bl_for_each_entry_rcu(gl, pos, head, gl_list) {
1467 if ((gl->gl_sbd == sdp) && atomic_read(&gl->gl_ref))
1474 static void glock_hash_walk(glock_examiner examiner, const struct gfs2_sbd *sdp)
1478 for (x = 0; x < GFS2_GL_HASH_SIZE; x++)
1479 examine_bucket(examiner, sdp, x);
1484 * thaw_glock - thaw out a glock which has an unprocessed reply waiting
1485 * @gl: The glock to thaw
1487 * N.B. When we freeze a glock, we leave a ref to the glock outstanding,
1488 * so this has to result in the ref count being dropped by one.
1491 static void thaw_glock(struct gfs2_glock *gl)
1493 if (!test_and_clear_bit(GLF_FROZEN, &gl->gl_flags))
1495 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
1496 gfs2_glock_hold(gl);
1497 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1502 * clear_glock - look at a glock and see if we can free it from glock cache
1503 * @gl: the glock to look at
1507 static void clear_glock(struct gfs2_glock *gl)
1509 gfs2_glock_remove_from_lru(gl);
1511 spin_lock(&gl->gl_spin);
1512 if (gl->gl_state != LM_ST_UNLOCKED)
1513 handle_callback(gl, LM_ST_UNLOCKED, 0);
1514 spin_unlock(&gl->gl_spin);
1515 gfs2_glock_hold(gl);
1516 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1521 * gfs2_glock_thaw - Thaw any frozen glocks
1522 * @sdp: The super block
1526 void gfs2_glock_thaw(struct gfs2_sbd *sdp)
1528 glock_hash_walk(thaw_glock, sdp);
1531 static int dump_glock(struct seq_file *seq, struct gfs2_glock *gl)
1534 spin_lock(&gl->gl_spin);
1535 ret = __dump_glock(seq, gl);
1536 spin_unlock(&gl->gl_spin);
1540 static void dump_glock_func(struct gfs2_glock *gl)
1542 dump_glock(NULL, gl);
1546 * gfs2_gl_hash_clear - Empty out the glock hash table
1547 * @sdp: the filesystem
1548 * @wait: wait until it's all gone
1550 * Called when unmounting the filesystem.
1553 void gfs2_gl_hash_clear(struct gfs2_sbd *sdp)
1555 glock_hash_walk(clear_glock, sdp);
1556 flush_workqueue(glock_workqueue);
1557 wait_event(sdp->sd_glock_wait, atomic_read(&sdp->sd_glock_disposal) == 0);
1558 glock_hash_walk(dump_glock_func, sdp);
1561 void gfs2_glock_finish_truncate(struct gfs2_inode *ip)
1563 struct gfs2_glock *gl = ip->i_gl;
1566 ret = gfs2_truncatei_resume(ip);
1567 gfs2_assert_withdraw(gl->gl_sbd, ret == 0);
1569 spin_lock(&gl->gl_spin);
1570 clear_bit(GLF_LOCK, &gl->gl_flags);
1572 spin_unlock(&gl->gl_spin);
1575 static const char *state2str(unsigned state)
1578 case LM_ST_UNLOCKED:
1582 case LM_ST_DEFERRED:
1584 case LM_ST_EXCLUSIVE:
1590 static const char *hflags2str(char *buf, unsigned flags, unsigned long iflags)
1593 if (flags & LM_FLAG_TRY)
1595 if (flags & LM_FLAG_TRY_1CB)
1597 if (flags & LM_FLAG_NOEXP)
1599 if (flags & LM_FLAG_ANY)
1601 if (flags & LM_FLAG_PRIORITY)
1603 if (flags & GL_ASYNC)
1605 if (flags & GL_EXACT)
1607 if (flags & GL_NOCACHE)
1609 if (test_bit(HIF_HOLDER, &iflags))
1611 if (test_bit(HIF_WAIT, &iflags))
1613 if (test_bit(HIF_FIRST, &iflags))
1620 * dump_holder - print information about a glock holder
1621 * @seq: the seq_file struct
1622 * @gh: the glock holder
1624 * Returns: 0 on success, -ENOBUFS when we run out of space
1627 static int dump_holder(struct seq_file *seq, const struct gfs2_holder *gh)
1629 struct task_struct *gh_owner = NULL;
1632 if (gh->gh_owner_pid)
1633 gh_owner = pid_task(gh->gh_owner_pid, PIDTYPE_PID);
1634 gfs2_print_dbg(seq, " H: s:%s f:%s e:%d p:%ld [%s] %pS\n",
1635 state2str(gh->gh_state),
1636 hflags2str(flags_buf, gh->gh_flags, gh->gh_iflags),
1638 gh->gh_owner_pid ? (long)pid_nr(gh->gh_owner_pid) : -1,
1639 gh_owner ? gh_owner->comm : "(ended)",
1644 static const char *gflags2str(char *buf, const struct gfs2_glock *gl)
1646 const unsigned long *gflags = &gl->gl_flags;
1649 if (test_bit(GLF_LOCK, gflags))
1651 if (test_bit(GLF_DEMOTE, gflags))
1653 if (test_bit(GLF_PENDING_DEMOTE, gflags))
1655 if (test_bit(GLF_DEMOTE_IN_PROGRESS, gflags))
1657 if (test_bit(GLF_DIRTY, gflags))
1659 if (test_bit(GLF_LFLUSH, gflags))
1661 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, gflags))
1663 if (test_bit(GLF_REPLY_PENDING, gflags))
1665 if (test_bit(GLF_INITIAL, gflags))
1667 if (test_bit(GLF_FROZEN, gflags))
1669 if (test_bit(GLF_QUEUED, gflags))
1671 if (test_bit(GLF_LRU, gflags))
1675 if (test_bit(GLF_BLOCKING, gflags))
1682 * __dump_glock - print information about a glock
1683 * @seq: The seq_file struct
1686 * The file format is as follows:
1687 * One line per object, capital letters are used to indicate objects
1688 * G = glock, I = Inode, R = rgrp, H = holder. Glocks are not indented,
1689 * other objects are indented by a single space and follow the glock to
1690 * which they are related. Fields are indicated by lower case letters
1691 * followed by a colon and the field value, except for strings which are in
1692 * [] so that its possible to see if they are composed of spaces for
1693 * example. The field's are n = number (id of the object), f = flags,
1694 * t = type, s = state, r = refcount, e = error, p = pid.
1696 * Returns: 0 on success, -ENOBUFS when we run out of space
1699 static int __dump_glock(struct seq_file *seq, const struct gfs2_glock *gl)
1701 const struct gfs2_glock_operations *glops = gl->gl_ops;
1702 unsigned long long dtime;
1703 const struct gfs2_holder *gh;
1704 char gflags_buf[32];
1707 dtime = jiffies - gl->gl_demote_time;
1708 dtime *= 1000000/HZ; /* demote time in uSec */
1709 if (!test_bit(GLF_DEMOTE, &gl->gl_flags))
1711 gfs2_print_dbg(seq, "G: s:%s n:%u/%llx f:%s t:%s d:%s/%llu a:%d v:%d r:%d m:%ld\n",
1712 state2str(gl->gl_state),
1713 gl->gl_name.ln_type,
1714 (unsigned long long)gl->gl_name.ln_number,
1715 gflags2str(gflags_buf, gl),
1716 state2str(gl->gl_target),
1717 state2str(gl->gl_demote_state), dtime,
1718 atomic_read(&gl->gl_ail_count),
1719 atomic_read(&gl->gl_revokes),
1720 atomic_read(&gl->gl_ref), gl->gl_hold_time);
1722 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
1723 error = dump_holder(seq, gh);
1727 if (gl->gl_state != LM_ST_UNLOCKED && glops->go_dump)
1728 error = glops->go_dump(seq, gl);
1733 static int gfs2_glstats_seq_show(struct seq_file *seq, void *iter_ptr)
1735 struct gfs2_glock *gl = iter_ptr;
1737 seq_printf(seq, "G: n:%u/%llx rtt:%lld/%lld rttb:%lld/%lld irt:%lld/%lld dcnt: %lld qcnt: %lld\n",
1738 gl->gl_name.ln_type,
1739 (unsigned long long)gl->gl_name.ln_number,
1740 (long long)gl->gl_stats.stats[GFS2_LKS_SRTT],
1741 (long long)gl->gl_stats.stats[GFS2_LKS_SRTTVAR],
1742 (long long)gl->gl_stats.stats[GFS2_LKS_SRTTB],
1743 (long long)gl->gl_stats.stats[GFS2_LKS_SRTTVARB],
1744 (long long)gl->gl_stats.stats[GFS2_LKS_SIRT],
1745 (long long)gl->gl_stats.stats[GFS2_LKS_SIRTVAR],
1746 (long long)gl->gl_stats.stats[GFS2_LKS_DCOUNT],
1747 (long long)gl->gl_stats.stats[GFS2_LKS_QCOUNT]);
1751 static const char *gfs2_gltype[] = {
1765 static const char *gfs2_stype[] = {
1766 [GFS2_LKS_SRTT] = "srtt",
1767 [GFS2_LKS_SRTTVAR] = "srttvar",
1768 [GFS2_LKS_SRTTB] = "srttb",
1769 [GFS2_LKS_SRTTVARB] = "srttvarb",
1770 [GFS2_LKS_SIRT] = "sirt",
1771 [GFS2_LKS_SIRTVAR] = "sirtvar",
1772 [GFS2_LKS_DCOUNT] = "dlm",
1773 [GFS2_LKS_QCOUNT] = "queue",
1776 #define GFS2_NR_SBSTATS (ARRAY_SIZE(gfs2_gltype) * ARRAY_SIZE(gfs2_stype))
1778 static int gfs2_sbstats_seq_show(struct seq_file *seq, void *iter_ptr)
1780 struct gfs2_glock_iter *gi = seq->private;
1781 struct gfs2_sbd *sdp = gi->sdp;
1782 unsigned index = gi->hash >> 3;
1783 unsigned subindex = gi->hash & 0x07;
1787 if (index == 0 && subindex != 0)
1790 seq_printf(seq, "%-10s %8s:", gfs2_gltype[index],
1791 (index == 0) ? "cpu": gfs2_stype[subindex]);
1793 for_each_possible_cpu(i) {
1794 const struct gfs2_pcpu_lkstats *lkstats = per_cpu_ptr(sdp->sd_lkstats, i);
1798 value = lkstats->lkstats[index - 1].stats[subindex];
1800 seq_printf(seq, " %15lld", (long long)value);
1802 seq_putc(seq, '\n');
1806 int __init gfs2_glock_init(void)
1809 for(i = 0; i < GFS2_GL_HASH_SIZE; i++) {
1810 INIT_HLIST_BL_HEAD(&gl_hash_table[i]);
1813 glock_workqueue = alloc_workqueue("glock_workqueue", WQ_MEM_RECLAIM |
1814 WQ_HIGHPRI | WQ_FREEZABLE, 0);
1815 if (IS_ERR(glock_workqueue))
1816 return PTR_ERR(glock_workqueue);
1817 gfs2_delete_workqueue = alloc_workqueue("delete_workqueue",
1818 WQ_MEM_RECLAIM | WQ_FREEZABLE,
1820 if (IS_ERR(gfs2_delete_workqueue)) {
1821 destroy_workqueue(glock_workqueue);
1822 return PTR_ERR(gfs2_delete_workqueue);
1825 register_shrinker(&glock_shrinker);
1830 void gfs2_glock_exit(void)
1832 unregister_shrinker(&glock_shrinker);
1833 destroy_workqueue(glock_workqueue);
1834 destroy_workqueue(gfs2_delete_workqueue);
1837 static inline struct gfs2_glock *glock_hash_chain(unsigned hash)
1839 return hlist_bl_entry(hlist_bl_first_rcu(&gl_hash_table[hash]),
1840 struct gfs2_glock, gl_list);
1843 static inline struct gfs2_glock *glock_hash_next(struct gfs2_glock *gl)
1845 return hlist_bl_entry(rcu_dereference(gl->gl_list.next),
1846 struct gfs2_glock, gl_list);
1849 static int gfs2_glock_iter_next(struct gfs2_glock_iter *gi)
1851 struct gfs2_glock *gl;
1856 gi->gl = glock_hash_next(gl);
1859 if (gi->hash >= GFS2_GL_HASH_SIZE) {
1863 gi->gl = glock_hash_chain(gi->hash);
1866 while (gi->gl == NULL) {
1868 if (gi->hash >= GFS2_GL_HASH_SIZE) {
1872 gi->gl = glock_hash_chain(gi->hash);
1875 /* Skip entries for other sb and dead entries */
1876 } while (gi->sdp != gi->gl->gl_sbd || atomic_read(&gi->gl->gl_ref) == 0);
1881 static void *gfs2_glock_seq_start(struct seq_file *seq, loff_t *pos)
1883 struct gfs2_glock_iter *gi = seq->private;
1886 if (gi->last_pos <= *pos)
1887 n = gi->nhash + (*pos - gi->last_pos);
1895 if (gfs2_glock_iter_next(gi))
1899 gi->last_pos = *pos;
1903 static void *gfs2_glock_seq_next(struct seq_file *seq, void *iter_ptr,
1906 struct gfs2_glock_iter *gi = seq->private;
1909 gi->last_pos = *pos;
1910 if (gfs2_glock_iter_next(gi))
1916 static void gfs2_glock_seq_stop(struct seq_file *seq, void *iter_ptr)
1918 struct gfs2_glock_iter *gi = seq->private;
1925 static int gfs2_glock_seq_show(struct seq_file *seq, void *iter_ptr)
1927 return dump_glock(seq, iter_ptr);
1930 static void *gfs2_sbstats_seq_start(struct seq_file *seq, loff_t *pos)
1932 struct gfs2_glock_iter *gi = seq->private;
1935 if (*pos >= GFS2_NR_SBSTATS)
1938 return SEQ_START_TOKEN;
1941 static void *gfs2_sbstats_seq_next(struct seq_file *seq, void *iter_ptr,
1944 struct gfs2_glock_iter *gi = seq->private;
1947 if (gi->hash >= GFS2_NR_SBSTATS) {
1951 return SEQ_START_TOKEN;
1954 static void gfs2_sbstats_seq_stop(struct seq_file *seq, void *iter_ptr)
1959 static const struct seq_operations gfs2_glock_seq_ops = {
1960 .start = gfs2_glock_seq_start,
1961 .next = gfs2_glock_seq_next,
1962 .stop = gfs2_glock_seq_stop,
1963 .show = gfs2_glock_seq_show,
1966 static const struct seq_operations gfs2_glstats_seq_ops = {
1967 .start = gfs2_glock_seq_start,
1968 .next = gfs2_glock_seq_next,
1969 .stop = gfs2_glock_seq_stop,
1970 .show = gfs2_glstats_seq_show,
1973 static const struct seq_operations gfs2_sbstats_seq_ops = {
1974 .start = gfs2_sbstats_seq_start,
1975 .next = gfs2_sbstats_seq_next,
1976 .stop = gfs2_sbstats_seq_stop,
1977 .show = gfs2_sbstats_seq_show,
1980 #define GFS2_SEQ_GOODSIZE min(PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER, 65536UL)
1982 static int gfs2_glocks_open(struct inode *inode, struct file *file)
1984 int ret = seq_open_private(file, &gfs2_glock_seq_ops,
1985 sizeof(struct gfs2_glock_iter));
1987 struct seq_file *seq = file->private_data;
1988 struct gfs2_glock_iter *gi = seq->private;
1989 gi->sdp = inode->i_private;
1990 seq->buf = kmalloc(GFS2_SEQ_GOODSIZE, GFP_KERNEL | __GFP_NOWARN);
1992 seq->size = GFS2_SEQ_GOODSIZE;
1997 static int gfs2_glstats_open(struct inode *inode, struct file *file)
1999 int ret = seq_open_private(file, &gfs2_glstats_seq_ops,
2000 sizeof(struct gfs2_glock_iter));
2002 struct seq_file *seq = file->private_data;
2003 struct gfs2_glock_iter *gi = seq->private;
2004 gi->sdp = inode->i_private;
2005 seq->buf = kmalloc(GFS2_SEQ_GOODSIZE, GFP_KERNEL | __GFP_NOWARN);
2007 seq->size = GFS2_SEQ_GOODSIZE;
2012 static int gfs2_sbstats_open(struct inode *inode, struct file *file)
2014 int ret = seq_open_private(file, &gfs2_sbstats_seq_ops,
2015 sizeof(struct gfs2_glock_iter));
2017 struct seq_file *seq = file->private_data;
2018 struct gfs2_glock_iter *gi = seq->private;
2019 gi->sdp = inode->i_private;
2024 static const struct file_operations gfs2_glocks_fops = {
2025 .owner = THIS_MODULE,
2026 .open = gfs2_glocks_open,
2028 .llseek = seq_lseek,
2029 .release = seq_release_private,
2032 static const struct file_operations gfs2_glstats_fops = {
2033 .owner = THIS_MODULE,
2034 .open = gfs2_glstats_open,
2036 .llseek = seq_lseek,
2037 .release = seq_release_private,
2040 static const struct file_operations gfs2_sbstats_fops = {
2041 .owner = THIS_MODULE,
2042 .open = gfs2_sbstats_open,
2044 .llseek = seq_lseek,
2045 .release = seq_release_private,
2048 int gfs2_create_debugfs_file(struct gfs2_sbd *sdp)
2050 sdp->debugfs_dir = debugfs_create_dir(sdp->sd_table_name, gfs2_root);
2051 if (!sdp->debugfs_dir)
2053 sdp->debugfs_dentry_glocks = debugfs_create_file("glocks",
2055 sdp->debugfs_dir, sdp,
2057 if (!sdp->debugfs_dentry_glocks)
2060 sdp->debugfs_dentry_glstats = debugfs_create_file("glstats",
2062 sdp->debugfs_dir, sdp,
2063 &gfs2_glstats_fops);
2064 if (!sdp->debugfs_dentry_glstats)
2067 sdp->debugfs_dentry_sbstats = debugfs_create_file("sbstats",
2069 sdp->debugfs_dir, sdp,
2070 &gfs2_sbstats_fops);
2071 if (!sdp->debugfs_dentry_sbstats)
2076 gfs2_delete_debugfs_file(sdp);
2080 void gfs2_delete_debugfs_file(struct gfs2_sbd *sdp)
2082 if (sdp->debugfs_dir) {
2083 if (sdp->debugfs_dentry_glocks) {
2084 debugfs_remove(sdp->debugfs_dentry_glocks);
2085 sdp->debugfs_dentry_glocks = NULL;
2087 if (sdp->debugfs_dentry_glstats) {
2088 debugfs_remove(sdp->debugfs_dentry_glstats);
2089 sdp->debugfs_dentry_glstats = NULL;
2091 if (sdp->debugfs_dentry_sbstats) {
2092 debugfs_remove(sdp->debugfs_dentry_sbstats);
2093 sdp->debugfs_dentry_sbstats = NULL;
2095 debugfs_remove(sdp->debugfs_dir);
2096 sdp->debugfs_dir = NULL;
2100 int gfs2_register_debugfs(void)
2102 gfs2_root = debugfs_create_dir("gfs2", NULL);
2103 return gfs2_root ? 0 : -ENOMEM;
2106 void gfs2_unregister_debugfs(void)
2108 debugfs_remove(gfs2_root);