2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2006 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/completion.h>
14 #include <linux/buffer_head.h>
15 #include <linux/delay.h>
16 #include <linux/sort.h>
17 #include <linux/jhash.h>
18 #include <linux/kallsyms.h>
19 #include <linux/gfs2_ondisk.h>
20 #include <linux/list.h>
21 #include <linux/lm_interface.h>
22 #include <linux/wait.h>
23 #include <linux/module.h>
24 #include <linux/rwsem.h>
25 #include <asm/uaccess.h>
26 #include <linux/seq_file.h>
27 #include <linux/debugfs.h>
28 #include <linux/module.h>
29 #include <linux/kallsyms.h>
43 struct gfs2_gl_hash_bucket
{
44 struct hlist_head hb_list
;
48 int hash
; /* hash bucket index */
49 struct gfs2_sbd
*sdp
; /* incore superblock */
50 struct gfs2_glock
*gl
; /* current glock struct */
51 struct hlist_head
*hb_list
; /* current hash bucket ptr */
52 struct seq_file
*seq
; /* sequence file for debugfs */
53 char string
[512]; /* scratch space */
56 typedef void (*glock_examiner
) (struct gfs2_glock
* gl
);
58 static int gfs2_dump_lockstate(struct gfs2_sbd
*sdp
);
59 static int dump_glock(struct glock_iter
*gi
, struct gfs2_glock
*gl
);
60 static void gfs2_glock_xmote_th(struct gfs2_glock
*gl
, struct gfs2_holder
*gh
);
61 static void gfs2_glock_drop_th(struct gfs2_glock
*gl
);
62 static DECLARE_RWSEM(gfs2_umount_flush_sem
);
63 static struct dentry
*gfs2_root
;
65 #define GFS2_GL_HASH_SHIFT 15
66 #define GFS2_GL_HASH_SIZE (1 << GFS2_GL_HASH_SHIFT)
67 #define GFS2_GL_HASH_MASK (GFS2_GL_HASH_SIZE - 1)
69 static struct gfs2_gl_hash_bucket gl_hash_table
[GFS2_GL_HASH_SIZE
];
70 static struct dentry
*gfs2_root
;
73 * Despite what you might think, the numbers below are not arbitrary :-)
74 * They are taken from the ipv4 routing hash code, which is well tested
75 * and thus should be nearly optimal. Later on we might tweek the numbers
76 * but for now this should be fine.
78 * The reason for putting the locks in a separate array from the list heads
79 * is that we can have fewer locks than list heads and save memory. We use
80 * the same hash function for both, but with a different hash mask.
82 #if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK) || \
83 defined(CONFIG_PROVE_LOCKING)
86 # define GL_HASH_LOCK_SZ 256
89 # define GL_HASH_LOCK_SZ 4096
91 # define GL_HASH_LOCK_SZ 2048
93 # define GL_HASH_LOCK_SZ 1024
95 # define GL_HASH_LOCK_SZ 512
97 # define GL_HASH_LOCK_SZ 256
101 /* We never want more locks than chains */
102 #if GFS2_GL_HASH_SIZE < GL_HASH_LOCK_SZ
103 # undef GL_HASH_LOCK_SZ
104 # define GL_HASH_LOCK_SZ GFS2_GL_HASH_SIZE
107 static rwlock_t gl_hash_locks
[GL_HASH_LOCK_SZ
];
109 static inline rwlock_t
*gl_lock_addr(unsigned int x
)
111 return &gl_hash_locks
[x
& (GL_HASH_LOCK_SZ
-1)];
113 #else /* not SMP, so no spinlocks required */
114 static inline rwlock_t
*gl_lock_addr(unsigned int x
)
121 * relaxed_state_ok - is a requested lock compatible with the current lock mode?
122 * @actual: the current state of the lock
123 * @requested: the lock state that was requested by the caller
124 * @flags: the modifier flags passed in by the caller
126 * Returns: 1 if the locks are compatible, 0 otherwise
129 static inline int relaxed_state_ok(unsigned int actual
, unsigned requested
,
132 if (actual
== requested
)
135 if (flags
& GL_EXACT
)
138 if (actual
== LM_ST_EXCLUSIVE
&& requested
== LM_ST_SHARED
)
141 if (actual
!= LM_ST_UNLOCKED
&& (flags
& LM_FLAG_ANY
))
148 * gl_hash() - Turn glock number into hash bucket number
149 * @lock: The glock number
151 * Returns: The number of the corresponding hash bucket
154 static unsigned int gl_hash(const struct gfs2_sbd
*sdp
,
155 const struct lm_lockname
*name
)
159 h
= jhash(&name
->ln_number
, sizeof(u64
), 0);
160 h
= jhash(&name
->ln_type
, sizeof(unsigned int), h
);
161 h
= jhash(&sdp
, sizeof(struct gfs2_sbd
*), h
);
162 h
&= GFS2_GL_HASH_MASK
;
168 * glock_free() - Perform a few checks and then release struct gfs2_glock
169 * @gl: The glock to release
171 * Also calls lock module to release its internal structure for this glock.
175 static void glock_free(struct gfs2_glock
*gl
)
177 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
178 struct inode
*aspace
= gl
->gl_aspace
;
180 gfs2_lm_put_lock(sdp
, gl
->gl_lock
);
183 gfs2_aspace_put(aspace
);
185 kmem_cache_free(gfs2_glock_cachep
, gl
);
189 * gfs2_glock_hold() - increment reference count on glock
190 * @gl: The glock to hold
194 void gfs2_glock_hold(struct gfs2_glock
*gl
)
196 atomic_inc(&gl
->gl_ref
);
200 * gfs2_glock_put() - Decrement reference count on glock
201 * @gl: The glock to put
205 int gfs2_glock_put(struct gfs2_glock
*gl
)
208 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
210 write_lock(gl_lock_addr(gl
->gl_hash
));
211 if (atomic_dec_and_test(&gl
->gl_ref
)) {
212 hlist_del(&gl
->gl_list
);
213 write_unlock(gl_lock_addr(gl
->gl_hash
));
214 BUG_ON(spin_is_locked(&gl
->gl_spin
));
215 gfs2_assert(sdp
, gl
->gl_state
== LM_ST_UNLOCKED
);
216 gfs2_assert(sdp
, list_empty(&gl
->gl_reclaim
));
217 gfs2_assert(sdp
, list_empty(&gl
->gl_holders
));
218 gfs2_assert(sdp
, list_empty(&gl
->gl_waiters1
));
219 gfs2_assert(sdp
, list_empty(&gl
->gl_waiters3
));
224 write_unlock(gl_lock_addr(gl
->gl_hash
));
230 * search_bucket() - Find struct gfs2_glock by lock number
231 * @bucket: the bucket to search
232 * @name: The lock name
234 * Returns: NULL, or the struct gfs2_glock with the requested number
237 static struct gfs2_glock
*search_bucket(unsigned int hash
,
238 const struct gfs2_sbd
*sdp
,
239 const struct lm_lockname
*name
)
241 struct gfs2_glock
*gl
;
242 struct hlist_node
*h
;
244 hlist_for_each_entry(gl
, h
, &gl_hash_table
[hash
].hb_list
, gl_list
) {
245 if (!lm_name_equal(&gl
->gl_name
, name
))
247 if (gl
->gl_sbd
!= sdp
)
250 atomic_inc(&gl
->gl_ref
);
259 * gfs2_glock_find() - Find glock by lock number
260 * @sdp: The GFS2 superblock
261 * @name: The lock name
263 * Returns: NULL, or the struct gfs2_glock with the requested number
266 static struct gfs2_glock
*gfs2_glock_find(const struct gfs2_sbd
*sdp
,
267 const struct lm_lockname
*name
)
269 unsigned int hash
= gl_hash(sdp
, name
);
270 struct gfs2_glock
*gl
;
272 read_lock(gl_lock_addr(hash
));
273 gl
= search_bucket(hash
, sdp
, name
);
274 read_unlock(gl_lock_addr(hash
));
280 * gfs2_glock_get() - Get a glock, or create one if one doesn't exist
281 * @sdp: The GFS2 superblock
282 * @number: the lock number
283 * @glops: The glock_operations to use
284 * @create: If 0, don't create the glock if it doesn't exist
285 * @glp: the glock is returned here
287 * This does not lock a glock, just finds/creates structures for one.
292 int gfs2_glock_get(struct gfs2_sbd
*sdp
, u64 number
,
293 const struct gfs2_glock_operations
*glops
, int create
,
294 struct gfs2_glock
**glp
)
296 struct lm_lockname name
= { .ln_number
= number
, .ln_type
= glops
->go_type
};
297 struct gfs2_glock
*gl
, *tmp
;
298 unsigned int hash
= gl_hash(sdp
, &name
);
301 read_lock(gl_lock_addr(hash
));
302 gl
= search_bucket(hash
, sdp
, &name
);
303 read_unlock(gl_lock_addr(hash
));
310 gl
= kmem_cache_alloc(gfs2_glock_cachep
, GFP_KERNEL
);
316 atomic_set(&gl
->gl_ref
, 1);
317 gl
->gl_state
= LM_ST_UNLOCKED
;
319 gl
->gl_owner_pid
= 0;
322 gl
->gl_req_gh
= NULL
;
323 gl
->gl_req_bh
= NULL
;
325 gl
->gl_stamp
= jiffies
;
326 gl
->gl_object
= NULL
;
328 gl
->gl_aspace
= NULL
;
329 lops_init_le(&gl
->gl_le
, &gfs2_glock_lops
);
331 /* If this glock protects actual on-disk data or metadata blocks,
332 create a VFS inode to manage the pages/buffers holding them. */
333 if (glops
== &gfs2_inode_glops
|| glops
== &gfs2_rgrp_glops
) {
334 gl
->gl_aspace
= gfs2_aspace_get(sdp
);
335 if (!gl
->gl_aspace
) {
341 error
= gfs2_lm_get_lock(sdp
, &name
, &gl
->gl_lock
);
345 write_lock(gl_lock_addr(hash
));
346 tmp
= search_bucket(hash
, sdp
, &name
);
348 write_unlock(gl_lock_addr(hash
));
352 hlist_add_head(&gl
->gl_list
, &gl_hash_table
[hash
].hb_list
);
353 write_unlock(gl_lock_addr(hash
));
362 gfs2_aspace_put(gl
->gl_aspace
);
364 kmem_cache_free(gfs2_glock_cachep
, gl
);
369 * gfs2_holder_init - initialize a struct gfs2_holder in the default way
371 * @state: the state we're requesting
372 * @flags: the modifier flags
373 * @gh: the holder structure
377 void gfs2_holder_init(struct gfs2_glock
*gl
, unsigned int state
, unsigned flags
,
378 struct gfs2_holder
*gh
)
380 INIT_LIST_HEAD(&gh
->gh_list
);
382 gh
->gh_ip
= (unsigned long)__builtin_return_address(0);
383 gh
->gh_owner_pid
= current
->pid
;
384 gh
->gh_state
= state
;
385 gh
->gh_flags
= flags
;
392 * gfs2_holder_reinit - reinitialize a struct gfs2_holder so we can requeue it
393 * @state: the state we're requesting
394 * @flags: the modifier flags
395 * @gh: the holder structure
397 * Don't mess with the glock.
401 void gfs2_holder_reinit(unsigned int state
, unsigned flags
, struct gfs2_holder
*gh
)
403 gh
->gh_state
= state
;
404 gh
->gh_flags
= flags
;
406 gh
->gh_ip
= (unsigned long)__builtin_return_address(0);
410 * gfs2_holder_uninit - uninitialize a holder structure (drop glock reference)
411 * @gh: the holder structure
415 void gfs2_holder_uninit(struct gfs2_holder
*gh
)
417 gfs2_glock_put(gh
->gh_gl
);
422 static void gfs2_holder_wake(struct gfs2_holder
*gh
)
424 clear_bit(HIF_WAIT
, &gh
->gh_iflags
);
426 wake_up_bit(&gh
->gh_iflags
, HIF_WAIT
);
429 static int holder_wait(void *word
)
435 static void wait_on_holder(struct gfs2_holder
*gh
)
438 wait_on_bit(&gh
->gh_iflags
, HIF_WAIT
, holder_wait
, TASK_UNINTERRUPTIBLE
);
442 * rq_mutex - process a mutex request in the queue
443 * @gh: the glock holder
445 * Returns: 1 if the queue is blocked
448 static int rq_mutex(struct gfs2_holder
*gh
)
450 struct gfs2_glock
*gl
= gh
->gh_gl
;
452 list_del_init(&gh
->gh_list
);
453 /* gh->gh_error never examined. */
454 set_bit(GLF_LOCK
, &gl
->gl_flags
);
455 clear_bit(HIF_WAIT
, &gh
->gh_iflags
);
457 wake_up_bit(&gh
->gh_iflags
, HIF_WAIT
);
463 * rq_promote - process a promote request in the queue
464 * @gh: the glock holder
466 * Acquire a new inter-node lock, or change a lock state to more restrictive.
468 * Returns: 1 if the queue is blocked
471 static int rq_promote(struct gfs2_holder
*gh
)
473 struct gfs2_glock
*gl
= gh
->gh_gl
;
474 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
476 if (!relaxed_state_ok(gl
->gl_state
, gh
->gh_state
, gh
->gh_flags
)) {
477 if (list_empty(&gl
->gl_holders
)) {
479 set_bit(GLF_LOCK
, &gl
->gl_flags
);
480 spin_unlock(&gl
->gl_spin
);
482 if (atomic_read(&sdp
->sd_reclaim_count
) >
483 gfs2_tune_get(sdp
, gt_reclaim_limit
) &&
484 !(gh
->gh_flags
& LM_FLAG_PRIORITY
)) {
485 gfs2_reclaim_glock(sdp
);
486 gfs2_reclaim_glock(sdp
);
489 gfs2_glock_xmote_th(gh
->gh_gl
, gh
);
490 spin_lock(&gl
->gl_spin
);
495 if (list_empty(&gl
->gl_holders
)) {
496 set_bit(HIF_FIRST
, &gh
->gh_iflags
);
497 set_bit(GLF_LOCK
, &gl
->gl_flags
);
499 struct gfs2_holder
*next_gh
;
500 if (gh
->gh_state
== LM_ST_EXCLUSIVE
)
502 next_gh
= list_entry(gl
->gl_holders
.next
, struct gfs2_holder
,
504 if (next_gh
->gh_state
== LM_ST_EXCLUSIVE
)
508 list_move_tail(&gh
->gh_list
, &gl
->gl_holders
);
510 set_bit(HIF_HOLDER
, &gh
->gh_iflags
);
512 gfs2_holder_wake(gh
);
518 * rq_demote - process a demote request in the queue
519 * @gh: the glock holder
521 * Returns: 1 if the queue is blocked
524 static int rq_demote(struct gfs2_glock
*gl
)
526 if (!list_empty(&gl
->gl_holders
))
529 if (gl
->gl_state
== gl
->gl_demote_state
||
530 gl
->gl_state
== LM_ST_UNLOCKED
) {
531 clear_bit(GLF_DEMOTE
, &gl
->gl_flags
);
534 set_bit(GLF_LOCK
, &gl
->gl_flags
);
535 spin_unlock(&gl
->gl_spin
);
536 if (gl
->gl_demote_state
== LM_ST_UNLOCKED
||
537 gl
->gl_state
!= LM_ST_EXCLUSIVE
)
538 gfs2_glock_drop_th(gl
);
540 gfs2_glock_xmote_th(gl
, NULL
);
541 spin_lock(&gl
->gl_spin
);
547 * run_queue - process holder structures on a glock
551 static void run_queue(struct gfs2_glock
*gl
)
553 struct gfs2_holder
*gh
;
557 if (test_bit(GLF_LOCK
, &gl
->gl_flags
))
560 if (!list_empty(&gl
->gl_waiters1
)) {
561 gh
= list_entry(gl
->gl_waiters1
.next
,
562 struct gfs2_holder
, gh_list
);
564 if (test_bit(HIF_MUTEX
, &gh
->gh_iflags
))
565 blocked
= rq_mutex(gh
);
567 gfs2_assert_warn(gl
->gl_sbd
, 0);
569 } else if (test_bit(GLF_DEMOTE
, &gl
->gl_flags
)) {
570 blocked
= rq_demote(gl
);
571 } else if (!list_empty(&gl
->gl_waiters3
)) {
572 gh
= list_entry(gl
->gl_waiters3
.next
,
573 struct gfs2_holder
, gh_list
);
575 if (test_bit(HIF_PROMOTE
, &gh
->gh_iflags
))
576 blocked
= rq_promote(gh
);
578 gfs2_assert_warn(gl
->gl_sbd
, 0);
589 * gfs2_glmutex_lock - acquire a local lock on a glock
592 * Gives caller exclusive access to manipulate a glock structure.
595 static void gfs2_glmutex_lock(struct gfs2_glock
*gl
)
597 struct gfs2_holder gh
;
599 gfs2_holder_init(gl
, 0, 0, &gh
);
600 set_bit(HIF_MUTEX
, &gh
.gh_iflags
);
601 if (test_and_set_bit(HIF_WAIT
, &gh
.gh_iflags
))
604 spin_lock(&gl
->gl_spin
);
605 if (test_and_set_bit(GLF_LOCK
, &gl
->gl_flags
)) {
606 list_add_tail(&gh
.gh_list
, &gl
->gl_waiters1
);
608 gl
->gl_owner_pid
= current
->pid
;
609 gl
->gl_ip
= (unsigned long)__builtin_return_address(0);
610 clear_bit(HIF_WAIT
, &gh
.gh_iflags
);
612 wake_up_bit(&gh
.gh_iflags
, HIF_WAIT
);
614 spin_unlock(&gl
->gl_spin
);
617 gfs2_holder_uninit(&gh
);
621 * gfs2_glmutex_trylock - try to acquire a local lock on a glock
624 * Returns: 1 if the glock is acquired
627 static int gfs2_glmutex_trylock(struct gfs2_glock
*gl
)
631 spin_lock(&gl
->gl_spin
);
632 if (test_and_set_bit(GLF_LOCK
, &gl
->gl_flags
)) {
635 gl
->gl_owner_pid
= current
->pid
;
636 gl
->gl_ip
= (unsigned long)__builtin_return_address(0);
638 spin_unlock(&gl
->gl_spin
);
644 * gfs2_glmutex_unlock - release a local lock on a glock
649 static void gfs2_glmutex_unlock(struct gfs2_glock
*gl
)
651 spin_lock(&gl
->gl_spin
);
652 clear_bit(GLF_LOCK
, &gl
->gl_flags
);
653 gl
->gl_owner_pid
= 0;
656 BUG_ON(!spin_is_locked(&gl
->gl_spin
));
657 spin_unlock(&gl
->gl_spin
);
661 * handle_callback - process a demote request
663 * @state: the state the caller wants us to change to
665 * There are only two requests that we are going to see in actual
666 * practise: LM_ST_SHARED and LM_ST_UNLOCKED
669 static void handle_callback(struct gfs2_glock
*gl
, unsigned int state
)
671 spin_lock(&gl
->gl_spin
);
672 if (test_and_set_bit(GLF_DEMOTE
, &gl
->gl_flags
) == 0) {
673 gl
->gl_demote_state
= state
;
674 gl
->gl_demote_time
= jiffies
;
675 } else if (gl
->gl_demote_state
!= LM_ST_UNLOCKED
) {
676 gl
->gl_demote_state
= state
;
678 spin_unlock(&gl
->gl_spin
);
682 * state_change - record that the glock is now in a different state
684 * @new_state the new state
688 static void state_change(struct gfs2_glock
*gl
, unsigned int new_state
)
692 held1
= (gl
->gl_state
!= LM_ST_UNLOCKED
);
693 held2
= (new_state
!= LM_ST_UNLOCKED
);
695 if (held1
!= held2
) {
702 gl
->gl_state
= new_state
;
706 * xmote_bh - Called after the lock module is done acquiring a lock
707 * @gl: The glock in question
708 * @ret: the int returned from the lock module
712 static void xmote_bh(struct gfs2_glock
*gl
, unsigned int ret
)
714 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
715 const struct gfs2_glock_operations
*glops
= gl
->gl_ops
;
716 struct gfs2_holder
*gh
= gl
->gl_req_gh
;
717 int prev_state
= gl
->gl_state
;
720 gfs2_assert_warn(sdp
, test_bit(GLF_LOCK
, &gl
->gl_flags
));
721 gfs2_assert_warn(sdp
, list_empty(&gl
->gl_holders
));
722 gfs2_assert_warn(sdp
, !(ret
& LM_OUT_ASYNC
));
724 state_change(gl
, ret
& LM_OUT_ST_MASK
);
726 if (prev_state
!= LM_ST_UNLOCKED
&& !(ret
& LM_OUT_CACHEABLE
)) {
728 glops
->go_inval(gl
, DIO_METADATA
);
729 } else if (gl
->gl_state
== LM_ST_DEFERRED
) {
730 /* We might not want to do this here.
731 Look at moving to the inode glops. */
733 glops
->go_inval(gl
, 0);
736 /* Deal with each possible exit condition */
739 gl
->gl_stamp
= jiffies
;
740 if (ret
& LM_OUT_CANCELED
)
743 clear_bit(GLF_DEMOTE
, &gl
->gl_flags
);
745 spin_lock(&gl
->gl_spin
);
746 list_del_init(&gh
->gh_list
);
748 if (unlikely(test_bit(SDF_SHUTDOWN
, &sdp
->sd_flags
)))
750 gh
->gh_error
= GLR_CANCELED
;
751 if (ret
& LM_OUT_CANCELED
)
753 if (relaxed_state_ok(gl
->gl_state
, gh
->gh_state
, gh
->gh_flags
)) {
754 list_add_tail(&gh
->gh_list
, &gl
->gl_holders
);
756 set_bit(HIF_HOLDER
, &gh
->gh_iflags
);
757 set_bit(HIF_FIRST
, &gh
->gh_iflags
);
761 gh
->gh_error
= GLR_TRYFAILED
;
762 if (gh
->gh_flags
& (LM_FLAG_TRY
| LM_FLAG_TRY_1CB
))
764 gh
->gh_error
= -EINVAL
;
765 if (gfs2_assert_withdraw(sdp
, 0) == -1)
766 fs_err(sdp
, "ret = 0x%.8X\n", ret
);
768 spin_unlock(&gl
->gl_spin
);
771 if (glops
->go_xmote_bh
)
772 glops
->go_xmote_bh(gl
);
775 spin_lock(&gl
->gl_spin
);
776 gl
->gl_req_gh
= NULL
;
777 gl
->gl_req_bh
= NULL
;
778 clear_bit(GLF_LOCK
, &gl
->gl_flags
);
780 spin_unlock(&gl
->gl_spin
);
786 gfs2_holder_wake(gh
);
790 * gfs2_glock_xmote_th - Call into the lock module to acquire or change a glock
791 * @gl: The glock in question
792 * @state: the requested state
793 * @flags: modifier flags to the lock call
797 void gfs2_glock_xmote_th(struct gfs2_glock
*gl
, struct gfs2_holder
*gh
)
799 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
800 int flags
= gh
? gh
->gh_flags
: 0;
801 unsigned state
= gh
? gh
->gh_state
: gl
->gl_demote_state
;
802 const struct gfs2_glock_operations
*glops
= gl
->gl_ops
;
803 int lck_flags
= flags
& (LM_FLAG_TRY
| LM_FLAG_TRY_1CB
|
804 LM_FLAG_NOEXP
| LM_FLAG_ANY
|
806 unsigned int lck_ret
;
808 if (glops
->go_xmote_th
)
809 glops
->go_xmote_th(gl
);
811 gfs2_assert_warn(sdp
, test_bit(GLF_LOCK
, &gl
->gl_flags
));
812 gfs2_assert_warn(sdp
, list_empty(&gl
->gl_holders
));
813 gfs2_assert_warn(sdp
, state
!= LM_ST_UNLOCKED
);
814 gfs2_assert_warn(sdp
, state
!= gl
->gl_state
);
817 gl
->gl_req_bh
= xmote_bh
;
819 lck_ret
= gfs2_lm_lock(sdp
, gl
->gl_lock
, gl
->gl_state
, state
, lck_flags
);
821 if (gfs2_assert_withdraw(sdp
, !(lck_ret
& LM_OUT_ERROR
)))
824 if (lck_ret
& LM_OUT_ASYNC
)
825 gfs2_assert_warn(sdp
, lck_ret
== LM_OUT_ASYNC
);
827 xmote_bh(gl
, lck_ret
);
831 * drop_bh - Called after a lock module unlock completes
833 * @ret: the return status
835 * Doesn't wake up the process waiting on the struct gfs2_holder (if any)
836 * Doesn't drop the reference on the glock the top half took out
840 static void drop_bh(struct gfs2_glock
*gl
, unsigned int ret
)
842 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
843 const struct gfs2_glock_operations
*glops
= gl
->gl_ops
;
844 struct gfs2_holder
*gh
= gl
->gl_req_gh
;
846 gfs2_assert_warn(sdp
, test_bit(GLF_LOCK
, &gl
->gl_flags
));
847 gfs2_assert_warn(sdp
, list_empty(&gl
->gl_holders
));
848 gfs2_assert_warn(sdp
, !ret
);
850 state_change(gl
, LM_ST_UNLOCKED
);
851 clear_bit(GLF_DEMOTE
, &gl
->gl_flags
);
854 glops
->go_inval(gl
, DIO_METADATA
);
857 spin_lock(&gl
->gl_spin
);
858 list_del_init(&gh
->gh_list
);
860 spin_unlock(&gl
->gl_spin
);
863 spin_lock(&gl
->gl_spin
);
864 gl
->gl_req_gh
= NULL
;
865 gl
->gl_req_bh
= NULL
;
866 clear_bit(GLF_LOCK
, &gl
->gl_flags
);
868 spin_unlock(&gl
->gl_spin
);
873 gfs2_holder_wake(gh
);
877 * gfs2_glock_drop_th - call into the lock module to unlock a lock
882 static void gfs2_glock_drop_th(struct gfs2_glock
*gl
)
884 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
885 const struct gfs2_glock_operations
*glops
= gl
->gl_ops
;
888 if (glops
->go_drop_th
)
889 glops
->go_drop_th(gl
);
891 gfs2_assert_warn(sdp
, test_bit(GLF_LOCK
, &gl
->gl_flags
));
892 gfs2_assert_warn(sdp
, list_empty(&gl
->gl_holders
));
893 gfs2_assert_warn(sdp
, gl
->gl_state
!= LM_ST_UNLOCKED
);
896 gl
->gl_req_bh
= drop_bh
;
898 ret
= gfs2_lm_unlock(sdp
, gl
->gl_lock
, gl
->gl_state
);
900 if (gfs2_assert_withdraw(sdp
, !(ret
& LM_OUT_ERROR
)))
906 gfs2_assert_warn(sdp
, ret
== LM_OUT_ASYNC
);
910 * do_cancels - cancel requests for locks stuck waiting on an expire flag
911 * @gh: the LM_FLAG_PRIORITY holder waiting to acquire the lock
913 * Don't cancel GL_NOCANCEL requests.
916 static void do_cancels(struct gfs2_holder
*gh
)
918 struct gfs2_glock
*gl
= gh
->gh_gl
;
920 spin_lock(&gl
->gl_spin
);
922 while (gl
->gl_req_gh
!= gh
&&
923 !test_bit(HIF_HOLDER
, &gh
->gh_iflags
) &&
924 !list_empty(&gh
->gh_list
)) {
925 if (gl
->gl_req_bh
&& !(gl
->gl_req_gh
&&
926 (gl
->gl_req_gh
->gh_flags
& GL_NOCANCEL
))) {
927 spin_unlock(&gl
->gl_spin
);
928 gfs2_lm_cancel(gl
->gl_sbd
, gl
->gl_lock
);
930 spin_lock(&gl
->gl_spin
);
932 spin_unlock(&gl
->gl_spin
);
934 spin_lock(&gl
->gl_spin
);
938 spin_unlock(&gl
->gl_spin
);
942 * glock_wait_internal - wait on a glock acquisition
943 * @gh: the glock holder
945 * Returns: 0 on success
948 static int glock_wait_internal(struct gfs2_holder
*gh
)
950 struct gfs2_glock
*gl
= gh
->gh_gl
;
951 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
952 const struct gfs2_glock_operations
*glops
= gl
->gl_ops
;
954 if (test_bit(HIF_ABORTED
, &gh
->gh_iflags
))
957 if (gh
->gh_flags
& (LM_FLAG_TRY
| LM_FLAG_TRY_1CB
)) {
958 spin_lock(&gl
->gl_spin
);
959 if (gl
->gl_req_gh
!= gh
&&
960 !test_bit(HIF_HOLDER
, &gh
->gh_iflags
) &&
961 !list_empty(&gh
->gh_list
)) {
962 list_del_init(&gh
->gh_list
);
963 gh
->gh_error
= GLR_TRYFAILED
;
965 spin_unlock(&gl
->gl_spin
);
968 spin_unlock(&gl
->gl_spin
);
971 if (gh
->gh_flags
& LM_FLAG_PRIORITY
)
978 gfs2_assert_withdraw(sdp
, test_bit(HIF_HOLDER
, &gh
->gh_iflags
));
979 gfs2_assert_withdraw(sdp
, relaxed_state_ok(gl
->gl_state
, gh
->gh_state
,
982 if (test_bit(HIF_FIRST
, &gh
->gh_iflags
)) {
983 gfs2_assert_warn(sdp
, test_bit(GLF_LOCK
, &gl
->gl_flags
));
985 if (glops
->go_lock
) {
986 gh
->gh_error
= glops
->go_lock(gh
);
988 spin_lock(&gl
->gl_spin
);
989 list_del_init(&gh
->gh_list
);
990 spin_unlock(&gl
->gl_spin
);
994 spin_lock(&gl
->gl_spin
);
995 gl
->gl_req_gh
= NULL
;
996 gl
->gl_req_bh
= NULL
;
997 clear_bit(GLF_LOCK
, &gl
->gl_flags
);
999 spin_unlock(&gl
->gl_spin
);
1002 return gh
->gh_error
;
1005 static inline struct gfs2_holder
*
1006 find_holder_by_owner(struct list_head
*head
, pid_t pid
)
1008 struct gfs2_holder
*gh
;
1010 list_for_each_entry(gh
, head
, gh_list
) {
1011 if (gh
->gh_owner_pid
== pid
)
1018 static void print_dbg(struct glock_iter
*gi
, const char *fmt
, ...)
1022 va_start(args
, fmt
);
1024 vsprintf(gi
->string
, fmt
, args
);
1025 seq_printf(gi
->seq
, gi
->string
);
1033 * add_to_queue - Add a holder to the wait queue (but look for recursion)
1034 * @gh: the holder structure to add
1038 static void add_to_queue(struct gfs2_holder
*gh
)
1040 struct gfs2_glock
*gl
= gh
->gh_gl
;
1041 struct gfs2_holder
*existing
;
1043 BUG_ON(!gh
->gh_owner_pid
);
1044 if (test_and_set_bit(HIF_WAIT
, &gh
->gh_iflags
))
1047 existing
= find_holder_by_owner(&gl
->gl_holders
, gh
->gh_owner_pid
);
1049 print_symbol(KERN_WARNING
"original: %s\n", existing
->gh_ip
);
1050 printk(KERN_INFO
"pid : %d\n", existing
->gh_owner_pid
);
1051 printk(KERN_INFO
"lock type : %d lock state : %d\n",
1052 existing
->gh_gl
->gl_name
.ln_type
, existing
->gh_gl
->gl_state
);
1053 print_symbol(KERN_WARNING
"new: %s\n", gh
->gh_ip
);
1054 printk(KERN_INFO
"pid : %d\n", gh
->gh_owner_pid
);
1055 printk(KERN_INFO
"lock type : %d lock state : %d\n",
1056 gl
->gl_name
.ln_type
, gl
->gl_state
);
1060 existing
= find_holder_by_owner(&gl
->gl_waiters3
, gh
->gh_owner_pid
);
1062 print_symbol(KERN_WARNING
"original: %s\n", existing
->gh_ip
);
1063 print_symbol(KERN_WARNING
"new: %s\n", gh
->gh_ip
);
1067 if (gh
->gh_flags
& LM_FLAG_PRIORITY
)
1068 list_add(&gh
->gh_list
, &gl
->gl_waiters3
);
1070 list_add_tail(&gh
->gh_list
, &gl
->gl_waiters3
);
1074 * gfs2_glock_nq - enqueue a struct gfs2_holder onto a glock (acquire a glock)
1075 * @gh: the holder structure
1077 * if (gh->gh_flags & GL_ASYNC), this never returns an error
1079 * Returns: 0, GLR_TRYFAILED, or errno on failure
1082 int gfs2_glock_nq(struct gfs2_holder
*gh
)
1084 struct gfs2_glock
*gl
= gh
->gh_gl
;
1085 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
1089 if (unlikely(test_bit(SDF_SHUTDOWN
, &sdp
->sd_flags
))) {
1090 set_bit(HIF_ABORTED
, &gh
->gh_iflags
);
1094 set_bit(HIF_PROMOTE
, &gh
->gh_iflags
);
1096 spin_lock(&gl
->gl_spin
);
1099 spin_unlock(&gl
->gl_spin
);
1101 if (!(gh
->gh_flags
& GL_ASYNC
)) {
1102 error
= glock_wait_internal(gh
);
1103 if (error
== GLR_CANCELED
) {
1113 * gfs2_glock_poll - poll to see if an async request has been completed
1116 * Returns: 1 if the request is ready to be gfs2_glock_wait()ed on
1119 int gfs2_glock_poll(struct gfs2_holder
*gh
)
1121 struct gfs2_glock
*gl
= gh
->gh_gl
;
1124 spin_lock(&gl
->gl_spin
);
1126 if (test_bit(HIF_HOLDER
, &gh
->gh_iflags
))
1128 else if (list_empty(&gh
->gh_list
)) {
1129 if (gh
->gh_error
== GLR_CANCELED
) {
1130 spin_unlock(&gl
->gl_spin
);
1132 if (gfs2_glock_nq(gh
))
1139 spin_unlock(&gl
->gl_spin
);
1145 * gfs2_glock_wait - wait for a lock acquisition that ended in a GLR_ASYNC
1146 * @gh: the holder structure
1148 * Returns: 0, GLR_TRYFAILED, or errno on failure
1151 int gfs2_glock_wait(struct gfs2_holder
*gh
)
1155 error
= glock_wait_internal(gh
);
1156 if (error
== GLR_CANCELED
) {
1158 gh
->gh_flags
&= ~GL_ASYNC
;
1159 error
= gfs2_glock_nq(gh
);
1166 * gfs2_glock_dq - dequeue a struct gfs2_holder from a glock (release a glock)
1167 * @gh: the glock holder
1171 void gfs2_glock_dq(struct gfs2_holder
*gh
)
1173 struct gfs2_glock
*gl
= gh
->gh_gl
;
1174 const struct gfs2_glock_operations
*glops
= gl
->gl_ops
;
1176 if (gh
->gh_flags
& GL_NOCACHE
)
1177 handle_callback(gl
, LM_ST_UNLOCKED
);
1179 gfs2_glmutex_lock(gl
);
1181 spin_lock(&gl
->gl_spin
);
1182 list_del_init(&gh
->gh_list
);
1184 if (list_empty(&gl
->gl_holders
)) {
1185 spin_unlock(&gl
->gl_spin
);
1187 if (glops
->go_unlock
)
1188 glops
->go_unlock(gh
);
1190 spin_lock(&gl
->gl_spin
);
1191 gl
->gl_stamp
= jiffies
;
1194 clear_bit(GLF_LOCK
, &gl
->gl_flags
);
1196 spin_unlock(&gl
->gl_spin
);
1200 * gfs2_glock_dq_uninit - dequeue a holder from a glock and initialize it
1201 * @gh: the holder structure
1205 void gfs2_glock_dq_uninit(struct gfs2_holder
*gh
)
1208 gfs2_holder_uninit(gh
);
1212 * gfs2_glock_nq_num - acquire a glock based on lock number
1213 * @sdp: the filesystem
1214 * @number: the lock number
1215 * @glops: the glock operations for the type of glock
1216 * @state: the state to acquire the glock in
1217 * @flags: modifier flags for the aquisition
1218 * @gh: the struct gfs2_holder
1223 int gfs2_glock_nq_num(struct gfs2_sbd
*sdp
, u64 number
,
1224 const struct gfs2_glock_operations
*glops
,
1225 unsigned int state
, int flags
, struct gfs2_holder
*gh
)
1227 struct gfs2_glock
*gl
;
1230 error
= gfs2_glock_get(sdp
, number
, glops
, CREATE
, &gl
);
1232 error
= gfs2_glock_nq_init(gl
, state
, flags
, gh
);
1240 * glock_compare - Compare two struct gfs2_glock structures for sorting
1241 * @arg_a: the first structure
1242 * @arg_b: the second structure
1246 static int glock_compare(const void *arg_a
, const void *arg_b
)
1248 const struct gfs2_holder
*gh_a
= *(const struct gfs2_holder
**)arg_a
;
1249 const struct gfs2_holder
*gh_b
= *(const struct gfs2_holder
**)arg_b
;
1250 const struct lm_lockname
*a
= &gh_a
->gh_gl
->gl_name
;
1251 const struct lm_lockname
*b
= &gh_b
->gh_gl
->gl_name
;
1253 if (a
->ln_number
> b
->ln_number
)
1255 if (a
->ln_number
< b
->ln_number
)
1257 BUG_ON(gh_a
->gh_gl
->gl_ops
->go_type
== gh_b
->gh_gl
->gl_ops
->go_type
);
1262 * nq_m_sync - synchonously acquire more than one glock in deadlock free order
1263 * @num_gh: the number of structures
1264 * @ghs: an array of struct gfs2_holder structures
1266 * Returns: 0 on success (all glocks acquired),
1267 * errno on failure (no glocks acquired)
1270 static int nq_m_sync(unsigned int num_gh
, struct gfs2_holder
*ghs
,
1271 struct gfs2_holder
**p
)
1276 for (x
= 0; x
< num_gh
; x
++)
1279 sort(p
, num_gh
, sizeof(struct gfs2_holder
*), glock_compare
, NULL
);
1281 for (x
= 0; x
< num_gh
; x
++) {
1282 p
[x
]->gh_flags
&= ~(LM_FLAG_TRY
| GL_ASYNC
);
1284 error
= gfs2_glock_nq(p
[x
]);
1287 gfs2_glock_dq(p
[x
]);
1296 * gfs2_glock_nq_m - acquire multiple glocks
1297 * @num_gh: the number of structures
1298 * @ghs: an array of struct gfs2_holder structures
1300 * Figure out how big an impact this function has. Either:
1301 * 1) Replace this code with code that calls gfs2_glock_prefetch()
1302 * 2) Forget async stuff and just call nq_m_sync()
1303 * 3) Leave it like it is
1305 * Returns: 0 on success (all glocks acquired),
1306 * errno on failure (no glocks acquired)
1309 int gfs2_glock_nq_m(unsigned int num_gh
, struct gfs2_holder
*ghs
)
1313 int borked
= 0, serious
= 0;
1320 ghs
->gh_flags
&= ~(LM_FLAG_TRY
| GL_ASYNC
);
1321 return gfs2_glock_nq(ghs
);
1324 e
= kcalloc(num_gh
, sizeof(struct gfs2_holder
*), GFP_KERNEL
);
1328 for (x
= 0; x
< num_gh
; x
++) {
1329 ghs
[x
].gh_flags
|= LM_FLAG_TRY
| GL_ASYNC
;
1330 error
= gfs2_glock_nq(&ghs
[x
]);
1339 for (x
= 0; x
< num_gh
; x
++) {
1340 error
= e
[x
] = glock_wait_internal(&ghs
[x
]);
1343 if (error
!= GLR_TRYFAILED
&& error
!= GLR_CANCELED
)
1353 for (x
= 0; x
< num_gh
; x
++)
1355 gfs2_glock_dq(&ghs
[x
]);
1360 for (x
= 0; x
< num_gh
; x
++)
1361 gfs2_holder_reinit(ghs
[x
].gh_state
, ghs
[x
].gh_flags
,
1363 error
= nq_m_sync(num_gh
, ghs
, (struct gfs2_holder
**)e
);
1372 * gfs2_glock_dq_m - release multiple glocks
1373 * @num_gh: the number of structures
1374 * @ghs: an array of struct gfs2_holder structures
1378 void gfs2_glock_dq_m(unsigned int num_gh
, struct gfs2_holder
*ghs
)
1382 for (x
= 0; x
< num_gh
; x
++)
1383 gfs2_glock_dq(&ghs
[x
]);
1387 * gfs2_glock_dq_uninit_m - release multiple glocks
1388 * @num_gh: the number of structures
1389 * @ghs: an array of struct gfs2_holder structures
1393 void gfs2_glock_dq_uninit_m(unsigned int num_gh
, struct gfs2_holder
*ghs
)
1397 for (x
= 0; x
< num_gh
; x
++)
1398 gfs2_glock_dq_uninit(&ghs
[x
]);
1402 * gfs2_lvb_hold - attach a LVB from a glock
1403 * @gl: The glock in question
1407 int gfs2_lvb_hold(struct gfs2_glock
*gl
)
1411 gfs2_glmutex_lock(gl
);
1413 if (!atomic_read(&gl
->gl_lvb_count
)) {
1414 error
= gfs2_lm_hold_lvb(gl
->gl_sbd
, gl
->gl_lock
, &gl
->gl_lvb
);
1416 gfs2_glmutex_unlock(gl
);
1419 gfs2_glock_hold(gl
);
1421 atomic_inc(&gl
->gl_lvb_count
);
1423 gfs2_glmutex_unlock(gl
);
1429 * gfs2_lvb_unhold - detach a LVB from a glock
1430 * @gl: The glock in question
1434 void gfs2_lvb_unhold(struct gfs2_glock
*gl
)
1436 gfs2_glock_hold(gl
);
1437 gfs2_glmutex_lock(gl
);
1439 gfs2_assert(gl
->gl_sbd
, atomic_read(&gl
->gl_lvb_count
) > 0);
1440 if (atomic_dec_and_test(&gl
->gl_lvb_count
)) {
1441 gfs2_lm_unhold_lvb(gl
->gl_sbd
, gl
->gl_lock
, gl
->gl_lvb
);
1446 gfs2_glmutex_unlock(gl
);
1450 static void blocking_cb(struct gfs2_sbd
*sdp
, struct lm_lockname
*name
,
1453 struct gfs2_glock
*gl
;
1455 gl
= gfs2_glock_find(sdp
, name
);
1459 handle_callback(gl
, state
);
1461 spin_lock(&gl
->gl_spin
);
1463 spin_unlock(&gl
->gl_spin
);
1469 * gfs2_glock_cb - Callback used by locking module
1470 * @sdp: Pointer to the superblock
1471 * @type: Type of callback
1472 * @data: Type dependent data pointer
1474 * Called by the locking module when it wants to tell us something.
1475 * Either we need to drop a lock, one of our ASYNC requests completed, or
1476 * a journal from another client needs to be recovered.
1479 void gfs2_glock_cb(void *cb_data
, unsigned int type
, void *data
)
1481 struct gfs2_sbd
*sdp
= cb_data
;
1485 blocking_cb(sdp
, data
, LM_ST_UNLOCKED
);
1489 blocking_cb(sdp
, data
, LM_ST_DEFERRED
);
1493 blocking_cb(sdp
, data
, LM_ST_SHARED
);
1497 struct lm_async_cb
*async
= data
;
1498 struct gfs2_glock
*gl
;
1500 down_read(&gfs2_umount_flush_sem
);
1501 gl
= gfs2_glock_find(sdp
, &async
->lc_name
);
1502 if (gfs2_assert_warn(sdp
, gl
))
1504 if (!gfs2_assert_warn(sdp
, gl
->gl_req_bh
))
1505 gl
->gl_req_bh(gl
, async
->lc_ret
);
1507 up_read(&gfs2_umount_flush_sem
);
1511 case LM_CB_NEED_RECOVERY
:
1512 gfs2_jdesc_make_dirty(sdp
, *(unsigned int *)data
);
1513 if (sdp
->sd_recoverd_process
)
1514 wake_up_process(sdp
->sd_recoverd_process
);
1517 case LM_CB_DROPLOCKS
:
1518 gfs2_gl_hash_clear(sdp
, NO_WAIT
);
1519 gfs2_quota_scan(sdp
);
1523 gfs2_assert_warn(sdp
, 0);
1529 * demote_ok - Check to see if it's ok to unlock a glock
1532 * Returns: 1 if it's ok
1535 static int demote_ok(struct gfs2_glock
*gl
)
1537 const struct gfs2_glock_operations
*glops
= gl
->gl_ops
;
1540 if (test_bit(GLF_STICKY
, &gl
->gl_flags
))
1542 else if (glops
->go_demote_ok
)
1543 demote
= glops
->go_demote_ok(gl
);
1549 * gfs2_glock_schedule_for_reclaim - Add a glock to the reclaim list
1554 void gfs2_glock_schedule_for_reclaim(struct gfs2_glock
*gl
)
1556 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
1558 spin_lock(&sdp
->sd_reclaim_lock
);
1559 if (list_empty(&gl
->gl_reclaim
)) {
1560 gfs2_glock_hold(gl
);
1561 list_add(&gl
->gl_reclaim
, &sdp
->sd_reclaim_list
);
1562 atomic_inc(&sdp
->sd_reclaim_count
);
1564 spin_unlock(&sdp
->sd_reclaim_lock
);
1566 wake_up(&sdp
->sd_reclaim_wq
);
1570 * gfs2_reclaim_glock - process the next glock on the filesystem's reclaim list
1571 * @sdp: the filesystem
1573 * Called from gfs2_glockd() glock reclaim daemon, or when promoting a
1574 * different glock and we notice that there are a lot of glocks in the
1579 void gfs2_reclaim_glock(struct gfs2_sbd
*sdp
)
1581 struct gfs2_glock
*gl
;
1583 spin_lock(&sdp
->sd_reclaim_lock
);
1584 if (list_empty(&sdp
->sd_reclaim_list
)) {
1585 spin_unlock(&sdp
->sd_reclaim_lock
);
1588 gl
= list_entry(sdp
->sd_reclaim_list
.next
,
1589 struct gfs2_glock
, gl_reclaim
);
1590 list_del_init(&gl
->gl_reclaim
);
1591 spin_unlock(&sdp
->sd_reclaim_lock
);
1593 atomic_dec(&sdp
->sd_reclaim_count
);
1594 atomic_inc(&sdp
->sd_reclaimed
);
1596 if (gfs2_glmutex_trylock(gl
)) {
1597 if (list_empty(&gl
->gl_holders
) &&
1598 gl
->gl_state
!= LM_ST_UNLOCKED
&& demote_ok(gl
))
1599 handle_callback(gl
, LM_ST_UNLOCKED
);
1600 gfs2_glmutex_unlock(gl
);
1607 * examine_bucket - Call a function for glock in a hash bucket
1608 * @examiner: the function
1609 * @sdp: the filesystem
1610 * @bucket: the bucket
1612 * Returns: 1 if the bucket has entries
1615 static int examine_bucket(glock_examiner examiner
, struct gfs2_sbd
*sdp
,
1618 struct gfs2_glock
*gl
, *prev
= NULL
;
1619 int has_entries
= 0;
1620 struct hlist_head
*head
= &gl_hash_table
[hash
].hb_list
;
1622 read_lock(gl_lock_addr(hash
));
1623 /* Can't use hlist_for_each_entry - don't want prefetch here */
1624 if (hlist_empty(head
))
1626 gl
= list_entry(head
->first
, struct gfs2_glock
, gl_list
);
1628 if (gl
->gl_sbd
== sdp
) {
1629 gfs2_glock_hold(gl
);
1630 read_unlock(gl_lock_addr(hash
));
1632 gfs2_glock_put(prev
);
1636 read_lock(gl_lock_addr(hash
));
1638 if (gl
->gl_list
.next
== NULL
)
1640 gl
= list_entry(gl
->gl_list
.next
, struct gfs2_glock
, gl_list
);
1643 read_unlock(gl_lock_addr(hash
));
1645 gfs2_glock_put(prev
);
1650 * scan_glock - look at a glock and see if we can reclaim it
1651 * @gl: the glock to look at
1655 static void scan_glock(struct gfs2_glock
*gl
)
1657 if (gl
->gl_ops
== &gfs2_inode_glops
&& gl
->gl_object
)
1660 if (gfs2_glmutex_trylock(gl
)) {
1661 if (list_empty(&gl
->gl_holders
) &&
1662 gl
->gl_state
!= LM_ST_UNLOCKED
&& demote_ok(gl
))
1664 gfs2_glmutex_unlock(gl
);
1669 gfs2_glmutex_unlock(gl
);
1670 gfs2_glock_schedule_for_reclaim(gl
);
1674 * gfs2_scand_internal - Look for glocks and inodes to toss from memory
1675 * @sdp: the filesystem
1679 void gfs2_scand_internal(struct gfs2_sbd
*sdp
)
1683 for (x
= 0; x
< GFS2_GL_HASH_SIZE
; x
++)
1684 examine_bucket(scan_glock
, sdp
, x
);
1688 * clear_glock - look at a glock and see if we can free it from glock cache
1689 * @gl: the glock to look at
1693 static void clear_glock(struct gfs2_glock
*gl
)
1695 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
1698 spin_lock(&sdp
->sd_reclaim_lock
);
1699 if (!list_empty(&gl
->gl_reclaim
)) {
1700 list_del_init(&gl
->gl_reclaim
);
1701 atomic_dec(&sdp
->sd_reclaim_count
);
1702 spin_unlock(&sdp
->sd_reclaim_lock
);
1703 released
= gfs2_glock_put(gl
);
1704 gfs2_assert(sdp
, !released
);
1706 spin_unlock(&sdp
->sd_reclaim_lock
);
1709 if (gfs2_glmutex_trylock(gl
)) {
1710 if (list_empty(&gl
->gl_holders
) &&
1711 gl
->gl_state
!= LM_ST_UNLOCKED
)
1712 handle_callback(gl
, LM_ST_UNLOCKED
);
1713 gfs2_glmutex_unlock(gl
);
1718 * gfs2_gl_hash_clear - Empty out the glock hash table
1719 * @sdp: the filesystem
1720 * @wait: wait until it's all gone
1722 * Called when unmounting the filesystem, or when inter-node lock manager
1723 * requests DROPLOCKS because it is running out of capacity.
1726 void gfs2_gl_hash_clear(struct gfs2_sbd
*sdp
, int wait
)
1736 for (x
= 0; x
< GFS2_GL_HASH_SIZE
; x
++) {
1737 if (examine_bucket(clear_glock
, sdp
, x
))
1744 if (time_after_eq(jiffies
,
1745 t
+ gfs2_tune_get(sdp
, gt_stall_secs
) * HZ
)) {
1746 fs_warn(sdp
, "Unmount seems to be stalled. "
1747 "Dumping lock state...\n");
1748 gfs2_dump_lockstate(sdp
);
1752 down_write(&gfs2_umount_flush_sem
);
1753 invalidate_inodes(sdp
->sd_vfs
);
1754 up_write(&gfs2_umount_flush_sem
);
1760 * Diagnostic routines to help debug distributed deadlock
1763 static void gfs2_print_symbol(struct glock_iter
*gi
, const char *fmt
,
1764 unsigned long address
)
1766 char buffer
[KSYM_SYMBOL_LEN
];
1768 sprint_symbol(buffer
, address
);
1769 print_dbg(gi
, fmt
, buffer
);
1773 * dump_holder - print information about a glock holder
1774 * @str: a string naming the type of holder
1775 * @gh: the glock holder
1777 * Returns: 0 on success, -ENOBUFS when we run out of space
1780 static int dump_holder(struct glock_iter
*gi
, char *str
,
1781 struct gfs2_holder
*gh
)
1784 struct task_struct
*gh_owner
;
1786 print_dbg(gi
, " %s\n", str
);
1787 if (gh
->gh_owner_pid
) {
1788 print_dbg(gi
, " owner = %ld ", (long)gh
->gh_owner_pid
);
1789 gh_owner
= find_task_by_pid(gh
->gh_owner_pid
);
1791 print_dbg(gi
, "(%s)\n", gh_owner
->comm
);
1793 print_dbg(gi
, "(ended)\n");
1795 print_dbg(gi
, " owner = -1\n");
1796 print_dbg(gi
, " gh_state = %u\n", gh
->gh_state
);
1797 print_dbg(gi
, " gh_flags =");
1798 for (x
= 0; x
< 32; x
++)
1799 if (gh
->gh_flags
& (1 << x
))
1800 print_dbg(gi
, " %u", x
);
1801 print_dbg(gi
, " \n");
1802 print_dbg(gi
, " error = %d\n", gh
->gh_error
);
1803 print_dbg(gi
, " gh_iflags =");
1804 for (x
= 0; x
< 32; x
++)
1805 if (test_bit(x
, &gh
->gh_iflags
))
1806 print_dbg(gi
, " %u", x
);
1807 print_dbg(gi
, " \n");
1808 gfs2_print_symbol(gi
, " initialized at: %s\n", gh
->gh_ip
);
1814 * dump_inode - print information about an inode
1817 * Returns: 0 on success, -ENOBUFS when we run out of space
1820 static int dump_inode(struct glock_iter
*gi
, struct gfs2_inode
*ip
)
1824 print_dbg(gi
, " Inode:\n");
1825 print_dbg(gi
, " num = %llu/%llu\n",
1826 ip
->i_num
.no_formal_ino
, ip
->i_num
.no_addr
);
1827 print_dbg(gi
, " type = %u\n", IF2DT(ip
->i_inode
.i_mode
));
1828 print_dbg(gi
, " i_flags =");
1829 for (x
= 0; x
< 32; x
++)
1830 if (test_bit(x
, &ip
->i_flags
))
1831 print_dbg(gi
, " %u", x
);
1832 print_dbg(gi
, " \n");
1837 * dump_glock - print information about a glock
1839 * @count: where we are in the buffer
1841 * Returns: 0 on success, -ENOBUFS when we run out of space
1844 static int dump_glock(struct glock_iter
*gi
, struct gfs2_glock
*gl
)
1846 struct gfs2_holder
*gh
;
1848 int error
= -ENOBUFS
;
1849 struct task_struct
*gl_owner
;
1851 spin_lock(&gl
->gl_spin
);
1853 print_dbg(gi
, "Glock 0x%p (%u, %llu)\n", gl
, gl
->gl_name
.ln_type
,
1854 (unsigned long long)gl
->gl_name
.ln_number
);
1855 print_dbg(gi
, " gl_flags =");
1856 for (x
= 0; x
< 32; x
++) {
1857 if (test_bit(x
, &gl
->gl_flags
))
1858 print_dbg(gi
, " %u", x
);
1860 if (!test_bit(GLF_LOCK
, &gl
->gl_flags
))
1861 print_dbg(gi
, " (unlocked)");
1862 print_dbg(gi
, " \n");
1863 print_dbg(gi
, " gl_ref = %d\n", atomic_read(&gl
->gl_ref
));
1864 print_dbg(gi
, " gl_state = %u\n", gl
->gl_state
);
1865 if (gl
->gl_owner_pid
) {
1866 gl_owner
= find_task_by_pid(gl
->gl_owner_pid
);
1868 print_dbg(gi
, " gl_owner = pid %d (%s)\n",
1869 gl
->gl_owner_pid
, gl_owner
->comm
);
1871 print_dbg(gi
, " gl_owner = %d (ended)\n",
1874 print_dbg(gi
, " gl_owner = -1\n");
1875 print_dbg(gi
, " gl_ip = %lu\n", gl
->gl_ip
);
1876 print_dbg(gi
, " req_gh = %s\n", (gl
->gl_req_gh
) ? "yes" : "no");
1877 print_dbg(gi
, " req_bh = %s\n", (gl
->gl_req_bh
) ? "yes" : "no");
1878 print_dbg(gi
, " lvb_count = %d\n", atomic_read(&gl
->gl_lvb_count
));
1879 print_dbg(gi
, " object = %s\n", (gl
->gl_object
) ? "yes" : "no");
1880 print_dbg(gi
, " le = %s\n",
1881 (list_empty(&gl
->gl_le
.le_list
)) ? "no" : "yes");
1882 print_dbg(gi
, " reclaim = %s\n",
1883 (list_empty(&gl
->gl_reclaim
)) ? "no" : "yes");
1885 print_dbg(gi
, " aspace = 0x%p nrpages = %lu\n", gl
->gl_aspace
,
1886 gl
->gl_aspace
->i_mapping
->nrpages
);
1888 print_dbg(gi
, " aspace = no\n");
1889 print_dbg(gi
, " ail = %d\n", atomic_read(&gl
->gl_ail_count
));
1890 if (gl
->gl_req_gh
) {
1891 error
= dump_holder(gi
, "Request", gl
->gl_req_gh
);
1895 list_for_each_entry(gh
, &gl
->gl_holders
, gh_list
) {
1896 error
= dump_holder(gi
, "Holder", gh
);
1900 list_for_each_entry(gh
, &gl
->gl_waiters1
, gh_list
) {
1901 error
= dump_holder(gi
, "Waiter1", gh
);
1905 list_for_each_entry(gh
, &gl
->gl_waiters3
, gh_list
) {
1906 error
= dump_holder(gi
, "Waiter3", gh
);
1910 if (test_bit(GLF_DEMOTE
, &gl
->gl_flags
)) {
1911 print_dbg(gi
, " Demotion req to state %u (%llu uS ago)\n",
1912 gl
->gl_demote_state
,
1913 (u64
)(jiffies
- gl
->gl_demote_time
)*(1000000/HZ
));
1915 if (gl
->gl_ops
== &gfs2_inode_glops
&& gl
->gl_object
) {
1916 if (!test_bit(GLF_LOCK
, &gl
->gl_flags
) &&
1917 list_empty(&gl
->gl_holders
)) {
1918 error
= dump_inode(gi
, gl
->gl_object
);
1923 print_dbg(gi
, " Inode: busy\n");
1930 spin_unlock(&gl
->gl_spin
);
1935 * gfs2_dump_lockstate - print out the current lockstate
1936 * @sdp: the filesystem
1937 * @ub: the buffer to copy the information into
1939 * If @ub is NULL, dump the lockstate to the console.
1943 static int gfs2_dump_lockstate(struct gfs2_sbd
*sdp
)
1945 struct gfs2_glock
*gl
;
1946 struct hlist_node
*h
;
1950 for (x
= 0; x
< GFS2_GL_HASH_SIZE
; x
++) {
1952 read_lock(gl_lock_addr(x
));
1954 hlist_for_each_entry(gl
, h
, &gl_hash_table
[x
].hb_list
, gl_list
) {
1955 if (gl
->gl_sbd
!= sdp
)
1958 error
= dump_glock(NULL
, gl
);
1963 read_unlock(gl_lock_addr(x
));
1973 int __init
gfs2_glock_init(void)
1976 for(i
= 0; i
< GFS2_GL_HASH_SIZE
; i
++) {
1977 INIT_HLIST_HEAD(&gl_hash_table
[i
].hb_list
);
1979 #ifdef GL_HASH_LOCK_SZ
1980 for(i
= 0; i
< GL_HASH_LOCK_SZ
; i
++) {
1981 rwlock_init(&gl_hash_locks
[i
]);
1987 static int gfs2_glock_iter_next(struct glock_iter
*gi
)
1989 read_lock(gl_lock_addr(gi
->hash
));
1991 if (!gi
->hb_list
) { /* If we don't have a hash bucket yet */
1992 gi
->hb_list
= &gl_hash_table
[gi
->hash
].hb_list
;
1993 if (hlist_empty(gi
->hb_list
)) {
1994 read_unlock(gl_lock_addr(gi
->hash
));
1996 read_lock(gl_lock_addr(gi
->hash
));
1998 if (gi
->hash
>= GFS2_GL_HASH_SIZE
) {
1999 read_unlock(gl_lock_addr(gi
->hash
));
2005 if (!hlist_empty(gi
->hb_list
)) {
2006 gi
->gl
= list_entry(gi
->hb_list
->first
,
2011 if (gi
->gl
->gl_list
.next
== NULL
) {
2012 read_unlock(gl_lock_addr(gi
->hash
));
2014 read_lock(gl_lock_addr(gi
->hash
));
2018 gi
->gl
= list_entry(gi
->gl
->gl_list
.next
,
2019 struct gfs2_glock
, gl_list
);
2024 read_unlock(gl_lock_addr(gi
->hash
));
2028 static void gfs2_glock_iter_free(struct glock_iter
*gi
)
2033 static struct glock_iter
*gfs2_glock_iter_init(struct gfs2_sbd
*sdp
)
2035 struct glock_iter
*gi
;
2037 gi
= kmalloc(sizeof (*gi
), GFP_KERNEL
);
2046 memset(gi
->string
, 0, sizeof(gi
->string
));
2048 if (gfs2_glock_iter_next(gi
)) {
2049 gfs2_glock_iter_free(gi
);
2056 static void *gfs2_glock_seq_start(struct seq_file
*file
, loff_t
*pos
)
2058 struct glock_iter
*gi
;
2061 gi
= gfs2_glock_iter_init(file
->private);
2066 if (gfs2_glock_iter_next(gi
)) {
2067 gfs2_glock_iter_free(gi
);
2075 static void *gfs2_glock_seq_next(struct seq_file
*file
, void *iter_ptr
,
2078 struct glock_iter
*gi
= iter_ptr
;
2082 if (gfs2_glock_iter_next(gi
)) {
2083 gfs2_glock_iter_free(gi
);
2090 static void gfs2_glock_seq_stop(struct seq_file
*file
, void *iter_ptr
)
2092 /* nothing for now */
2095 static int gfs2_glock_seq_show(struct seq_file
*file
, void *iter_ptr
)
2097 struct glock_iter
*gi
= iter_ptr
;
2100 dump_glock(gi
, gi
->gl
);
2105 static struct seq_operations gfs2_glock_seq_ops
= {
2106 .start
= gfs2_glock_seq_start
,
2107 .next
= gfs2_glock_seq_next
,
2108 .stop
= gfs2_glock_seq_stop
,
2109 .show
= gfs2_glock_seq_show
,
2112 static int gfs2_debugfs_open(struct inode
*inode
, struct file
*file
)
2114 struct seq_file
*seq
;
2117 ret
= seq_open(file
, &gfs2_glock_seq_ops
);
2121 seq
= file
->private_data
;
2122 seq
->private = inode
->i_private
;
2127 static const struct file_operations gfs2_debug_fops
= {
2128 .owner
= THIS_MODULE
,
2129 .open
= gfs2_debugfs_open
,
2131 .llseek
= seq_lseek
,
2132 .release
= seq_release
2135 int gfs2_create_debugfs_file(struct gfs2_sbd
*sdp
)
2137 sdp
->debugfs_dir
= debugfs_create_dir(sdp
->sd_table_name
, gfs2_root
);
2138 if (!sdp
->debugfs_dir
)
2140 sdp
->debugfs_dentry_glocks
= debugfs_create_file("glocks",
2142 sdp
->debugfs_dir
, sdp
,
2144 if (!sdp
->debugfs_dentry_glocks
)
2150 void gfs2_delete_debugfs_file(struct gfs2_sbd
*sdp
)
2152 if (sdp
&& sdp
->debugfs_dir
) {
2153 if (sdp
->debugfs_dentry_glocks
) {
2154 debugfs_remove(sdp
->debugfs_dentry_glocks
);
2155 sdp
->debugfs_dentry_glocks
= NULL
;
2157 debugfs_remove(sdp
->debugfs_dir
);
2158 sdp
->debugfs_dir
= NULL
;
2162 int gfs2_register_debugfs(void)
2164 gfs2_root
= debugfs_create_dir("gfs2", NULL
);
2165 return gfs2_root
? 0 : -ENOMEM
;
2168 void gfs2_unregister_debugfs(void)
2170 debugfs_remove(gfs2_root
);