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 <linux/rwsem.h>
23 #include <asm/uaccess.h>
24 #include <linux/seq_file.h>
25 #include <linux/debugfs.h>
26 #include <linux/kthread.h>
27 #include <linux/freezer.h>
28 #include <linux/workqueue.h>
29 #include <linux/jiffies.h>
43 struct gfs2_gl_hash_bucket
{
44 struct hlist_head hb_list
;
47 struct gfs2_glock_iter
{
48 int hash
; /* hash bucket index */
49 struct gfs2_sbd
*sdp
; /* incore superblock */
50 struct gfs2_glock
*gl
; /* current glock struct */
51 char string
[512]; /* scratch space */
54 typedef void (*glock_examiner
) (struct gfs2_glock
* gl
);
56 static int gfs2_dump_lockstate(struct gfs2_sbd
*sdp
);
57 static int __dump_glock(struct seq_file
*seq
, const struct gfs2_glock
*gl
);
58 #define GLOCK_BUG_ON(gl,x) do { if (unlikely(x)) { __dump_glock(NULL, gl); BUG(); } } while(0)
59 static void do_xmote(struct gfs2_glock
*gl
, struct gfs2_holder
*gh
, unsigned int target
);
61 static DECLARE_RWSEM(gfs2_umount_flush_sem
);
62 static struct dentry
*gfs2_root
;
63 static struct workqueue_struct
*glock_workqueue
;
64 static LIST_HEAD(lru_list
);
65 static atomic_t lru_count
= ATOMIC_INIT(0);
66 static DEFINE_SPINLOCK(lru_lock
);
68 #define GFS2_GL_HASH_SHIFT 15
69 #define GFS2_GL_HASH_SIZE (1 << GFS2_GL_HASH_SHIFT)
70 #define GFS2_GL_HASH_MASK (GFS2_GL_HASH_SIZE - 1)
72 static struct gfs2_gl_hash_bucket gl_hash_table
[GFS2_GL_HASH_SIZE
];
73 static struct dentry
*gfs2_root
;
76 * Despite what you might think, the numbers below are not arbitrary :-)
77 * They are taken from the ipv4 routing hash code, which is well tested
78 * and thus should be nearly optimal. Later on we might tweek the numbers
79 * but for now this should be fine.
81 * The reason for putting the locks in a separate array from the list heads
82 * is that we can have fewer locks than list heads and save memory. We use
83 * the same hash function for both, but with a different hash mask.
85 #if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK) || \
86 defined(CONFIG_PROVE_LOCKING)
89 # define GL_HASH_LOCK_SZ 256
92 # define GL_HASH_LOCK_SZ 4096
94 # define GL_HASH_LOCK_SZ 2048
96 # define GL_HASH_LOCK_SZ 1024
98 # define GL_HASH_LOCK_SZ 512
100 # define GL_HASH_LOCK_SZ 256
104 /* We never want more locks than chains */
105 #if GFS2_GL_HASH_SIZE < GL_HASH_LOCK_SZ
106 # undef GL_HASH_LOCK_SZ
107 # define GL_HASH_LOCK_SZ GFS2_GL_HASH_SIZE
110 static rwlock_t gl_hash_locks
[GL_HASH_LOCK_SZ
];
112 static inline rwlock_t
*gl_lock_addr(unsigned int x
)
114 return &gl_hash_locks
[x
& (GL_HASH_LOCK_SZ
-1)];
116 #else /* not SMP, so no spinlocks required */
117 static inline rwlock_t
*gl_lock_addr(unsigned int x
)
124 * gl_hash() - Turn glock number into hash bucket number
125 * @lock: The glock number
127 * Returns: The number of the corresponding hash bucket
130 static unsigned int gl_hash(const struct gfs2_sbd
*sdp
,
131 const struct lm_lockname
*name
)
135 h
= jhash(&name
->ln_number
, sizeof(u64
), 0);
136 h
= jhash(&name
->ln_type
, sizeof(unsigned int), h
);
137 h
= jhash(&sdp
, sizeof(struct gfs2_sbd
*), h
);
138 h
&= GFS2_GL_HASH_MASK
;
144 * glock_free() - Perform a few checks and then release struct gfs2_glock
145 * @gl: The glock to release
147 * Also calls lock module to release its internal structure for this glock.
151 static void glock_free(struct gfs2_glock
*gl
)
153 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
154 struct inode
*aspace
= gl
->gl_aspace
;
157 gfs2_aspace_put(aspace
);
159 sdp
->sd_lockstruct
.ls_ops
->lm_put_lock(gfs2_glock_cachep
, gl
);
163 * gfs2_glock_hold() - increment reference count on glock
164 * @gl: The glock to hold
168 static void gfs2_glock_hold(struct gfs2_glock
*gl
)
170 GLOCK_BUG_ON(gl
, atomic_read(&gl
->gl_ref
) == 0);
171 atomic_inc(&gl
->gl_ref
);
175 * gfs2_glock_schedule_for_reclaim - Add a glock to the reclaim list
180 static void gfs2_glock_schedule_for_reclaim(struct gfs2_glock
*gl
)
182 spin_lock(&lru_lock
);
183 if (list_empty(&gl
->gl_lru
) && gl
->gl_state
!= LM_ST_UNLOCKED
) {
184 list_add_tail(&gl
->gl_lru
, &lru_list
);
185 atomic_inc(&lru_count
);
187 spin_unlock(&lru_lock
);
191 * gfs2_glock_put() - Decrement reference count on glock
192 * @gl: The glock to put
196 int gfs2_glock_put(struct gfs2_glock
*gl
)
200 write_lock(gl_lock_addr(gl
->gl_hash
));
201 if (atomic_dec_and_test(&gl
->gl_ref
)) {
202 hlist_del(&gl
->gl_list
);
203 write_unlock(gl_lock_addr(gl
->gl_hash
));
204 spin_lock(&lru_lock
);
205 if (!list_empty(&gl
->gl_lru
)) {
206 list_del_init(&gl
->gl_lru
);
207 atomic_dec(&lru_count
);
209 spin_unlock(&lru_lock
);
210 GLOCK_BUG_ON(gl
, !list_empty(&gl
->gl_holders
));
215 /* 1 for being hashed, 1 for having state != LM_ST_UNLOCKED */
216 if (atomic_read(&gl
->gl_ref
) == 2)
217 gfs2_glock_schedule_for_reclaim(gl
);
218 write_unlock(gl_lock_addr(gl
->gl_hash
));
224 * search_bucket() - Find struct gfs2_glock by lock number
225 * @bucket: the bucket to search
226 * @name: The lock name
228 * Returns: NULL, or the struct gfs2_glock with the requested number
231 static struct gfs2_glock
*search_bucket(unsigned int hash
,
232 const struct gfs2_sbd
*sdp
,
233 const struct lm_lockname
*name
)
235 struct gfs2_glock
*gl
;
236 struct hlist_node
*h
;
238 hlist_for_each_entry(gl
, h
, &gl_hash_table
[hash
].hb_list
, gl_list
) {
239 if (!lm_name_equal(&gl
->gl_name
, name
))
241 if (gl
->gl_sbd
!= sdp
)
244 atomic_inc(&gl
->gl_ref
);
253 * may_grant - check if its ok to grant a new lock
255 * @gh: The lock request which we wish to grant
257 * Returns: true if its ok to grant the lock
260 static inline int may_grant(const struct gfs2_glock
*gl
, const struct gfs2_holder
*gh
)
262 const struct gfs2_holder
*gh_head
= list_entry(gl
->gl_holders
.next
, const struct gfs2_holder
, gh_list
);
263 if ((gh
->gh_state
== LM_ST_EXCLUSIVE
||
264 gh_head
->gh_state
== LM_ST_EXCLUSIVE
) && gh
!= gh_head
)
266 if (gl
->gl_state
== gh
->gh_state
)
268 if (gh
->gh_flags
& GL_EXACT
)
270 if (gl
->gl_state
== LM_ST_EXCLUSIVE
) {
271 if (gh
->gh_state
== LM_ST_SHARED
&& gh_head
->gh_state
== LM_ST_SHARED
)
273 if (gh
->gh_state
== LM_ST_DEFERRED
&& gh_head
->gh_state
== LM_ST_DEFERRED
)
276 if (gl
->gl_state
!= LM_ST_UNLOCKED
&& (gh
->gh_flags
& LM_FLAG_ANY
))
281 static void gfs2_holder_wake(struct gfs2_holder
*gh
)
283 clear_bit(HIF_WAIT
, &gh
->gh_iflags
);
284 smp_mb__after_clear_bit();
285 wake_up_bit(&gh
->gh_iflags
, HIF_WAIT
);
289 * do_promote - promote as many requests as possible on the current queue
292 * Returns: 1 if there is a blocked holder at the head of the list, or 2
293 * if a type specific operation is underway.
296 static int do_promote(struct gfs2_glock
*gl
)
297 __releases(&gl
->gl_spin
)
298 __acquires(&gl
->gl_spin
)
300 const struct gfs2_glock_operations
*glops
= gl
->gl_ops
;
301 struct gfs2_holder
*gh
, *tmp
;
305 list_for_each_entry_safe(gh
, tmp
, &gl
->gl_holders
, gh_list
) {
306 if (test_bit(HIF_HOLDER
, &gh
->gh_iflags
))
308 if (may_grant(gl
, gh
)) {
309 if (gh
->gh_list
.prev
== &gl
->gl_holders
&&
311 spin_unlock(&gl
->gl_spin
);
312 /* FIXME: eliminate this eventually */
313 ret
= glops
->go_lock(gh
);
314 spin_lock(&gl
->gl_spin
);
319 list_del_init(&gh
->gh_list
);
320 gfs2_holder_wake(gh
);
323 set_bit(HIF_HOLDER
, &gh
->gh_iflags
);
324 gfs2_holder_wake(gh
);
327 set_bit(HIF_HOLDER
, &gh
->gh_iflags
);
328 gfs2_holder_wake(gh
);
331 if (gh
->gh_list
.prev
== &gl
->gl_holders
)
339 * do_error - Something unexpected has happened during a lock request
343 static inline void do_error(struct gfs2_glock
*gl
, const int ret
)
345 struct gfs2_holder
*gh
, *tmp
;
347 list_for_each_entry_safe(gh
, tmp
, &gl
->gl_holders
, gh_list
) {
348 if (test_bit(HIF_HOLDER
, &gh
->gh_iflags
))
350 if (ret
& LM_OUT_ERROR
)
352 else if (gh
->gh_flags
& (LM_FLAG_TRY
| LM_FLAG_TRY_1CB
))
353 gh
->gh_error
= GLR_TRYFAILED
;
356 list_del_init(&gh
->gh_list
);
357 gfs2_holder_wake(gh
);
362 * find_first_waiter - find the first gh that's waiting for the glock
366 static inline struct gfs2_holder
*find_first_waiter(const struct gfs2_glock
*gl
)
368 struct gfs2_holder
*gh
;
370 list_for_each_entry(gh
, &gl
->gl_holders
, gh_list
) {
371 if (!test_bit(HIF_HOLDER
, &gh
->gh_iflags
))
378 * state_change - record that the glock is now in a different state
380 * @new_state the new state
384 static void state_change(struct gfs2_glock
*gl
, unsigned int new_state
)
388 held1
= (gl
->gl_state
!= LM_ST_UNLOCKED
);
389 held2
= (new_state
!= LM_ST_UNLOCKED
);
391 if (held1
!= held2
) {
398 gl
->gl_state
= new_state
;
399 gl
->gl_tchange
= jiffies
;
402 static void gfs2_demote_wake(struct gfs2_glock
*gl
)
404 gl
->gl_demote_state
= LM_ST_EXCLUSIVE
;
405 clear_bit(GLF_DEMOTE
, &gl
->gl_flags
);
406 smp_mb__after_clear_bit();
407 wake_up_bit(&gl
->gl_flags
, GLF_DEMOTE
);
411 * finish_xmote - The DLM has replied to one of our lock requests
413 * @ret: The status from the DLM
417 static void finish_xmote(struct gfs2_glock
*gl
, unsigned int ret
)
419 const struct gfs2_glock_operations
*glops
= gl
->gl_ops
;
420 struct gfs2_holder
*gh
;
421 unsigned state
= ret
& LM_OUT_ST_MASK
;
424 spin_lock(&gl
->gl_spin
);
425 state_change(gl
, state
);
426 gh
= find_first_waiter(gl
);
428 /* Demote to UN request arrived during demote to SH or DF */
429 if (test_bit(GLF_DEMOTE_IN_PROGRESS
, &gl
->gl_flags
) &&
430 state
!= LM_ST_UNLOCKED
&& gl
->gl_demote_state
== LM_ST_UNLOCKED
)
431 gl
->gl_target
= LM_ST_UNLOCKED
;
433 /* Check for state != intended state */
434 if (unlikely(state
!= gl
->gl_target
)) {
435 if (gh
&& !test_bit(GLF_DEMOTE_IN_PROGRESS
, &gl
->gl_flags
)) {
436 /* move to back of queue and try next entry */
437 if (ret
& LM_OUT_CANCELED
) {
438 if ((gh
->gh_flags
& LM_FLAG_PRIORITY
) == 0)
439 list_move_tail(&gh
->gh_list
, &gl
->gl_holders
);
440 gh
= find_first_waiter(gl
);
441 gl
->gl_target
= gh
->gh_state
;
444 /* Some error or failed "try lock" - report it */
445 if ((ret
& LM_OUT_ERROR
) ||
446 (gh
->gh_flags
& (LM_FLAG_TRY
| LM_FLAG_TRY_1CB
))) {
447 gl
->gl_target
= gl
->gl_state
;
453 /* Unlocked due to conversion deadlock, try again */
456 do_xmote(gl
, gh
, gl
->gl_target
);
458 /* Conversion fails, unlock and try again */
461 do_xmote(gl
, gh
, LM_ST_UNLOCKED
);
463 default: /* Everything else */
464 printk(KERN_ERR
"GFS2: wanted %u got %u\n", gl
->gl_target
, state
);
467 spin_unlock(&gl
->gl_spin
);
472 /* Fast path - we got what we asked for */
473 if (test_and_clear_bit(GLF_DEMOTE_IN_PROGRESS
, &gl
->gl_flags
))
474 gfs2_demote_wake(gl
);
475 if (state
!= LM_ST_UNLOCKED
) {
476 if (glops
->go_xmote_bh
) {
477 spin_unlock(&gl
->gl_spin
);
478 rv
= glops
->go_xmote_bh(gl
, gh
);
481 spin_lock(&gl
->gl_spin
);
492 clear_bit(GLF_LOCK
, &gl
->gl_flags
);
494 spin_unlock(&gl
->gl_spin
);
498 static unsigned int gfs2_lm_lock(struct gfs2_sbd
*sdp
, void *lock
,
499 unsigned int req_state
,
502 int ret
= LM_OUT_ERROR
;
504 if (!sdp
->sd_lockstruct
.ls_ops
->lm_lock
)
505 return req_state
== LM_ST_UNLOCKED
? 0 : req_state
;
507 if (likely(!test_bit(SDF_SHUTDOWN
, &sdp
->sd_flags
)))
508 ret
= sdp
->sd_lockstruct
.ls_ops
->lm_lock(lock
,
514 * do_xmote - Calls the DLM to change the state of a lock
515 * @gl: The lock state
516 * @gh: The holder (only for promotes)
517 * @target: The target lock state
521 static void do_xmote(struct gfs2_glock
*gl
, struct gfs2_holder
*gh
, unsigned int target
)
522 __releases(&gl
->gl_spin
)
523 __acquires(&gl
->gl_spin
)
525 const struct gfs2_glock_operations
*glops
= gl
->gl_ops
;
526 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
527 unsigned int lck_flags
= gh
? gh
->gh_flags
: 0;
530 lck_flags
&= (LM_FLAG_TRY
| LM_FLAG_TRY_1CB
| LM_FLAG_NOEXP
|
532 BUG_ON(gl
->gl_state
== target
);
533 BUG_ON(gl
->gl_state
== gl
->gl_target
);
534 if ((target
== LM_ST_UNLOCKED
|| target
== LM_ST_DEFERRED
) &&
536 set_bit(GLF_INVALIDATE_IN_PROGRESS
, &gl
->gl_flags
);
537 do_error(gl
, 0); /* Fail queued try locks */
539 spin_unlock(&gl
->gl_spin
);
540 if (glops
->go_xmote_th
)
541 glops
->go_xmote_th(gl
);
542 if (test_bit(GLF_INVALIDATE_IN_PROGRESS
, &gl
->gl_flags
))
543 glops
->go_inval(gl
, target
== LM_ST_DEFERRED
? 0 : DIO_METADATA
);
544 clear_bit(GLF_INVALIDATE_IN_PROGRESS
, &gl
->gl_flags
);
547 if (target
!= LM_ST_UNLOCKED
&& (gl
->gl_state
== LM_ST_SHARED
||
548 gl
->gl_state
== LM_ST_DEFERRED
) &&
549 !(lck_flags
& (LM_FLAG_TRY
| LM_FLAG_TRY_1CB
)))
550 lck_flags
|= LM_FLAG_TRY_1CB
;
551 ret
= gfs2_lm_lock(sdp
, gl
, target
, lck_flags
);
553 if (!(ret
& LM_OUT_ASYNC
)) {
554 finish_xmote(gl
, ret
);
556 if (queue_delayed_work(glock_workqueue
, &gl
->gl_work
, 0) == 0)
559 GLOCK_BUG_ON(gl
, ret
!= LM_OUT_ASYNC
);
561 spin_lock(&gl
->gl_spin
);
565 * find_first_holder - find the first "holder" gh
569 static inline struct gfs2_holder
*find_first_holder(const struct gfs2_glock
*gl
)
571 struct gfs2_holder
*gh
;
573 if (!list_empty(&gl
->gl_holders
)) {
574 gh
= list_entry(gl
->gl_holders
.next
, struct gfs2_holder
, gh_list
);
575 if (test_bit(HIF_HOLDER
, &gh
->gh_iflags
))
582 * run_queue - do all outstanding tasks related to a glock
583 * @gl: The glock in question
584 * @nonblock: True if we must not block in run_queue
588 static void run_queue(struct gfs2_glock
*gl
, const int nonblock
)
589 __releases(&gl
->gl_spin
)
590 __acquires(&gl
->gl_spin
)
592 struct gfs2_holder
*gh
= NULL
;
595 if (test_and_set_bit(GLF_LOCK
, &gl
->gl_flags
))
598 GLOCK_BUG_ON(gl
, test_bit(GLF_DEMOTE_IN_PROGRESS
, &gl
->gl_flags
));
600 down_read(&gfs2_umount_flush_sem
);
601 if (test_bit(GLF_DEMOTE
, &gl
->gl_flags
) &&
602 gl
->gl_demote_state
!= gl
->gl_state
) {
603 if (find_first_holder(gl
))
607 set_bit(GLF_DEMOTE_IN_PROGRESS
, &gl
->gl_flags
);
608 GLOCK_BUG_ON(gl
, gl
->gl_demote_state
== LM_ST_EXCLUSIVE
);
609 gl
->gl_target
= gl
->gl_demote_state
;
611 if (test_bit(GLF_DEMOTE
, &gl
->gl_flags
))
612 gfs2_demote_wake(gl
);
613 ret
= do_promote(gl
);
618 gh
= find_first_waiter(gl
);
619 gl
->gl_target
= gh
->gh_state
;
620 if (!(gh
->gh_flags
& (LM_FLAG_TRY
| LM_FLAG_TRY_1CB
)))
621 do_error(gl
, 0); /* Fail queued try locks */
623 do_xmote(gl
, gh
, gl
->gl_target
);
625 up_read(&gfs2_umount_flush_sem
);
630 if (queue_delayed_work(glock_workqueue
, &gl
->gl_work
, 0) == 0)
633 clear_bit(GLF_LOCK
, &gl
->gl_flags
);
637 static void glock_work_func(struct work_struct
*work
)
639 unsigned long delay
= 0;
640 struct gfs2_glock
*gl
= container_of(work
, struct gfs2_glock
, gl_work
.work
);
642 if (test_and_clear_bit(GLF_REPLY_PENDING
, &gl
->gl_flags
))
643 finish_xmote(gl
, gl
->gl_reply
);
644 spin_lock(&gl
->gl_spin
);
645 if (test_and_clear_bit(GLF_PENDING_DEMOTE
, &gl
->gl_flags
) &&
646 gl
->gl_state
!= LM_ST_UNLOCKED
&&
647 gl
->gl_demote_state
!= LM_ST_EXCLUSIVE
) {
648 unsigned long holdtime
, now
= jiffies
;
649 holdtime
= gl
->gl_tchange
+ gl
->gl_ops
->go_min_hold_time
;
650 if (time_before(now
, holdtime
))
651 delay
= holdtime
- now
;
652 set_bit(delay
? GLF_PENDING_DEMOTE
: GLF_DEMOTE
, &gl
->gl_flags
);
655 spin_unlock(&gl
->gl_spin
);
657 queue_delayed_work(glock_workqueue
, &gl
->gl_work
, delay
) == 0)
662 * gfs2_glock_get() - Get a glock, or create one if one doesn't exist
663 * @sdp: The GFS2 superblock
664 * @number: the lock number
665 * @glops: The glock_operations to use
666 * @create: If 0, don't create the glock if it doesn't exist
667 * @glp: the glock is returned here
669 * This does not lock a glock, just finds/creates structures for one.
674 int gfs2_glock_get(struct gfs2_sbd
*sdp
, u64 number
,
675 const struct gfs2_glock_operations
*glops
, int create
,
676 struct gfs2_glock
**glp
)
678 struct lm_lockname name
= { .ln_number
= number
, .ln_type
= glops
->go_type
};
679 struct gfs2_glock
*gl
, *tmp
;
680 unsigned int hash
= gl_hash(sdp
, &name
);
683 read_lock(gl_lock_addr(hash
));
684 gl
= search_bucket(hash
, sdp
, &name
);
685 read_unlock(gl_lock_addr(hash
));
693 gl
= kmem_cache_alloc(gfs2_glock_cachep
, GFP_KERNEL
);
699 atomic_set(&gl
->gl_ref
, 1);
700 gl
->gl_state
= LM_ST_UNLOCKED
;
701 gl
->gl_target
= LM_ST_UNLOCKED
;
702 gl
->gl_demote_state
= LM_ST_EXCLUSIVE
;
705 snprintf(gl
->gl_strname
, GDLM_STRNAME_BYTES
, "%8x%16llx", name
.ln_type
, (unsigned long long)number
);
706 memset(&gl
->gl_lksb
, 0, sizeof(struct dlm_lksb
));
707 gl
->gl_lksb
.sb_lvbptr
= gl
->gl_lvb
;
708 gl
->gl_tchange
= jiffies
;
709 gl
->gl_object
= NULL
;
711 gl
->gl_aspace
= NULL
;
712 INIT_DELAYED_WORK(&gl
->gl_work
, glock_work_func
);
714 /* If this glock protects actual on-disk data or metadata blocks,
715 create a VFS inode to manage the pages/buffers holding them. */
716 if (glops
== &gfs2_inode_glops
|| glops
== &gfs2_rgrp_glops
) {
717 gl
->gl_aspace
= gfs2_aspace_get(sdp
);
718 if (!gl
->gl_aspace
) {
724 write_lock(gl_lock_addr(hash
));
725 tmp
= search_bucket(hash
, sdp
, &name
);
727 write_unlock(gl_lock_addr(hash
));
731 hlist_add_head(&gl
->gl_list
, &gl_hash_table
[hash
].hb_list
);
732 write_unlock(gl_lock_addr(hash
));
740 kmem_cache_free(gfs2_glock_cachep
, gl
);
745 * gfs2_holder_init - initialize a struct gfs2_holder in the default way
747 * @state: the state we're requesting
748 * @flags: the modifier flags
749 * @gh: the holder structure
753 void gfs2_holder_init(struct gfs2_glock
*gl
, unsigned int state
, unsigned flags
,
754 struct gfs2_holder
*gh
)
756 INIT_LIST_HEAD(&gh
->gh_list
);
758 gh
->gh_ip
= (unsigned long)__builtin_return_address(0);
759 gh
->gh_owner_pid
= get_pid(task_pid(current
));
760 gh
->gh_state
= state
;
761 gh
->gh_flags
= flags
;
768 * gfs2_holder_reinit - reinitialize a struct gfs2_holder so we can requeue it
769 * @state: the state we're requesting
770 * @flags: the modifier flags
771 * @gh: the holder structure
773 * Don't mess with the glock.
777 void gfs2_holder_reinit(unsigned int state
, unsigned flags
, struct gfs2_holder
*gh
)
779 gh
->gh_state
= state
;
780 gh
->gh_flags
= flags
;
782 gh
->gh_ip
= (unsigned long)__builtin_return_address(0);
786 * gfs2_holder_uninit - uninitialize a holder structure (drop glock reference)
787 * @gh: the holder structure
791 void gfs2_holder_uninit(struct gfs2_holder
*gh
)
793 put_pid(gh
->gh_owner_pid
);
794 gfs2_glock_put(gh
->gh_gl
);
799 static int just_schedule(void *word
)
805 static void wait_on_holder(struct gfs2_holder
*gh
)
808 wait_on_bit(&gh
->gh_iflags
, HIF_WAIT
, just_schedule
, TASK_UNINTERRUPTIBLE
);
811 static void wait_on_demote(struct gfs2_glock
*gl
)
814 wait_on_bit(&gl
->gl_flags
, GLF_DEMOTE
, just_schedule
, TASK_UNINTERRUPTIBLE
);
818 * handle_callback - process a demote request
820 * @state: the state the caller wants us to change to
822 * There are only two requests that we are going to see in actual
823 * practise: LM_ST_SHARED and LM_ST_UNLOCKED
826 static void handle_callback(struct gfs2_glock
*gl
, unsigned int state
,
829 int bit
= delay
? GLF_PENDING_DEMOTE
: GLF_DEMOTE
;
831 set_bit(bit
, &gl
->gl_flags
);
832 if (gl
->gl_demote_state
== LM_ST_EXCLUSIVE
) {
833 gl
->gl_demote_state
= state
;
834 gl
->gl_demote_time
= jiffies
;
835 } else if (gl
->gl_demote_state
!= LM_ST_UNLOCKED
&&
836 gl
->gl_demote_state
!= state
) {
837 gl
->gl_demote_state
= LM_ST_UNLOCKED
;
842 * gfs2_glock_wait - wait on a glock acquisition
843 * @gh: the glock holder
845 * Returns: 0 on success
848 int gfs2_glock_wait(struct gfs2_holder
*gh
)
854 void gfs2_print_dbg(struct seq_file
*seq
, const char *fmt
, ...)
860 struct gfs2_glock_iter
*gi
= seq
->private;
861 vsprintf(gi
->string
, fmt
, args
);
862 seq_printf(seq
, gi
->string
);
864 printk(KERN_ERR
" ");
871 * add_to_queue - Add a holder to the wait queue (but look for recursion)
872 * @gh: the holder structure to add
874 * Eventually we should move the recursive locking trap to a
875 * debugging option or something like that. This is the fast
876 * path and needs to have the minimum number of distractions.
880 static inline void add_to_queue(struct gfs2_holder
*gh
)
881 __releases(&gl
->gl_spin
)
882 __acquires(&gl
->gl_spin
)
884 struct gfs2_glock
*gl
= gh
->gh_gl
;
885 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
886 struct list_head
*insert_pt
= NULL
;
887 struct gfs2_holder
*gh2
;
890 BUG_ON(gh
->gh_owner_pid
== NULL
);
891 if (test_and_set_bit(HIF_WAIT
, &gh
->gh_iflags
))
894 if (gh
->gh_flags
& (LM_FLAG_TRY
| LM_FLAG_TRY_1CB
)) {
895 if (test_bit(GLF_LOCK
, &gl
->gl_flags
))
897 if (test_bit(GLF_INVALIDATE_IN_PROGRESS
, &gl
->gl_flags
))
901 list_for_each_entry(gh2
, &gl
->gl_holders
, gh_list
) {
902 if (unlikely(gh2
->gh_owner_pid
== gh
->gh_owner_pid
&&
903 (gh
->gh_gl
->gl_ops
->go_type
!= LM_TYPE_FLOCK
)))
906 !(gh2
->gh_flags
& (LM_FLAG_TRY
| LM_FLAG_TRY_1CB
)) &&
907 !may_grant(gl
, gh
)) {
909 gh
->gh_error
= GLR_TRYFAILED
;
910 gfs2_holder_wake(gh
);
913 if (test_bit(HIF_HOLDER
, &gh2
->gh_iflags
))
915 if (unlikely((gh
->gh_flags
& LM_FLAG_PRIORITY
) && !insert_pt
))
916 insert_pt
= &gh2
->gh_list
;
918 if (likely(insert_pt
== NULL
)) {
919 list_add_tail(&gh
->gh_list
, &gl
->gl_holders
);
920 if (unlikely(gh
->gh_flags
& LM_FLAG_PRIORITY
))
924 list_add_tail(&gh
->gh_list
, insert_pt
);
926 gh
= list_entry(gl
->gl_holders
.next
, struct gfs2_holder
, gh_list
);
927 if (!(gh
->gh_flags
& LM_FLAG_PRIORITY
)) {
928 spin_unlock(&gl
->gl_spin
);
929 if (sdp
->sd_lockstruct
.ls_ops
->lm_cancel
)
930 sdp
->sd_lockstruct
.ls_ops
->lm_cancel(gl
);
931 spin_lock(&gl
->gl_spin
);
936 print_symbol(KERN_ERR
"original: %s\n", gh2
->gh_ip
);
937 printk(KERN_ERR
"pid: %d\n", pid_nr(gh2
->gh_owner_pid
));
938 printk(KERN_ERR
"lock type: %d req lock state : %d\n",
939 gh2
->gh_gl
->gl_name
.ln_type
, gh2
->gh_state
);
940 print_symbol(KERN_ERR
"new: %s\n", gh
->gh_ip
);
941 printk(KERN_ERR
"pid: %d\n", pid_nr(gh
->gh_owner_pid
));
942 printk(KERN_ERR
"lock type: %d req lock state : %d\n",
943 gh
->gh_gl
->gl_name
.ln_type
, gh
->gh_state
);
944 __dump_glock(NULL
, gl
);
949 * gfs2_glock_nq - enqueue a struct gfs2_holder onto a glock (acquire a glock)
950 * @gh: the holder structure
952 * if (gh->gh_flags & GL_ASYNC), this never returns an error
954 * Returns: 0, GLR_TRYFAILED, or errno on failure
957 int gfs2_glock_nq(struct gfs2_holder
*gh
)
959 struct gfs2_glock
*gl
= gh
->gh_gl
;
960 struct gfs2_sbd
*sdp
= gl
->gl_sbd
;
963 if (unlikely(test_bit(SDF_SHUTDOWN
, &sdp
->sd_flags
)))
966 spin_lock(&gl
->gl_spin
);
969 spin_unlock(&gl
->gl_spin
);
971 if (!(gh
->gh_flags
& GL_ASYNC
))
972 error
= gfs2_glock_wait(gh
);
978 * gfs2_glock_poll - poll to see if an async request has been completed
981 * Returns: 1 if the request is ready to be gfs2_glock_wait()ed on
984 int gfs2_glock_poll(struct gfs2_holder
*gh
)
986 return test_bit(HIF_WAIT
, &gh
->gh_iflags
) ? 0 : 1;
990 * gfs2_glock_dq - dequeue a struct gfs2_holder from a glock (release a glock)
991 * @gh: the glock holder
995 void gfs2_glock_dq(struct gfs2_holder
*gh
)
997 struct gfs2_glock
*gl
= gh
->gh_gl
;
998 const struct gfs2_glock_operations
*glops
= gl
->gl_ops
;
1002 spin_lock(&gl
->gl_spin
);
1003 if (gh
->gh_flags
& GL_NOCACHE
)
1004 handle_callback(gl
, LM_ST_UNLOCKED
, 0);
1006 list_del_init(&gh
->gh_list
);
1007 if (find_first_holder(gl
) == NULL
) {
1008 if (glops
->go_unlock
) {
1009 GLOCK_BUG_ON(gl
, test_and_set_bit(GLF_LOCK
, &gl
->gl_flags
));
1010 spin_unlock(&gl
->gl_spin
);
1011 glops
->go_unlock(gh
);
1012 spin_lock(&gl
->gl_spin
);
1013 clear_bit(GLF_LOCK
, &gl
->gl_flags
);
1015 if (list_empty(&gl
->gl_holders
) &&
1016 !test_bit(GLF_PENDING_DEMOTE
, &gl
->gl_flags
) &&
1017 !test_bit(GLF_DEMOTE
, &gl
->gl_flags
))
1020 spin_unlock(&gl
->gl_spin
);
1021 if (likely(fast_path
))
1024 gfs2_glock_hold(gl
);
1025 if (test_bit(GLF_PENDING_DEMOTE
, &gl
->gl_flags
) &&
1026 !test_bit(GLF_DEMOTE
, &gl
->gl_flags
))
1027 delay
= gl
->gl_ops
->go_min_hold_time
;
1028 if (queue_delayed_work(glock_workqueue
, &gl
->gl_work
, delay
) == 0)
1032 void gfs2_glock_dq_wait(struct gfs2_holder
*gh
)
1034 struct gfs2_glock
*gl
= gh
->gh_gl
;
1040 * gfs2_glock_dq_uninit - dequeue a holder from a glock and initialize it
1041 * @gh: the holder structure
1045 void gfs2_glock_dq_uninit(struct gfs2_holder
*gh
)
1048 gfs2_holder_uninit(gh
);
1052 * gfs2_glock_nq_num - acquire a glock based on lock number
1053 * @sdp: the filesystem
1054 * @number: the lock number
1055 * @glops: the glock operations for the type of glock
1056 * @state: the state to acquire the glock in
1057 * @flags: modifier flags for the aquisition
1058 * @gh: the struct gfs2_holder
1063 int gfs2_glock_nq_num(struct gfs2_sbd
*sdp
, u64 number
,
1064 const struct gfs2_glock_operations
*glops
,
1065 unsigned int state
, int flags
, struct gfs2_holder
*gh
)
1067 struct gfs2_glock
*gl
;
1070 error
= gfs2_glock_get(sdp
, number
, glops
, CREATE
, &gl
);
1072 error
= gfs2_glock_nq_init(gl
, state
, flags
, gh
);
1080 * glock_compare - Compare two struct gfs2_glock structures for sorting
1081 * @arg_a: the first structure
1082 * @arg_b: the second structure
1086 static int glock_compare(const void *arg_a
, const void *arg_b
)
1088 const struct gfs2_holder
*gh_a
= *(const struct gfs2_holder
**)arg_a
;
1089 const struct gfs2_holder
*gh_b
= *(const struct gfs2_holder
**)arg_b
;
1090 const struct lm_lockname
*a
= &gh_a
->gh_gl
->gl_name
;
1091 const struct lm_lockname
*b
= &gh_b
->gh_gl
->gl_name
;
1093 if (a
->ln_number
> b
->ln_number
)
1095 if (a
->ln_number
< b
->ln_number
)
1097 BUG_ON(gh_a
->gh_gl
->gl_ops
->go_type
== gh_b
->gh_gl
->gl_ops
->go_type
);
1102 * nq_m_sync - synchonously acquire more than one glock in deadlock free order
1103 * @num_gh: the number of structures
1104 * @ghs: an array of struct gfs2_holder structures
1106 * Returns: 0 on success (all glocks acquired),
1107 * errno on failure (no glocks acquired)
1110 static int nq_m_sync(unsigned int num_gh
, struct gfs2_holder
*ghs
,
1111 struct gfs2_holder
**p
)
1116 for (x
= 0; x
< num_gh
; x
++)
1119 sort(p
, num_gh
, sizeof(struct gfs2_holder
*), glock_compare
, NULL
);
1121 for (x
= 0; x
< num_gh
; x
++) {
1122 p
[x
]->gh_flags
&= ~(LM_FLAG_TRY
| GL_ASYNC
);
1124 error
= gfs2_glock_nq(p
[x
]);
1127 gfs2_glock_dq(p
[x
]);
1136 * gfs2_glock_nq_m - acquire multiple glocks
1137 * @num_gh: the number of structures
1138 * @ghs: an array of struct gfs2_holder structures
1141 * Returns: 0 on success (all glocks acquired),
1142 * errno on failure (no glocks acquired)
1145 int gfs2_glock_nq_m(unsigned int num_gh
, struct gfs2_holder
*ghs
)
1147 struct gfs2_holder
*tmp
[4];
1148 struct gfs2_holder
**pph
= tmp
;
1155 ghs
->gh_flags
&= ~(LM_FLAG_TRY
| GL_ASYNC
);
1156 return gfs2_glock_nq(ghs
);
1160 pph
= kmalloc(num_gh
* sizeof(struct gfs2_holder
*), GFP_NOFS
);
1165 error
= nq_m_sync(num_gh
, ghs
, pph
);
1174 * gfs2_glock_dq_m - release multiple glocks
1175 * @num_gh: the number of structures
1176 * @ghs: an array of struct gfs2_holder structures
1180 void gfs2_glock_dq_m(unsigned int num_gh
, struct gfs2_holder
*ghs
)
1184 for (x
= 0; x
< num_gh
; x
++)
1185 gfs2_glock_dq(&ghs
[x
]);
1189 * gfs2_glock_dq_uninit_m - release multiple glocks
1190 * @num_gh: the number of structures
1191 * @ghs: an array of struct gfs2_holder structures
1195 void gfs2_glock_dq_uninit_m(unsigned int num_gh
, struct gfs2_holder
*ghs
)
1199 for (x
= 0; x
< num_gh
; x
++)
1200 gfs2_glock_dq_uninit(&ghs
[x
]);
1203 void gfs2_glock_cb(struct gfs2_glock
*gl
, unsigned int state
)
1205 unsigned long delay
= 0;
1206 unsigned long holdtime
;
1207 unsigned long now
= jiffies
;
1209 gfs2_glock_hold(gl
);
1210 holdtime
= gl
->gl_tchange
+ gl
->gl_ops
->go_min_hold_time
;
1211 if (time_before(now
, holdtime
))
1212 delay
= holdtime
- now
;
1213 if (test_bit(GLF_REPLY_PENDING
, &gl
->gl_flags
))
1214 delay
= gl
->gl_ops
->go_min_hold_time
;
1216 spin_lock(&gl
->gl_spin
);
1217 handle_callback(gl
, state
, delay
);
1218 spin_unlock(&gl
->gl_spin
);
1219 if (queue_delayed_work(glock_workqueue
, &gl
->gl_work
, delay
) == 0)
1224 * gfs2_glock_complete - Callback used by locking
1225 * @gl: Pointer to the glock
1226 * @ret: The return value from the dlm
1230 void gfs2_glock_complete(struct gfs2_glock
*gl
, int ret
)
1232 struct lm_lockstruct
*ls
= &gl
->gl_sbd
->sd_lockstruct
;
1234 if (unlikely(test_bit(DFL_BLOCK_LOCKS
, &ls
->ls_flags
))) {
1235 struct gfs2_holder
*gh
;
1236 spin_lock(&gl
->gl_spin
);
1237 gh
= find_first_waiter(gl
);
1238 if ((!(gh
&& (gh
->gh_flags
& LM_FLAG_NOEXP
)) &&
1239 (gl
->gl_target
!= LM_ST_UNLOCKED
)) ||
1240 ((ret
& ~LM_OUT_ST_MASK
) != 0))
1241 set_bit(GLF_FROZEN
, &gl
->gl_flags
);
1242 spin_unlock(&gl
->gl_spin
);
1243 if (test_bit(GLF_FROZEN
, &gl
->gl_flags
))
1246 set_bit(GLF_REPLY_PENDING
, &gl
->gl_flags
);
1247 gfs2_glock_hold(gl
);
1248 if (queue_delayed_work(glock_workqueue
, &gl
->gl_work
, 0) == 0)
1253 * demote_ok - Check to see if it's ok to unlock a glock
1256 * Returns: 1 if it's ok
1259 static int demote_ok(const struct gfs2_glock
*gl
)
1261 const struct gfs2_glock_operations
*glops
= gl
->gl_ops
;
1263 if (gl
->gl_state
== LM_ST_UNLOCKED
)
1265 if (!list_empty(&gl
->gl_holders
))
1267 if (glops
->go_demote_ok
)
1268 return glops
->go_demote_ok(gl
);
1273 static int gfs2_shrink_glock_memory(int nr
, gfp_t gfp_mask
)
1275 struct gfs2_glock
*gl
;
1284 if (!(gfp_mask
& __GFP_FS
))
1287 spin_lock(&lru_lock
);
1288 while(nr
&& !list_empty(&lru_list
)) {
1289 gl
= list_entry(lru_list
.next
, struct gfs2_glock
, gl_lru
);
1290 list_del_init(&gl
->gl_lru
);
1291 atomic_dec(&lru_count
);
1293 /* Test for being demotable */
1294 if (!test_and_set_bit(GLF_LOCK
, &gl
->gl_flags
)) {
1295 gfs2_glock_hold(gl
);
1297 spin_unlock(&lru_lock
);
1298 spin_lock(&gl
->gl_spin
);
1299 may_demote
= demote_ok(gl
);
1300 spin_unlock(&gl
->gl_spin
);
1301 clear_bit(GLF_LOCK
, &gl
->gl_flags
);
1303 handle_callback(gl
, LM_ST_UNLOCKED
, 0);
1305 if (queue_delayed_work(glock_workqueue
, &gl
->gl_work
, 0) == 0)
1308 spin_lock(&lru_lock
);
1312 if (list_empty(&gl
->gl_lru
) &&
1313 (atomic_read(&gl
->gl_ref
) <= (2 + got_ref
))) {
1315 list_add(&gl
->gl_lru
, &skipped
);
1318 spin_unlock(&lru_lock
);
1320 spin_lock(&lru_lock
);
1324 list_splice(&skipped
, &lru_list
);
1325 atomic_add(nr_skipped
, &lru_count
);
1326 spin_unlock(&lru_lock
);
1328 return (atomic_read(&lru_count
) / 100) * sysctl_vfs_cache_pressure
;
1331 static struct shrinker glock_shrinker
= {
1332 .shrink
= gfs2_shrink_glock_memory
,
1333 .seeks
= DEFAULT_SEEKS
,
1337 * examine_bucket - Call a function for glock in a hash bucket
1338 * @examiner: the function
1339 * @sdp: the filesystem
1340 * @bucket: the bucket
1342 * Returns: 1 if the bucket has entries
1345 static int examine_bucket(glock_examiner examiner
, struct gfs2_sbd
*sdp
,
1348 struct gfs2_glock
*gl
, *prev
= NULL
;
1349 int has_entries
= 0;
1350 struct hlist_head
*head
= &gl_hash_table
[hash
].hb_list
;
1352 read_lock(gl_lock_addr(hash
));
1353 /* Can't use hlist_for_each_entry - don't want prefetch here */
1354 if (hlist_empty(head
))
1356 gl
= list_entry(head
->first
, struct gfs2_glock
, gl_list
);
1358 if (!sdp
|| gl
->gl_sbd
== sdp
) {
1359 gfs2_glock_hold(gl
);
1360 read_unlock(gl_lock_addr(hash
));
1362 gfs2_glock_put(prev
);
1366 read_lock(gl_lock_addr(hash
));
1368 if (gl
->gl_list
.next
== NULL
)
1370 gl
= list_entry(gl
->gl_list
.next
, struct gfs2_glock
, gl_list
);
1373 read_unlock(gl_lock_addr(hash
));
1375 gfs2_glock_put(prev
);
1382 * thaw_glock - thaw out a glock which has an unprocessed reply waiting
1383 * @gl: The glock to thaw
1385 * N.B. When we freeze a glock, we leave a ref to the glock outstanding,
1386 * so this has to result in the ref count being dropped by one.
1389 static void thaw_glock(struct gfs2_glock
*gl
)
1391 if (!test_and_clear_bit(GLF_FROZEN
, &gl
->gl_flags
))
1393 set_bit(GLF_REPLY_PENDING
, &gl
->gl_flags
);
1394 gfs2_glock_hold(gl
);
1395 if (queue_delayed_work(glock_workqueue
, &gl
->gl_work
, 0) == 0)
1400 * clear_glock - look at a glock and see if we can free it from glock cache
1401 * @gl: the glock to look at
1405 static void clear_glock(struct gfs2_glock
*gl
)
1407 spin_lock(&lru_lock
);
1408 if (!list_empty(&gl
->gl_lru
)) {
1409 list_del_init(&gl
->gl_lru
);
1410 atomic_dec(&lru_count
);
1412 spin_unlock(&lru_lock
);
1414 spin_lock(&gl
->gl_spin
);
1415 if (find_first_holder(gl
) == NULL
&& gl
->gl_state
!= LM_ST_UNLOCKED
)
1416 handle_callback(gl
, LM_ST_UNLOCKED
, 0);
1417 spin_unlock(&gl
->gl_spin
);
1418 gfs2_glock_hold(gl
);
1419 if (queue_delayed_work(glock_workqueue
, &gl
->gl_work
, 0) == 0)
1424 * gfs2_glock_thaw - Thaw any frozen glocks
1425 * @sdp: The super block
1429 void gfs2_glock_thaw(struct gfs2_sbd
*sdp
)
1433 for (x
= 0; x
< GFS2_GL_HASH_SIZE
; x
++)
1434 examine_bucket(thaw_glock
, sdp
, x
);
1438 * gfs2_gl_hash_clear - Empty out the glock hash table
1439 * @sdp: the filesystem
1440 * @wait: wait until it's all gone
1442 * Called when unmounting the filesystem.
1445 void gfs2_gl_hash_clear(struct gfs2_sbd
*sdp
)
1455 for (x
= 0; x
< GFS2_GL_HASH_SIZE
; x
++) {
1456 if (examine_bucket(clear_glock
, sdp
, x
))
1463 if (time_after_eq(jiffies
,
1464 t
+ gfs2_tune_get(sdp
, gt_stall_secs
) * HZ
)) {
1465 fs_warn(sdp
, "Unmount seems to be stalled. "
1466 "Dumping lock state...\n");
1467 gfs2_dump_lockstate(sdp
);
1471 down_write(&gfs2_umount_flush_sem
);
1472 invalidate_inodes(sdp
->sd_vfs
);
1473 up_write(&gfs2_umount_flush_sem
);
1478 void gfs2_glock_finish_truncate(struct gfs2_inode
*ip
)
1480 struct gfs2_glock
*gl
= ip
->i_gl
;
1483 ret
= gfs2_truncatei_resume(ip
);
1484 gfs2_assert_withdraw(gl
->gl_sbd
, ret
== 0);
1486 spin_lock(&gl
->gl_spin
);
1487 clear_bit(GLF_LOCK
, &gl
->gl_flags
);
1489 spin_unlock(&gl
->gl_spin
);
1492 static const char *state2str(unsigned state
)
1495 case LM_ST_UNLOCKED
:
1499 case LM_ST_DEFERRED
:
1501 case LM_ST_EXCLUSIVE
:
1507 static const char *hflags2str(char *buf
, unsigned flags
, unsigned long iflags
)
1510 if (flags
& LM_FLAG_TRY
)
1512 if (flags
& LM_FLAG_TRY_1CB
)
1514 if (flags
& LM_FLAG_NOEXP
)
1516 if (flags
& LM_FLAG_ANY
)
1518 if (flags
& LM_FLAG_PRIORITY
)
1520 if (flags
& GL_ASYNC
)
1522 if (flags
& GL_EXACT
)
1524 if (flags
& GL_NOCACHE
)
1526 if (test_bit(HIF_HOLDER
, &iflags
))
1528 if (test_bit(HIF_WAIT
, &iflags
))
1530 if (test_bit(HIF_FIRST
, &iflags
))
1537 * dump_holder - print information about a glock holder
1538 * @seq: the seq_file struct
1539 * @gh: the glock holder
1541 * Returns: 0 on success, -ENOBUFS when we run out of space
1544 static int dump_holder(struct seq_file
*seq
, const struct gfs2_holder
*gh
)
1546 struct task_struct
*gh_owner
= NULL
;
1547 char buffer
[KSYM_SYMBOL_LEN
];
1550 sprint_symbol(buffer
, gh
->gh_ip
);
1551 if (gh
->gh_owner_pid
)
1552 gh_owner
= pid_task(gh
->gh_owner_pid
, PIDTYPE_PID
);
1553 gfs2_print_dbg(seq
, " H: s:%s f:%s e:%d p:%ld [%s] %s\n",
1554 state2str(gh
->gh_state
),
1555 hflags2str(flags_buf
, gh
->gh_flags
, gh
->gh_iflags
),
1557 gh
->gh_owner_pid
? (long)pid_nr(gh
->gh_owner_pid
) : -1,
1558 gh_owner
? gh_owner
->comm
: "(ended)", buffer
);
1562 static const char *gflags2str(char *buf
, const unsigned long *gflags
)
1565 if (test_bit(GLF_LOCK
, gflags
))
1567 if (test_bit(GLF_DEMOTE
, gflags
))
1569 if (test_bit(GLF_PENDING_DEMOTE
, gflags
))
1571 if (test_bit(GLF_DEMOTE_IN_PROGRESS
, gflags
))
1573 if (test_bit(GLF_DIRTY
, gflags
))
1575 if (test_bit(GLF_LFLUSH
, gflags
))
1577 if (test_bit(GLF_INVALIDATE_IN_PROGRESS
, gflags
))
1579 if (test_bit(GLF_REPLY_PENDING
, gflags
))
1581 if (test_bit(GLF_INITIAL
, gflags
))
1583 if (test_bit(GLF_FROZEN
, gflags
))
1590 * __dump_glock - print information about a glock
1591 * @seq: The seq_file struct
1594 * The file format is as follows:
1595 * One line per object, capital letters are used to indicate objects
1596 * G = glock, I = Inode, R = rgrp, H = holder. Glocks are not indented,
1597 * other objects are indented by a single space and follow the glock to
1598 * which they are related. Fields are indicated by lower case letters
1599 * followed by a colon and the field value, except for strings which are in
1600 * [] so that its possible to see if they are composed of spaces for
1601 * example. The field's are n = number (id of the object), f = flags,
1602 * t = type, s = state, r = refcount, e = error, p = pid.
1604 * Returns: 0 on success, -ENOBUFS when we run out of space
1607 static int __dump_glock(struct seq_file
*seq
, const struct gfs2_glock
*gl
)
1609 const struct gfs2_glock_operations
*glops
= gl
->gl_ops
;
1610 unsigned long long dtime
;
1611 const struct gfs2_holder
*gh
;
1612 char gflags_buf
[32];
1615 dtime
= jiffies
- gl
->gl_demote_time
;
1616 dtime
*= 1000000/HZ
; /* demote time in uSec */
1617 if (!test_bit(GLF_DEMOTE
, &gl
->gl_flags
))
1619 gfs2_print_dbg(seq
, "G: s:%s n:%u/%llu f:%s t:%s d:%s/%llu a:%d r:%d\n",
1620 state2str(gl
->gl_state
),
1621 gl
->gl_name
.ln_type
,
1622 (unsigned long long)gl
->gl_name
.ln_number
,
1623 gflags2str(gflags_buf
, &gl
->gl_flags
),
1624 state2str(gl
->gl_target
),
1625 state2str(gl
->gl_demote_state
), dtime
,
1626 atomic_read(&gl
->gl_ail_count
),
1627 atomic_read(&gl
->gl_ref
));
1629 list_for_each_entry(gh
, &gl
->gl_holders
, gh_list
) {
1630 error
= dump_holder(seq
, gh
);
1634 if (gl
->gl_state
!= LM_ST_UNLOCKED
&& glops
->go_dump
)
1635 error
= glops
->go_dump(seq
, gl
);
1640 static int dump_glock(struct seq_file
*seq
, struct gfs2_glock
*gl
)
1643 spin_lock(&gl
->gl_spin
);
1644 ret
= __dump_glock(seq
, gl
);
1645 spin_unlock(&gl
->gl_spin
);
1650 * gfs2_dump_lockstate - print out the current lockstate
1651 * @sdp: the filesystem
1652 * @ub: the buffer to copy the information into
1654 * If @ub is NULL, dump the lockstate to the console.
1658 static int gfs2_dump_lockstate(struct gfs2_sbd
*sdp
)
1660 struct gfs2_glock
*gl
;
1661 struct hlist_node
*h
;
1665 for (x
= 0; x
< GFS2_GL_HASH_SIZE
; x
++) {
1667 read_lock(gl_lock_addr(x
));
1669 hlist_for_each_entry(gl
, h
, &gl_hash_table
[x
].hb_list
, gl_list
) {
1670 if (gl
->gl_sbd
!= sdp
)
1673 error
= dump_glock(NULL
, gl
);
1678 read_unlock(gl_lock_addr(x
));
1689 int __init
gfs2_glock_init(void)
1692 for(i
= 0; i
< GFS2_GL_HASH_SIZE
; i
++) {
1693 INIT_HLIST_HEAD(&gl_hash_table
[i
].hb_list
);
1695 #ifdef GL_HASH_LOCK_SZ
1696 for(i
= 0; i
< GL_HASH_LOCK_SZ
; i
++) {
1697 rwlock_init(&gl_hash_locks
[i
]);
1701 glock_workqueue
= create_workqueue("glock_workqueue");
1702 if (IS_ERR(glock_workqueue
))
1703 return PTR_ERR(glock_workqueue
);
1705 register_shrinker(&glock_shrinker
);
1710 void gfs2_glock_exit(void)
1712 unregister_shrinker(&glock_shrinker
);
1713 destroy_workqueue(glock_workqueue
);
1716 static int gfs2_glock_iter_next(struct gfs2_glock_iter
*gi
)
1718 struct gfs2_glock
*gl
;
1721 read_lock(gl_lock_addr(gi
->hash
));
1724 gi
->gl
= hlist_entry(gl
->gl_list
.next
,
1725 struct gfs2_glock
, gl_list
);
1727 gi
->gl
= hlist_entry(gl_hash_table
[gi
->hash
].hb_list
.first
,
1728 struct gfs2_glock
, gl_list
);
1731 gfs2_glock_hold(gi
->gl
);
1732 read_unlock(gl_lock_addr(gi
->hash
));
1735 while (gi
->gl
== NULL
) {
1737 if (gi
->hash
>= GFS2_GL_HASH_SIZE
)
1739 read_lock(gl_lock_addr(gi
->hash
));
1740 gi
->gl
= hlist_entry(gl_hash_table
[gi
->hash
].hb_list
.first
,
1741 struct gfs2_glock
, gl_list
);
1743 gfs2_glock_hold(gi
->gl
);
1744 read_unlock(gl_lock_addr(gi
->hash
));
1747 if (gi
->sdp
!= gi
->gl
->gl_sbd
)
1753 static void gfs2_glock_iter_free(struct gfs2_glock_iter
*gi
)
1756 gfs2_glock_put(gi
->gl
);
1760 static void *gfs2_glock_seq_start(struct seq_file
*seq
, loff_t
*pos
)
1762 struct gfs2_glock_iter
*gi
= seq
->private;
1768 if (gfs2_glock_iter_next(gi
)) {
1769 gfs2_glock_iter_free(gi
);
1777 static void *gfs2_glock_seq_next(struct seq_file
*seq
, void *iter_ptr
,
1780 struct gfs2_glock_iter
*gi
= seq
->private;
1784 if (gfs2_glock_iter_next(gi
)) {
1785 gfs2_glock_iter_free(gi
);
1792 static void gfs2_glock_seq_stop(struct seq_file
*seq
, void *iter_ptr
)
1794 struct gfs2_glock_iter
*gi
= seq
->private;
1795 gfs2_glock_iter_free(gi
);
1798 static int gfs2_glock_seq_show(struct seq_file
*seq
, void *iter_ptr
)
1800 return dump_glock(seq
, iter_ptr
);
1803 static const struct seq_operations gfs2_glock_seq_ops
= {
1804 .start
= gfs2_glock_seq_start
,
1805 .next
= gfs2_glock_seq_next
,
1806 .stop
= gfs2_glock_seq_stop
,
1807 .show
= gfs2_glock_seq_show
,
1810 static int gfs2_debugfs_open(struct inode
*inode
, struct file
*file
)
1812 int ret
= seq_open_private(file
, &gfs2_glock_seq_ops
,
1813 sizeof(struct gfs2_glock_iter
));
1815 struct seq_file
*seq
= file
->private_data
;
1816 struct gfs2_glock_iter
*gi
= seq
->private;
1817 gi
->sdp
= inode
->i_private
;
1822 static const struct file_operations gfs2_debug_fops
= {
1823 .owner
= THIS_MODULE
,
1824 .open
= gfs2_debugfs_open
,
1826 .llseek
= seq_lseek
,
1827 .release
= seq_release_private
,
1830 int gfs2_create_debugfs_file(struct gfs2_sbd
*sdp
)
1832 sdp
->debugfs_dir
= debugfs_create_dir(sdp
->sd_table_name
, gfs2_root
);
1833 if (!sdp
->debugfs_dir
)
1835 sdp
->debugfs_dentry_glocks
= debugfs_create_file("glocks",
1837 sdp
->debugfs_dir
, sdp
,
1839 if (!sdp
->debugfs_dentry_glocks
)
1845 void gfs2_delete_debugfs_file(struct gfs2_sbd
*sdp
)
1847 if (sdp
&& sdp
->debugfs_dir
) {
1848 if (sdp
->debugfs_dentry_glocks
) {
1849 debugfs_remove(sdp
->debugfs_dentry_glocks
);
1850 sdp
->debugfs_dentry_glocks
= NULL
;
1852 debugfs_remove(sdp
->debugfs_dir
);
1853 sdp
->debugfs_dir
= NULL
;
1857 int gfs2_register_debugfs(void)
1859 gfs2_root
= debugfs_create_dir("gfs2", NULL
);
1860 return gfs2_root
? 0 : -ENOMEM
;
1863 void gfs2_unregister_debugfs(void)
1865 debugfs_remove(gfs2_root
);