[S390] Add set_fs(USER_DS) to start_thread().
[linux-2.6/verdex.git] / fs / gfs2 / glock.c
blob438146904b5839727ac2c378c5df87f574cfedaa
1 /*
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.
8 */
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 <asm/uaccess.h>
24 #include "gfs2.h"
25 #include "incore.h"
26 #include "glock.h"
27 #include "glops.h"
28 #include "inode.h"
29 #include "lm.h"
30 #include "lops.h"
31 #include "meta_io.h"
32 #include "quota.h"
33 #include "super.h"
34 #include "util.h"
36 struct greedy {
37 struct gfs2_holder gr_gh;
38 struct delayed_work gr_work;
41 struct gfs2_gl_hash_bucket {
42 struct hlist_head hb_list;
45 typedef void (*glock_examiner) (struct gfs2_glock * gl);
47 static int gfs2_dump_lockstate(struct gfs2_sbd *sdp);
48 static int dump_glock(struct gfs2_glock *gl);
49 static int dump_inode(struct gfs2_inode *ip);
51 #define GFS2_GL_HASH_SHIFT 15
52 #define GFS2_GL_HASH_SIZE (1 << GFS2_GL_HASH_SHIFT)
53 #define GFS2_GL_HASH_MASK (GFS2_GL_HASH_SIZE - 1)
55 static struct gfs2_gl_hash_bucket gl_hash_table[GFS2_GL_HASH_SIZE];
58 * Despite what you might think, the numbers below are not arbitrary :-)
59 * They are taken from the ipv4 routing hash code, which is well tested
60 * and thus should be nearly optimal. Later on we might tweek the numbers
61 * but for now this should be fine.
63 * The reason for putting the locks in a separate array from the list heads
64 * is that we can have fewer locks than list heads and save memory. We use
65 * the same hash function for both, but with a different hash mask.
67 #if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK) || \
68 defined(CONFIG_PROVE_LOCKING)
70 #ifdef CONFIG_LOCKDEP
71 # define GL_HASH_LOCK_SZ 256
72 #else
73 # if NR_CPUS >= 32
74 # define GL_HASH_LOCK_SZ 4096
75 # elif NR_CPUS >= 16
76 # define GL_HASH_LOCK_SZ 2048
77 # elif NR_CPUS >= 8
78 # define GL_HASH_LOCK_SZ 1024
79 # elif NR_CPUS >= 4
80 # define GL_HASH_LOCK_SZ 512
81 # else
82 # define GL_HASH_LOCK_SZ 256
83 # endif
84 #endif
86 /* We never want more locks than chains */
87 #if GFS2_GL_HASH_SIZE < GL_HASH_LOCK_SZ
88 # undef GL_HASH_LOCK_SZ
89 # define GL_HASH_LOCK_SZ GFS2_GL_HASH_SIZE
90 #endif
92 static rwlock_t gl_hash_locks[GL_HASH_LOCK_SZ];
94 static inline rwlock_t *gl_lock_addr(unsigned int x)
96 return &gl_hash_locks[x & (GL_HASH_LOCK_SZ-1)];
98 #else /* not SMP, so no spinlocks required */
99 static inline rwlock_t *gl_lock_addr(unsigned int x)
101 return NULL;
103 #endif
106 * relaxed_state_ok - is a requested lock compatible with the current lock mode?
107 * @actual: the current state of the lock
108 * @requested: the lock state that was requested by the caller
109 * @flags: the modifier flags passed in by the caller
111 * Returns: 1 if the locks are compatible, 0 otherwise
114 static inline int relaxed_state_ok(unsigned int actual, unsigned requested,
115 int flags)
117 if (actual == requested)
118 return 1;
120 if (flags & GL_EXACT)
121 return 0;
123 if (actual == LM_ST_EXCLUSIVE && requested == LM_ST_SHARED)
124 return 1;
126 if (actual != LM_ST_UNLOCKED && (flags & LM_FLAG_ANY))
127 return 1;
129 return 0;
133 * gl_hash() - Turn glock number into hash bucket number
134 * @lock: The glock number
136 * Returns: The number of the corresponding hash bucket
139 static unsigned int gl_hash(const struct gfs2_sbd *sdp,
140 const struct lm_lockname *name)
142 unsigned int h;
144 h = jhash(&name->ln_number, sizeof(u64), 0);
145 h = jhash(&name->ln_type, sizeof(unsigned int), h);
146 h = jhash(&sdp, sizeof(struct gfs2_sbd *), h);
147 h &= GFS2_GL_HASH_MASK;
149 return h;
153 * glock_free() - Perform a few checks and then release struct gfs2_glock
154 * @gl: The glock to release
156 * Also calls lock module to release its internal structure for this glock.
160 static void glock_free(struct gfs2_glock *gl)
162 struct gfs2_sbd *sdp = gl->gl_sbd;
163 struct inode *aspace = gl->gl_aspace;
165 gfs2_lm_put_lock(sdp, gl->gl_lock);
167 if (aspace)
168 gfs2_aspace_put(aspace);
170 kmem_cache_free(gfs2_glock_cachep, gl);
174 * gfs2_glock_hold() - increment reference count on glock
175 * @gl: The glock to hold
179 void gfs2_glock_hold(struct gfs2_glock *gl)
181 atomic_inc(&gl->gl_ref);
185 * gfs2_glock_put() - Decrement reference count on glock
186 * @gl: The glock to put
190 int gfs2_glock_put(struct gfs2_glock *gl)
192 int rv = 0;
193 struct gfs2_sbd *sdp = gl->gl_sbd;
195 write_lock(gl_lock_addr(gl->gl_hash));
196 if (atomic_dec_and_test(&gl->gl_ref)) {
197 hlist_del(&gl->gl_list);
198 write_unlock(gl_lock_addr(gl->gl_hash));
199 BUG_ON(spin_is_locked(&gl->gl_spin));
200 gfs2_assert(sdp, gl->gl_state == LM_ST_UNLOCKED);
201 gfs2_assert(sdp, list_empty(&gl->gl_reclaim));
202 gfs2_assert(sdp, list_empty(&gl->gl_holders));
203 gfs2_assert(sdp, list_empty(&gl->gl_waiters1));
204 gfs2_assert(sdp, list_empty(&gl->gl_waiters2));
205 gfs2_assert(sdp, list_empty(&gl->gl_waiters3));
206 glock_free(gl);
207 rv = 1;
208 goto out;
210 write_unlock(gl_lock_addr(gl->gl_hash));
211 out:
212 return rv;
216 * queue_empty - check to see if a glock's queue is empty
217 * @gl: the glock
218 * @head: the head of the queue to check
220 * This function protects the list in the event that a process already
221 * has a holder on the list and is adding a second holder for itself.
222 * The glmutex lock is what generally prevents processes from working
223 * on the same glock at once, but the special case of adding a second
224 * holder for yourself ("recursive" locking) doesn't involve locking
225 * glmutex, making the spin lock necessary.
227 * Returns: 1 if the queue is empty
230 static inline int queue_empty(struct gfs2_glock *gl, struct list_head *head)
232 int empty;
233 spin_lock(&gl->gl_spin);
234 empty = list_empty(head);
235 spin_unlock(&gl->gl_spin);
236 return empty;
240 * search_bucket() - Find struct gfs2_glock by lock number
241 * @bucket: the bucket to search
242 * @name: The lock name
244 * Returns: NULL, or the struct gfs2_glock with the requested number
247 static struct gfs2_glock *search_bucket(unsigned int hash,
248 const struct gfs2_sbd *sdp,
249 const struct lm_lockname *name)
251 struct gfs2_glock *gl;
252 struct hlist_node *h;
254 hlist_for_each_entry(gl, h, &gl_hash_table[hash].hb_list, gl_list) {
255 if (!lm_name_equal(&gl->gl_name, name))
256 continue;
257 if (gl->gl_sbd != sdp)
258 continue;
260 atomic_inc(&gl->gl_ref);
262 return gl;
265 return NULL;
269 * gfs2_glock_find() - Find glock by lock number
270 * @sdp: The GFS2 superblock
271 * @name: The lock name
273 * Returns: NULL, or the struct gfs2_glock with the requested number
276 static struct gfs2_glock *gfs2_glock_find(const struct gfs2_sbd *sdp,
277 const struct lm_lockname *name)
279 unsigned int hash = gl_hash(sdp, name);
280 struct gfs2_glock *gl;
282 read_lock(gl_lock_addr(hash));
283 gl = search_bucket(hash, sdp, name);
284 read_unlock(gl_lock_addr(hash));
286 return gl;
290 * gfs2_glock_get() - Get a glock, or create one if one doesn't exist
291 * @sdp: The GFS2 superblock
292 * @number: the lock number
293 * @glops: The glock_operations to use
294 * @create: If 0, don't create the glock if it doesn't exist
295 * @glp: the glock is returned here
297 * This does not lock a glock, just finds/creates structures for one.
299 * Returns: errno
302 int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number,
303 const struct gfs2_glock_operations *glops, int create,
304 struct gfs2_glock **glp)
306 struct lm_lockname name = { .ln_number = number, .ln_type = glops->go_type };
307 struct gfs2_glock *gl, *tmp;
308 unsigned int hash = gl_hash(sdp, &name);
309 int error;
311 read_lock(gl_lock_addr(hash));
312 gl = search_bucket(hash, sdp, &name);
313 read_unlock(gl_lock_addr(hash));
315 if (gl || !create) {
316 *glp = gl;
317 return 0;
320 gl = kmem_cache_alloc(gfs2_glock_cachep, GFP_KERNEL);
321 if (!gl)
322 return -ENOMEM;
324 gl->gl_flags = 0;
325 gl->gl_name = name;
326 atomic_set(&gl->gl_ref, 1);
327 gl->gl_state = LM_ST_UNLOCKED;
328 gl->gl_hash = hash;
329 gl->gl_owner = NULL;
330 gl->gl_ip = 0;
331 gl->gl_ops = glops;
332 gl->gl_req_gh = NULL;
333 gl->gl_req_bh = NULL;
334 gl->gl_vn = 0;
335 gl->gl_stamp = jiffies;
336 gl->gl_object = NULL;
337 gl->gl_sbd = sdp;
338 gl->gl_aspace = NULL;
339 lops_init_le(&gl->gl_le, &gfs2_glock_lops);
341 /* If this glock protects actual on-disk data or metadata blocks,
342 create a VFS inode to manage the pages/buffers holding them. */
343 if (glops == &gfs2_inode_glops || glops == &gfs2_rgrp_glops) {
344 gl->gl_aspace = gfs2_aspace_get(sdp);
345 if (!gl->gl_aspace) {
346 error = -ENOMEM;
347 goto fail;
351 error = gfs2_lm_get_lock(sdp, &name, &gl->gl_lock);
352 if (error)
353 goto fail_aspace;
355 write_lock(gl_lock_addr(hash));
356 tmp = search_bucket(hash, sdp, &name);
357 if (tmp) {
358 write_unlock(gl_lock_addr(hash));
359 glock_free(gl);
360 gl = tmp;
361 } else {
362 hlist_add_head(&gl->gl_list, &gl_hash_table[hash].hb_list);
363 write_unlock(gl_lock_addr(hash));
366 *glp = gl;
368 return 0;
370 fail_aspace:
371 if (gl->gl_aspace)
372 gfs2_aspace_put(gl->gl_aspace);
373 fail:
374 kmem_cache_free(gfs2_glock_cachep, gl);
375 return error;
379 * gfs2_holder_init - initialize a struct gfs2_holder in the default way
380 * @gl: the glock
381 * @state: the state we're requesting
382 * @flags: the modifier flags
383 * @gh: the holder structure
387 void gfs2_holder_init(struct gfs2_glock *gl, unsigned int state, unsigned flags,
388 struct gfs2_holder *gh)
390 INIT_LIST_HEAD(&gh->gh_list);
391 gh->gh_gl = gl;
392 gh->gh_ip = (unsigned long)__builtin_return_address(0);
393 gh->gh_owner = current;
394 gh->gh_state = state;
395 gh->gh_flags = flags;
396 gh->gh_error = 0;
397 gh->gh_iflags = 0;
398 init_completion(&gh->gh_wait);
400 if (gh->gh_state == LM_ST_EXCLUSIVE)
401 gh->gh_flags |= GL_LOCAL_EXCL;
403 gfs2_glock_hold(gl);
407 * gfs2_holder_reinit - reinitialize a struct gfs2_holder so we can requeue it
408 * @state: the state we're requesting
409 * @flags: the modifier flags
410 * @gh: the holder structure
412 * Don't mess with the glock.
416 void gfs2_holder_reinit(unsigned int state, unsigned flags, struct gfs2_holder *gh)
418 gh->gh_state = state;
419 gh->gh_flags = flags;
420 if (gh->gh_state == LM_ST_EXCLUSIVE)
421 gh->gh_flags |= GL_LOCAL_EXCL;
423 gh->gh_iflags &= 1 << HIF_ALLOCED;
424 gh->gh_ip = (unsigned long)__builtin_return_address(0);
428 * gfs2_holder_uninit - uninitialize a holder structure (drop glock reference)
429 * @gh: the holder structure
433 void gfs2_holder_uninit(struct gfs2_holder *gh)
435 gfs2_glock_put(gh->gh_gl);
436 gh->gh_gl = NULL;
437 gh->gh_ip = 0;
441 * gfs2_holder_get - get a struct gfs2_holder structure
442 * @gl: the glock
443 * @state: the state we're requesting
444 * @flags: the modifier flags
445 * @gfp_flags:
447 * Figure out how big an impact this function has. Either:
448 * 1) Replace it with a cache of structures hanging off the struct gfs2_sbd
449 * 2) Leave it like it is
451 * Returns: the holder structure, NULL on ENOMEM
454 static struct gfs2_holder *gfs2_holder_get(struct gfs2_glock *gl,
455 unsigned int state,
456 int flags, gfp_t gfp_flags)
458 struct gfs2_holder *gh;
460 gh = kmalloc(sizeof(struct gfs2_holder), gfp_flags);
461 if (!gh)
462 return NULL;
464 gfs2_holder_init(gl, state, flags, gh);
465 set_bit(HIF_ALLOCED, &gh->gh_iflags);
466 gh->gh_ip = (unsigned long)__builtin_return_address(0);
467 return gh;
471 * gfs2_holder_put - get rid of a struct gfs2_holder structure
472 * @gh: the holder structure
476 static void gfs2_holder_put(struct gfs2_holder *gh)
478 gfs2_holder_uninit(gh);
479 kfree(gh);
483 * rq_mutex - process a mutex request in the queue
484 * @gh: the glock holder
486 * Returns: 1 if the queue is blocked
489 static int rq_mutex(struct gfs2_holder *gh)
491 struct gfs2_glock *gl = gh->gh_gl;
493 list_del_init(&gh->gh_list);
494 /* gh->gh_error never examined. */
495 set_bit(GLF_LOCK, &gl->gl_flags);
496 complete(&gh->gh_wait);
498 return 1;
502 * rq_promote - process a promote request in the queue
503 * @gh: the glock holder
505 * Acquire a new inter-node lock, or change a lock state to more restrictive.
507 * Returns: 1 if the queue is blocked
510 static int rq_promote(struct gfs2_holder *gh)
512 struct gfs2_glock *gl = gh->gh_gl;
513 struct gfs2_sbd *sdp = gl->gl_sbd;
514 const struct gfs2_glock_operations *glops = gl->gl_ops;
516 if (!relaxed_state_ok(gl->gl_state, gh->gh_state, gh->gh_flags)) {
517 if (list_empty(&gl->gl_holders)) {
518 gl->gl_req_gh = gh;
519 set_bit(GLF_LOCK, &gl->gl_flags);
520 spin_unlock(&gl->gl_spin);
522 if (atomic_read(&sdp->sd_reclaim_count) >
523 gfs2_tune_get(sdp, gt_reclaim_limit) &&
524 !(gh->gh_flags & LM_FLAG_PRIORITY)) {
525 gfs2_reclaim_glock(sdp);
526 gfs2_reclaim_glock(sdp);
529 glops->go_xmote_th(gl, gh->gh_state, gh->gh_flags);
530 spin_lock(&gl->gl_spin);
532 return 1;
535 if (list_empty(&gl->gl_holders)) {
536 set_bit(HIF_FIRST, &gh->gh_iflags);
537 set_bit(GLF_LOCK, &gl->gl_flags);
538 } else {
539 struct gfs2_holder *next_gh;
540 if (gh->gh_flags & GL_LOCAL_EXCL)
541 return 1;
542 next_gh = list_entry(gl->gl_holders.next, struct gfs2_holder,
543 gh_list);
544 if (next_gh->gh_flags & GL_LOCAL_EXCL)
545 return 1;
548 list_move_tail(&gh->gh_list, &gl->gl_holders);
549 gh->gh_error = 0;
550 set_bit(HIF_HOLDER, &gh->gh_iflags);
552 complete(&gh->gh_wait);
554 return 0;
558 * rq_demote - process a demote request in the queue
559 * @gh: the glock holder
561 * Returns: 1 if the queue is blocked
564 static int rq_demote(struct gfs2_holder *gh)
566 struct gfs2_glock *gl = gh->gh_gl;
567 const struct gfs2_glock_operations *glops = gl->gl_ops;
569 if (!list_empty(&gl->gl_holders))
570 return 1;
572 if (gl->gl_state == gh->gh_state || gl->gl_state == LM_ST_UNLOCKED) {
573 list_del_init(&gh->gh_list);
574 gh->gh_error = 0;
575 spin_unlock(&gl->gl_spin);
576 if (test_bit(HIF_DEALLOC, &gh->gh_iflags))
577 gfs2_holder_put(gh);
578 else
579 complete(&gh->gh_wait);
580 spin_lock(&gl->gl_spin);
581 } else {
582 gl->gl_req_gh = gh;
583 set_bit(GLF_LOCK, &gl->gl_flags);
584 spin_unlock(&gl->gl_spin);
586 if (gh->gh_state == LM_ST_UNLOCKED ||
587 gl->gl_state != LM_ST_EXCLUSIVE)
588 glops->go_drop_th(gl);
589 else
590 glops->go_xmote_th(gl, gh->gh_state, gh->gh_flags);
592 spin_lock(&gl->gl_spin);
595 return 0;
599 * rq_greedy - process a queued request to drop greedy status
600 * @gh: the glock holder
602 * Returns: 1 if the queue is blocked
605 static int rq_greedy(struct gfs2_holder *gh)
607 struct gfs2_glock *gl = gh->gh_gl;
609 list_del_init(&gh->gh_list);
610 /* gh->gh_error never examined. */
611 clear_bit(GLF_GREEDY, &gl->gl_flags);
612 spin_unlock(&gl->gl_spin);
614 gfs2_holder_uninit(gh);
615 kfree(container_of(gh, struct greedy, gr_gh));
617 spin_lock(&gl->gl_spin);
619 return 0;
623 * run_queue - process holder structures on a glock
624 * @gl: the glock
627 static void run_queue(struct gfs2_glock *gl)
629 struct gfs2_holder *gh;
630 int blocked = 1;
632 for (;;) {
633 if (test_bit(GLF_LOCK, &gl->gl_flags))
634 break;
636 if (!list_empty(&gl->gl_waiters1)) {
637 gh = list_entry(gl->gl_waiters1.next,
638 struct gfs2_holder, gh_list);
640 if (test_bit(HIF_MUTEX, &gh->gh_iflags))
641 blocked = rq_mutex(gh);
642 else
643 gfs2_assert_warn(gl->gl_sbd, 0);
645 } else if (!list_empty(&gl->gl_waiters2) &&
646 !test_bit(GLF_SKIP_WAITERS2, &gl->gl_flags)) {
647 gh = list_entry(gl->gl_waiters2.next,
648 struct gfs2_holder, gh_list);
650 if (test_bit(HIF_DEMOTE, &gh->gh_iflags))
651 blocked = rq_demote(gh);
652 else if (test_bit(HIF_GREEDY, &gh->gh_iflags))
653 blocked = rq_greedy(gh);
654 else
655 gfs2_assert_warn(gl->gl_sbd, 0);
657 } else if (!list_empty(&gl->gl_waiters3)) {
658 gh = list_entry(gl->gl_waiters3.next,
659 struct gfs2_holder, gh_list);
661 if (test_bit(HIF_PROMOTE, &gh->gh_iflags))
662 blocked = rq_promote(gh);
663 else
664 gfs2_assert_warn(gl->gl_sbd, 0);
666 } else
667 break;
669 if (blocked)
670 break;
675 * gfs2_glmutex_lock - acquire a local lock on a glock
676 * @gl: the glock
678 * Gives caller exclusive access to manipulate a glock structure.
681 static void gfs2_glmutex_lock(struct gfs2_glock *gl)
683 struct gfs2_holder gh;
685 gfs2_holder_init(gl, 0, 0, &gh);
686 set_bit(HIF_MUTEX, &gh.gh_iflags);
688 spin_lock(&gl->gl_spin);
689 if (test_and_set_bit(GLF_LOCK, &gl->gl_flags)) {
690 list_add_tail(&gh.gh_list, &gl->gl_waiters1);
691 } else {
692 gl->gl_owner = current;
693 gl->gl_ip = (unsigned long)__builtin_return_address(0);
694 complete(&gh.gh_wait);
696 spin_unlock(&gl->gl_spin);
698 wait_for_completion(&gh.gh_wait);
699 gfs2_holder_uninit(&gh);
703 * gfs2_glmutex_trylock - try to acquire a local lock on a glock
704 * @gl: the glock
706 * Returns: 1 if the glock is acquired
709 static int gfs2_glmutex_trylock(struct gfs2_glock *gl)
711 int acquired = 1;
713 spin_lock(&gl->gl_spin);
714 if (test_and_set_bit(GLF_LOCK, &gl->gl_flags)) {
715 acquired = 0;
716 } else {
717 gl->gl_owner = current;
718 gl->gl_ip = (unsigned long)__builtin_return_address(0);
720 spin_unlock(&gl->gl_spin);
722 return acquired;
726 * gfs2_glmutex_unlock - release a local lock on a glock
727 * @gl: the glock
731 static void gfs2_glmutex_unlock(struct gfs2_glock *gl)
733 spin_lock(&gl->gl_spin);
734 clear_bit(GLF_LOCK, &gl->gl_flags);
735 gl->gl_owner = NULL;
736 gl->gl_ip = 0;
737 run_queue(gl);
738 BUG_ON(!spin_is_locked(&gl->gl_spin));
739 spin_unlock(&gl->gl_spin);
743 * handle_callback - add a demote request to a lock's queue
744 * @gl: the glock
745 * @state: the state the caller wants us to change to
747 * Note: This may fail sliently if we are out of memory.
750 static void handle_callback(struct gfs2_glock *gl, unsigned int state)
752 struct gfs2_holder *gh, *new_gh = NULL;
754 restart:
755 spin_lock(&gl->gl_spin);
757 list_for_each_entry(gh, &gl->gl_waiters2, gh_list) {
758 if (test_bit(HIF_DEMOTE, &gh->gh_iflags) &&
759 gl->gl_req_gh != gh) {
760 if (gh->gh_state != state)
761 gh->gh_state = LM_ST_UNLOCKED;
762 goto out;
766 if (new_gh) {
767 list_add_tail(&new_gh->gh_list, &gl->gl_waiters2);
768 new_gh = NULL;
769 } else {
770 spin_unlock(&gl->gl_spin);
772 new_gh = gfs2_holder_get(gl, state, LM_FLAG_TRY, GFP_NOFS);
773 if (!new_gh)
774 return;
775 set_bit(HIF_DEMOTE, &new_gh->gh_iflags);
776 set_bit(HIF_DEALLOC, &new_gh->gh_iflags);
778 goto restart;
781 out:
782 spin_unlock(&gl->gl_spin);
784 if (new_gh)
785 gfs2_holder_put(new_gh);
789 * state_change - record that the glock is now in a different state
790 * @gl: the glock
791 * @new_state the new state
795 static void state_change(struct gfs2_glock *gl, unsigned int new_state)
797 int held1, held2;
799 held1 = (gl->gl_state != LM_ST_UNLOCKED);
800 held2 = (new_state != LM_ST_UNLOCKED);
802 if (held1 != held2) {
803 if (held2)
804 gfs2_glock_hold(gl);
805 else
806 gfs2_glock_put(gl);
809 gl->gl_state = new_state;
813 * xmote_bh - Called after the lock module is done acquiring a lock
814 * @gl: The glock in question
815 * @ret: the int returned from the lock module
819 static void xmote_bh(struct gfs2_glock *gl, unsigned int ret)
821 struct gfs2_sbd *sdp = gl->gl_sbd;
822 const struct gfs2_glock_operations *glops = gl->gl_ops;
823 struct gfs2_holder *gh = gl->gl_req_gh;
824 int prev_state = gl->gl_state;
825 int op_done = 1;
827 gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
828 gfs2_assert_warn(sdp, queue_empty(gl, &gl->gl_holders));
829 gfs2_assert_warn(sdp, !(ret & LM_OUT_ASYNC));
831 state_change(gl, ret & LM_OUT_ST_MASK);
833 if (prev_state != LM_ST_UNLOCKED && !(ret & LM_OUT_CACHEABLE)) {
834 if (glops->go_inval)
835 glops->go_inval(gl, DIO_METADATA);
836 } else if (gl->gl_state == LM_ST_DEFERRED) {
837 /* We might not want to do this here.
838 Look at moving to the inode glops. */
839 if (glops->go_inval)
840 glops->go_inval(gl, 0);
843 /* Deal with each possible exit condition */
845 if (!gh)
846 gl->gl_stamp = jiffies;
847 else if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags))) {
848 spin_lock(&gl->gl_spin);
849 list_del_init(&gh->gh_list);
850 gh->gh_error = -EIO;
851 spin_unlock(&gl->gl_spin);
852 } else if (test_bit(HIF_DEMOTE, &gh->gh_iflags)) {
853 spin_lock(&gl->gl_spin);
854 list_del_init(&gh->gh_list);
855 if (gl->gl_state == gh->gh_state ||
856 gl->gl_state == LM_ST_UNLOCKED) {
857 gh->gh_error = 0;
858 } else {
859 if (gfs2_assert_warn(sdp, gh->gh_flags &
860 (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) == -1)
861 fs_warn(sdp, "ret = 0x%.8X\n", ret);
862 gh->gh_error = GLR_TRYFAILED;
864 spin_unlock(&gl->gl_spin);
866 if (ret & LM_OUT_CANCELED)
867 handle_callback(gl, LM_ST_UNLOCKED);
869 } else if (ret & LM_OUT_CANCELED) {
870 spin_lock(&gl->gl_spin);
871 list_del_init(&gh->gh_list);
872 gh->gh_error = GLR_CANCELED;
873 spin_unlock(&gl->gl_spin);
875 } else if (relaxed_state_ok(gl->gl_state, gh->gh_state, gh->gh_flags)) {
876 spin_lock(&gl->gl_spin);
877 list_move_tail(&gh->gh_list, &gl->gl_holders);
878 gh->gh_error = 0;
879 set_bit(HIF_HOLDER, &gh->gh_iflags);
880 spin_unlock(&gl->gl_spin);
882 set_bit(HIF_FIRST, &gh->gh_iflags);
884 op_done = 0;
886 } else if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) {
887 spin_lock(&gl->gl_spin);
888 list_del_init(&gh->gh_list);
889 gh->gh_error = GLR_TRYFAILED;
890 spin_unlock(&gl->gl_spin);
892 } else {
893 if (gfs2_assert_withdraw(sdp, 0) == -1)
894 fs_err(sdp, "ret = 0x%.8X\n", ret);
897 if (glops->go_xmote_bh)
898 glops->go_xmote_bh(gl);
900 if (op_done) {
901 spin_lock(&gl->gl_spin);
902 gl->gl_req_gh = NULL;
903 gl->gl_req_bh = NULL;
904 clear_bit(GLF_LOCK, &gl->gl_flags);
905 run_queue(gl);
906 spin_unlock(&gl->gl_spin);
909 gfs2_glock_put(gl);
911 if (gh) {
912 if (test_bit(HIF_DEALLOC, &gh->gh_iflags))
913 gfs2_holder_put(gh);
914 else
915 complete(&gh->gh_wait);
920 * gfs2_glock_xmote_th - Call into the lock module to acquire or change a glock
921 * @gl: The glock in question
922 * @state: the requested state
923 * @flags: modifier flags to the lock call
927 void gfs2_glock_xmote_th(struct gfs2_glock *gl, unsigned int state, int flags)
929 struct gfs2_sbd *sdp = gl->gl_sbd;
930 const struct gfs2_glock_operations *glops = gl->gl_ops;
931 int lck_flags = flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB |
932 LM_FLAG_NOEXP | LM_FLAG_ANY |
933 LM_FLAG_PRIORITY);
934 unsigned int lck_ret;
936 gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
937 gfs2_assert_warn(sdp, queue_empty(gl, &gl->gl_holders));
938 gfs2_assert_warn(sdp, state != LM_ST_UNLOCKED);
939 gfs2_assert_warn(sdp, state != gl->gl_state);
941 if (gl->gl_state == LM_ST_EXCLUSIVE && glops->go_sync)
942 glops->go_sync(gl);
944 gfs2_glock_hold(gl);
945 gl->gl_req_bh = xmote_bh;
947 lck_ret = gfs2_lm_lock(sdp, gl->gl_lock, gl->gl_state, state, lck_flags);
949 if (gfs2_assert_withdraw(sdp, !(lck_ret & LM_OUT_ERROR)))
950 return;
952 if (lck_ret & LM_OUT_ASYNC)
953 gfs2_assert_warn(sdp, lck_ret == LM_OUT_ASYNC);
954 else
955 xmote_bh(gl, lck_ret);
959 * drop_bh - Called after a lock module unlock completes
960 * @gl: the glock
961 * @ret: the return status
963 * Doesn't wake up the process waiting on the struct gfs2_holder (if any)
964 * Doesn't drop the reference on the glock the top half took out
968 static void drop_bh(struct gfs2_glock *gl, unsigned int ret)
970 struct gfs2_sbd *sdp = gl->gl_sbd;
971 const struct gfs2_glock_operations *glops = gl->gl_ops;
972 struct gfs2_holder *gh = gl->gl_req_gh;
974 clear_bit(GLF_PREFETCH, &gl->gl_flags);
976 gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
977 gfs2_assert_warn(sdp, queue_empty(gl, &gl->gl_holders));
978 gfs2_assert_warn(sdp, !ret);
980 state_change(gl, LM_ST_UNLOCKED);
982 if (glops->go_inval)
983 glops->go_inval(gl, DIO_METADATA);
985 if (gh) {
986 spin_lock(&gl->gl_spin);
987 list_del_init(&gh->gh_list);
988 gh->gh_error = 0;
989 spin_unlock(&gl->gl_spin);
992 if (glops->go_drop_bh)
993 glops->go_drop_bh(gl);
995 spin_lock(&gl->gl_spin);
996 gl->gl_req_gh = NULL;
997 gl->gl_req_bh = NULL;
998 clear_bit(GLF_LOCK, &gl->gl_flags);
999 run_queue(gl);
1000 spin_unlock(&gl->gl_spin);
1002 gfs2_glock_put(gl);
1004 if (gh) {
1005 if (test_bit(HIF_DEALLOC, &gh->gh_iflags))
1006 gfs2_holder_put(gh);
1007 else
1008 complete(&gh->gh_wait);
1013 * gfs2_glock_drop_th - call into the lock module to unlock a lock
1014 * @gl: the glock
1018 void gfs2_glock_drop_th(struct gfs2_glock *gl)
1020 struct gfs2_sbd *sdp = gl->gl_sbd;
1021 const struct gfs2_glock_operations *glops = gl->gl_ops;
1022 unsigned int ret;
1024 gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
1025 gfs2_assert_warn(sdp, queue_empty(gl, &gl->gl_holders));
1026 gfs2_assert_warn(sdp, gl->gl_state != LM_ST_UNLOCKED);
1028 if (gl->gl_state == LM_ST_EXCLUSIVE && glops->go_sync)
1029 glops->go_sync(gl);
1031 gfs2_glock_hold(gl);
1032 gl->gl_req_bh = drop_bh;
1034 ret = gfs2_lm_unlock(sdp, gl->gl_lock, gl->gl_state);
1036 if (gfs2_assert_withdraw(sdp, !(ret & LM_OUT_ERROR)))
1037 return;
1039 if (!ret)
1040 drop_bh(gl, ret);
1041 else
1042 gfs2_assert_warn(sdp, ret == LM_OUT_ASYNC);
1046 * do_cancels - cancel requests for locks stuck waiting on an expire flag
1047 * @gh: the LM_FLAG_PRIORITY holder waiting to acquire the lock
1049 * Don't cancel GL_NOCANCEL requests.
1052 static void do_cancels(struct gfs2_holder *gh)
1054 struct gfs2_glock *gl = gh->gh_gl;
1056 spin_lock(&gl->gl_spin);
1058 while (gl->gl_req_gh != gh &&
1059 !test_bit(HIF_HOLDER, &gh->gh_iflags) &&
1060 !list_empty(&gh->gh_list)) {
1061 if (gl->gl_req_bh && !(gl->gl_req_gh &&
1062 (gl->gl_req_gh->gh_flags & GL_NOCANCEL))) {
1063 spin_unlock(&gl->gl_spin);
1064 gfs2_lm_cancel(gl->gl_sbd, gl->gl_lock);
1065 msleep(100);
1066 spin_lock(&gl->gl_spin);
1067 } else {
1068 spin_unlock(&gl->gl_spin);
1069 msleep(100);
1070 spin_lock(&gl->gl_spin);
1074 spin_unlock(&gl->gl_spin);
1078 * glock_wait_internal - wait on a glock acquisition
1079 * @gh: the glock holder
1081 * Returns: 0 on success
1084 static int glock_wait_internal(struct gfs2_holder *gh)
1086 struct gfs2_glock *gl = gh->gh_gl;
1087 struct gfs2_sbd *sdp = gl->gl_sbd;
1088 const struct gfs2_glock_operations *glops = gl->gl_ops;
1090 if (test_bit(HIF_ABORTED, &gh->gh_iflags))
1091 return -EIO;
1093 if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) {
1094 spin_lock(&gl->gl_spin);
1095 if (gl->gl_req_gh != gh &&
1096 !test_bit(HIF_HOLDER, &gh->gh_iflags) &&
1097 !list_empty(&gh->gh_list)) {
1098 list_del_init(&gh->gh_list);
1099 gh->gh_error = GLR_TRYFAILED;
1100 run_queue(gl);
1101 spin_unlock(&gl->gl_spin);
1102 return gh->gh_error;
1104 spin_unlock(&gl->gl_spin);
1107 if (gh->gh_flags & LM_FLAG_PRIORITY)
1108 do_cancels(gh);
1110 wait_for_completion(&gh->gh_wait);
1112 if (gh->gh_error)
1113 return gh->gh_error;
1115 gfs2_assert_withdraw(sdp, test_bit(HIF_HOLDER, &gh->gh_iflags));
1116 gfs2_assert_withdraw(sdp, relaxed_state_ok(gl->gl_state, gh->gh_state,
1117 gh->gh_flags));
1119 if (test_bit(HIF_FIRST, &gh->gh_iflags)) {
1120 gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
1122 if (glops->go_lock) {
1123 gh->gh_error = glops->go_lock(gh);
1124 if (gh->gh_error) {
1125 spin_lock(&gl->gl_spin);
1126 list_del_init(&gh->gh_list);
1127 spin_unlock(&gl->gl_spin);
1131 spin_lock(&gl->gl_spin);
1132 gl->gl_req_gh = NULL;
1133 gl->gl_req_bh = NULL;
1134 clear_bit(GLF_LOCK, &gl->gl_flags);
1135 run_queue(gl);
1136 spin_unlock(&gl->gl_spin);
1139 return gh->gh_error;
1142 static inline struct gfs2_holder *
1143 find_holder_by_owner(struct list_head *head, struct task_struct *owner)
1145 struct gfs2_holder *gh;
1147 list_for_each_entry(gh, head, gh_list) {
1148 if (gh->gh_owner == owner)
1149 return gh;
1152 return NULL;
1156 * add_to_queue - Add a holder to the wait queue (but look for recursion)
1157 * @gh: the holder structure to add
1161 static void add_to_queue(struct gfs2_holder *gh)
1163 struct gfs2_glock *gl = gh->gh_gl;
1164 struct gfs2_holder *existing;
1166 BUG_ON(!gh->gh_owner);
1168 existing = find_holder_by_owner(&gl->gl_holders, gh->gh_owner);
1169 if (existing) {
1170 print_symbol(KERN_WARNING "original: %s\n", existing->gh_ip);
1171 printk(KERN_INFO "pid : %d\n", existing->gh_owner->pid);
1172 printk(KERN_INFO "lock type : %d lock state : %d\n",
1173 existing->gh_gl->gl_name.ln_type, existing->gh_gl->gl_state);
1174 print_symbol(KERN_WARNING "new: %s\n", gh->gh_ip);
1175 printk(KERN_INFO "pid : %d\n", gh->gh_owner->pid);
1176 printk(KERN_INFO "lock type : %d lock state : %d\n",
1177 gl->gl_name.ln_type, gl->gl_state);
1178 BUG();
1181 existing = find_holder_by_owner(&gl->gl_waiters3, gh->gh_owner);
1182 if (existing) {
1183 print_symbol(KERN_WARNING "original: %s\n", existing->gh_ip);
1184 print_symbol(KERN_WARNING "new: %s\n", gh->gh_ip);
1185 BUG();
1188 if (gh->gh_flags & LM_FLAG_PRIORITY)
1189 list_add(&gh->gh_list, &gl->gl_waiters3);
1190 else
1191 list_add_tail(&gh->gh_list, &gl->gl_waiters3);
1195 * gfs2_glock_nq - enqueue a struct gfs2_holder onto a glock (acquire a glock)
1196 * @gh: the holder structure
1198 * if (gh->gh_flags & GL_ASYNC), this never returns an error
1200 * Returns: 0, GLR_TRYFAILED, or errno on failure
1203 int gfs2_glock_nq(struct gfs2_holder *gh)
1205 struct gfs2_glock *gl = gh->gh_gl;
1206 struct gfs2_sbd *sdp = gl->gl_sbd;
1207 int error = 0;
1209 restart:
1210 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags))) {
1211 set_bit(HIF_ABORTED, &gh->gh_iflags);
1212 return -EIO;
1215 set_bit(HIF_PROMOTE, &gh->gh_iflags);
1217 spin_lock(&gl->gl_spin);
1218 add_to_queue(gh);
1219 run_queue(gl);
1220 spin_unlock(&gl->gl_spin);
1222 if (!(gh->gh_flags & GL_ASYNC)) {
1223 error = glock_wait_internal(gh);
1224 if (error == GLR_CANCELED) {
1225 msleep(100);
1226 goto restart;
1230 clear_bit(GLF_PREFETCH, &gl->gl_flags);
1232 return error;
1236 * gfs2_glock_poll - poll to see if an async request has been completed
1237 * @gh: the holder
1239 * Returns: 1 if the request is ready to be gfs2_glock_wait()ed on
1242 int gfs2_glock_poll(struct gfs2_holder *gh)
1244 struct gfs2_glock *gl = gh->gh_gl;
1245 int ready = 0;
1247 spin_lock(&gl->gl_spin);
1249 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
1250 ready = 1;
1251 else if (list_empty(&gh->gh_list)) {
1252 if (gh->gh_error == GLR_CANCELED) {
1253 spin_unlock(&gl->gl_spin);
1254 msleep(100);
1255 if (gfs2_glock_nq(gh))
1256 return 1;
1257 return 0;
1258 } else
1259 ready = 1;
1262 spin_unlock(&gl->gl_spin);
1264 return ready;
1268 * gfs2_glock_wait - wait for a lock acquisition that ended in a GLR_ASYNC
1269 * @gh: the holder structure
1271 * Returns: 0, GLR_TRYFAILED, or errno on failure
1274 int gfs2_glock_wait(struct gfs2_holder *gh)
1276 int error;
1278 error = glock_wait_internal(gh);
1279 if (error == GLR_CANCELED) {
1280 msleep(100);
1281 gh->gh_flags &= ~GL_ASYNC;
1282 error = gfs2_glock_nq(gh);
1285 return error;
1289 * gfs2_glock_dq - dequeue a struct gfs2_holder from a glock (release a glock)
1290 * @gh: the glock holder
1294 void gfs2_glock_dq(struct gfs2_holder *gh)
1296 struct gfs2_glock *gl = gh->gh_gl;
1297 const struct gfs2_glock_operations *glops = gl->gl_ops;
1299 if (gh->gh_flags & GL_NOCACHE)
1300 handle_callback(gl, LM_ST_UNLOCKED);
1302 gfs2_glmutex_lock(gl);
1304 spin_lock(&gl->gl_spin);
1305 list_del_init(&gh->gh_list);
1307 if (list_empty(&gl->gl_holders)) {
1308 spin_unlock(&gl->gl_spin);
1310 if (glops->go_unlock)
1311 glops->go_unlock(gh);
1313 gl->gl_stamp = jiffies;
1315 spin_lock(&gl->gl_spin);
1318 clear_bit(GLF_LOCK, &gl->gl_flags);
1319 run_queue(gl);
1320 spin_unlock(&gl->gl_spin);
1324 * gfs2_glock_prefetch - Try to prefetch a glock
1325 * @gl: the glock
1326 * @state: the state to prefetch in
1327 * @flags: flags passed to go_xmote_th()
1331 static void gfs2_glock_prefetch(struct gfs2_glock *gl, unsigned int state,
1332 int flags)
1334 const struct gfs2_glock_operations *glops = gl->gl_ops;
1336 spin_lock(&gl->gl_spin);
1338 if (test_bit(GLF_LOCK, &gl->gl_flags) || !list_empty(&gl->gl_holders) ||
1339 !list_empty(&gl->gl_waiters1) || !list_empty(&gl->gl_waiters2) ||
1340 !list_empty(&gl->gl_waiters3) ||
1341 relaxed_state_ok(gl->gl_state, state, flags)) {
1342 spin_unlock(&gl->gl_spin);
1343 return;
1346 set_bit(GLF_PREFETCH, &gl->gl_flags);
1347 set_bit(GLF_LOCK, &gl->gl_flags);
1348 spin_unlock(&gl->gl_spin);
1350 glops->go_xmote_th(gl, state, flags);
1353 static void greedy_work(struct work_struct *work)
1355 struct greedy *gr = container_of(work, struct greedy, gr_work.work);
1356 struct gfs2_holder *gh = &gr->gr_gh;
1357 struct gfs2_glock *gl = gh->gh_gl;
1358 const struct gfs2_glock_operations *glops = gl->gl_ops;
1360 clear_bit(GLF_SKIP_WAITERS2, &gl->gl_flags);
1362 if (glops->go_greedy)
1363 glops->go_greedy(gl);
1365 spin_lock(&gl->gl_spin);
1367 if (list_empty(&gl->gl_waiters2)) {
1368 clear_bit(GLF_GREEDY, &gl->gl_flags);
1369 spin_unlock(&gl->gl_spin);
1370 gfs2_holder_uninit(gh);
1371 kfree(gr);
1372 } else {
1373 gfs2_glock_hold(gl);
1374 list_add_tail(&gh->gh_list, &gl->gl_waiters2);
1375 run_queue(gl);
1376 spin_unlock(&gl->gl_spin);
1377 gfs2_glock_put(gl);
1382 * gfs2_glock_be_greedy -
1383 * @gl:
1384 * @time:
1386 * Returns: 0 if go_greedy will be called, 1 otherwise
1389 int gfs2_glock_be_greedy(struct gfs2_glock *gl, unsigned int time)
1391 struct greedy *gr;
1392 struct gfs2_holder *gh;
1394 if (!time || gl->gl_sbd->sd_args.ar_localcaching ||
1395 test_and_set_bit(GLF_GREEDY, &gl->gl_flags))
1396 return 1;
1398 gr = kmalloc(sizeof(struct greedy), GFP_KERNEL);
1399 if (!gr) {
1400 clear_bit(GLF_GREEDY, &gl->gl_flags);
1401 return 1;
1403 gh = &gr->gr_gh;
1405 gfs2_holder_init(gl, 0, 0, gh);
1406 set_bit(HIF_GREEDY, &gh->gh_iflags);
1407 INIT_DELAYED_WORK(&gr->gr_work, greedy_work);
1409 set_bit(GLF_SKIP_WAITERS2, &gl->gl_flags);
1410 schedule_delayed_work(&gr->gr_work, time);
1412 return 0;
1416 * gfs2_glock_dq_uninit - dequeue a holder from a glock and initialize it
1417 * @gh: the holder structure
1421 void gfs2_glock_dq_uninit(struct gfs2_holder *gh)
1423 gfs2_glock_dq(gh);
1424 gfs2_holder_uninit(gh);
1428 * gfs2_glock_nq_num - acquire a glock based on lock number
1429 * @sdp: the filesystem
1430 * @number: the lock number
1431 * @glops: the glock operations for the type of glock
1432 * @state: the state to acquire the glock in
1433 * @flags: modifier flags for the aquisition
1434 * @gh: the struct gfs2_holder
1436 * Returns: errno
1439 int gfs2_glock_nq_num(struct gfs2_sbd *sdp, u64 number,
1440 const struct gfs2_glock_operations *glops,
1441 unsigned int state, int flags, struct gfs2_holder *gh)
1443 struct gfs2_glock *gl;
1444 int error;
1446 error = gfs2_glock_get(sdp, number, glops, CREATE, &gl);
1447 if (!error) {
1448 error = gfs2_glock_nq_init(gl, state, flags, gh);
1449 gfs2_glock_put(gl);
1452 return error;
1456 * glock_compare - Compare two struct gfs2_glock structures for sorting
1457 * @arg_a: the first structure
1458 * @arg_b: the second structure
1462 static int glock_compare(const void *arg_a, const void *arg_b)
1464 const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1465 const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1466 const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1467 const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
1469 if (a->ln_number > b->ln_number)
1470 return 1;
1471 if (a->ln_number < b->ln_number)
1472 return -1;
1473 if (gh_a->gh_state == LM_ST_SHARED && gh_b->gh_state == LM_ST_EXCLUSIVE)
1474 return 1;
1475 if (!(gh_a->gh_flags & GL_LOCAL_EXCL) && (gh_b->gh_flags & GL_LOCAL_EXCL))
1476 return 1;
1477 return 0;
1481 * nq_m_sync - synchonously acquire more than one glock in deadlock free order
1482 * @num_gh: the number of structures
1483 * @ghs: an array of struct gfs2_holder structures
1485 * Returns: 0 on success (all glocks acquired),
1486 * errno on failure (no glocks acquired)
1489 static int nq_m_sync(unsigned int num_gh, struct gfs2_holder *ghs,
1490 struct gfs2_holder **p)
1492 unsigned int x;
1493 int error = 0;
1495 for (x = 0; x < num_gh; x++)
1496 p[x] = &ghs[x];
1498 sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare, NULL);
1500 for (x = 0; x < num_gh; x++) {
1501 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1503 error = gfs2_glock_nq(p[x]);
1504 if (error) {
1505 while (x--)
1506 gfs2_glock_dq(p[x]);
1507 break;
1511 return error;
1515 * gfs2_glock_nq_m - acquire multiple glocks
1516 * @num_gh: the number of structures
1517 * @ghs: an array of struct gfs2_holder structures
1519 * Figure out how big an impact this function has. Either:
1520 * 1) Replace this code with code that calls gfs2_glock_prefetch()
1521 * 2) Forget async stuff and just call nq_m_sync()
1522 * 3) Leave it like it is
1524 * Returns: 0 on success (all glocks acquired),
1525 * errno on failure (no glocks acquired)
1528 int gfs2_glock_nq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1530 int *e;
1531 unsigned int x;
1532 int borked = 0, serious = 0;
1533 int error = 0;
1535 if (!num_gh)
1536 return 0;
1538 if (num_gh == 1) {
1539 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1540 return gfs2_glock_nq(ghs);
1543 e = kcalloc(num_gh, sizeof(struct gfs2_holder *), GFP_KERNEL);
1544 if (!e)
1545 return -ENOMEM;
1547 for (x = 0; x < num_gh; x++) {
1548 ghs[x].gh_flags |= LM_FLAG_TRY | GL_ASYNC;
1549 error = gfs2_glock_nq(&ghs[x]);
1550 if (error) {
1551 borked = 1;
1552 serious = error;
1553 num_gh = x;
1554 break;
1558 for (x = 0; x < num_gh; x++) {
1559 error = e[x] = glock_wait_internal(&ghs[x]);
1560 if (error) {
1561 borked = 1;
1562 if (error != GLR_TRYFAILED && error != GLR_CANCELED)
1563 serious = error;
1567 if (!borked) {
1568 kfree(e);
1569 return 0;
1572 for (x = 0; x < num_gh; x++)
1573 if (!e[x])
1574 gfs2_glock_dq(&ghs[x]);
1576 if (serious)
1577 error = serious;
1578 else {
1579 for (x = 0; x < num_gh; x++)
1580 gfs2_holder_reinit(ghs[x].gh_state, ghs[x].gh_flags,
1581 &ghs[x]);
1582 error = nq_m_sync(num_gh, ghs, (struct gfs2_holder **)e);
1585 kfree(e);
1587 return error;
1591 * gfs2_glock_dq_m - release multiple glocks
1592 * @num_gh: the number of structures
1593 * @ghs: an array of struct gfs2_holder structures
1597 void gfs2_glock_dq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1599 unsigned int x;
1601 for (x = 0; x < num_gh; x++)
1602 gfs2_glock_dq(&ghs[x]);
1606 * gfs2_glock_dq_uninit_m - release multiple glocks
1607 * @num_gh: the number of structures
1608 * @ghs: an array of struct gfs2_holder structures
1612 void gfs2_glock_dq_uninit_m(unsigned int num_gh, struct gfs2_holder *ghs)
1614 unsigned int x;
1616 for (x = 0; x < num_gh; x++)
1617 gfs2_glock_dq_uninit(&ghs[x]);
1621 * gfs2_glock_prefetch_num - prefetch a glock based on lock number
1622 * @sdp: the filesystem
1623 * @number: the lock number
1624 * @glops: the glock operations for the type of glock
1625 * @state: the state to acquire the glock in
1626 * @flags: modifier flags for the aquisition
1628 * Returns: errno
1631 void gfs2_glock_prefetch_num(struct gfs2_sbd *sdp, u64 number,
1632 const struct gfs2_glock_operations *glops,
1633 unsigned int state, int flags)
1635 struct gfs2_glock *gl;
1636 int error;
1638 if (atomic_read(&sdp->sd_reclaim_count) <
1639 gfs2_tune_get(sdp, gt_reclaim_limit)) {
1640 error = gfs2_glock_get(sdp, number, glops, CREATE, &gl);
1641 if (!error) {
1642 gfs2_glock_prefetch(gl, state, flags);
1643 gfs2_glock_put(gl);
1649 * gfs2_lvb_hold - attach a LVB from a glock
1650 * @gl: The glock in question
1654 int gfs2_lvb_hold(struct gfs2_glock *gl)
1656 int error;
1658 gfs2_glmutex_lock(gl);
1660 if (!atomic_read(&gl->gl_lvb_count)) {
1661 error = gfs2_lm_hold_lvb(gl->gl_sbd, gl->gl_lock, &gl->gl_lvb);
1662 if (error) {
1663 gfs2_glmutex_unlock(gl);
1664 return error;
1666 gfs2_glock_hold(gl);
1668 atomic_inc(&gl->gl_lvb_count);
1670 gfs2_glmutex_unlock(gl);
1672 return 0;
1676 * gfs2_lvb_unhold - detach a LVB from a glock
1677 * @gl: The glock in question
1681 void gfs2_lvb_unhold(struct gfs2_glock *gl)
1683 gfs2_glock_hold(gl);
1684 gfs2_glmutex_lock(gl);
1686 gfs2_assert(gl->gl_sbd, atomic_read(&gl->gl_lvb_count) > 0);
1687 if (atomic_dec_and_test(&gl->gl_lvb_count)) {
1688 gfs2_lm_unhold_lvb(gl->gl_sbd, gl->gl_lock, gl->gl_lvb);
1689 gl->gl_lvb = NULL;
1690 gfs2_glock_put(gl);
1693 gfs2_glmutex_unlock(gl);
1694 gfs2_glock_put(gl);
1697 static void blocking_cb(struct gfs2_sbd *sdp, struct lm_lockname *name,
1698 unsigned int state)
1700 struct gfs2_glock *gl;
1702 gl = gfs2_glock_find(sdp, name);
1703 if (!gl)
1704 return;
1706 if (gl->gl_ops->go_callback)
1707 gl->gl_ops->go_callback(gl, state);
1708 handle_callback(gl, state);
1710 spin_lock(&gl->gl_spin);
1711 run_queue(gl);
1712 spin_unlock(&gl->gl_spin);
1714 gfs2_glock_put(gl);
1718 * gfs2_glock_cb - Callback used by locking module
1719 * @sdp: Pointer to the superblock
1720 * @type: Type of callback
1721 * @data: Type dependent data pointer
1723 * Called by the locking module when it wants to tell us something.
1724 * Either we need to drop a lock, one of our ASYNC requests completed, or
1725 * a journal from another client needs to be recovered.
1728 void gfs2_glock_cb(void *cb_data, unsigned int type, void *data)
1730 struct gfs2_sbd *sdp = cb_data;
1732 switch (type) {
1733 case LM_CB_NEED_E:
1734 blocking_cb(sdp, data, LM_ST_UNLOCKED);
1735 return;
1737 case LM_CB_NEED_D:
1738 blocking_cb(sdp, data, LM_ST_DEFERRED);
1739 return;
1741 case LM_CB_NEED_S:
1742 blocking_cb(sdp, data, LM_ST_SHARED);
1743 return;
1745 case LM_CB_ASYNC: {
1746 struct lm_async_cb *async = data;
1747 struct gfs2_glock *gl;
1749 gl = gfs2_glock_find(sdp, &async->lc_name);
1750 if (gfs2_assert_warn(sdp, gl))
1751 return;
1752 if (!gfs2_assert_warn(sdp, gl->gl_req_bh))
1753 gl->gl_req_bh(gl, async->lc_ret);
1754 gfs2_glock_put(gl);
1755 return;
1758 case LM_CB_NEED_RECOVERY:
1759 gfs2_jdesc_make_dirty(sdp, *(unsigned int *)data);
1760 if (sdp->sd_recoverd_process)
1761 wake_up_process(sdp->sd_recoverd_process);
1762 return;
1764 case LM_CB_DROPLOCKS:
1765 gfs2_gl_hash_clear(sdp, NO_WAIT);
1766 gfs2_quota_scan(sdp);
1767 return;
1769 default:
1770 gfs2_assert_warn(sdp, 0);
1771 return;
1776 * demote_ok - Check to see if it's ok to unlock a glock
1777 * @gl: the glock
1779 * Returns: 1 if it's ok
1782 static int demote_ok(struct gfs2_glock *gl)
1784 struct gfs2_sbd *sdp = gl->gl_sbd;
1785 const struct gfs2_glock_operations *glops = gl->gl_ops;
1786 int demote = 1;
1788 if (test_bit(GLF_STICKY, &gl->gl_flags))
1789 demote = 0;
1790 else if (test_bit(GLF_PREFETCH, &gl->gl_flags))
1791 demote = time_after_eq(jiffies, gl->gl_stamp +
1792 gfs2_tune_get(sdp, gt_prefetch_secs) * HZ);
1793 else if (glops->go_demote_ok)
1794 demote = glops->go_demote_ok(gl);
1796 return demote;
1800 * gfs2_glock_schedule_for_reclaim - Add a glock to the reclaim list
1801 * @gl: the glock
1805 void gfs2_glock_schedule_for_reclaim(struct gfs2_glock *gl)
1807 struct gfs2_sbd *sdp = gl->gl_sbd;
1809 spin_lock(&sdp->sd_reclaim_lock);
1810 if (list_empty(&gl->gl_reclaim)) {
1811 gfs2_glock_hold(gl);
1812 list_add(&gl->gl_reclaim, &sdp->sd_reclaim_list);
1813 atomic_inc(&sdp->sd_reclaim_count);
1815 spin_unlock(&sdp->sd_reclaim_lock);
1817 wake_up(&sdp->sd_reclaim_wq);
1821 * gfs2_reclaim_glock - process the next glock on the filesystem's reclaim list
1822 * @sdp: the filesystem
1824 * Called from gfs2_glockd() glock reclaim daemon, or when promoting a
1825 * different glock and we notice that there are a lot of glocks in the
1826 * reclaim list.
1830 void gfs2_reclaim_glock(struct gfs2_sbd *sdp)
1832 struct gfs2_glock *gl;
1834 spin_lock(&sdp->sd_reclaim_lock);
1835 if (list_empty(&sdp->sd_reclaim_list)) {
1836 spin_unlock(&sdp->sd_reclaim_lock);
1837 return;
1839 gl = list_entry(sdp->sd_reclaim_list.next,
1840 struct gfs2_glock, gl_reclaim);
1841 list_del_init(&gl->gl_reclaim);
1842 spin_unlock(&sdp->sd_reclaim_lock);
1844 atomic_dec(&sdp->sd_reclaim_count);
1845 atomic_inc(&sdp->sd_reclaimed);
1847 if (gfs2_glmutex_trylock(gl)) {
1848 if (queue_empty(gl, &gl->gl_holders) &&
1849 gl->gl_state != LM_ST_UNLOCKED && demote_ok(gl))
1850 handle_callback(gl, LM_ST_UNLOCKED);
1851 gfs2_glmutex_unlock(gl);
1854 gfs2_glock_put(gl);
1858 * examine_bucket - Call a function for glock in a hash bucket
1859 * @examiner: the function
1860 * @sdp: the filesystem
1861 * @bucket: the bucket
1863 * Returns: 1 if the bucket has entries
1866 static int examine_bucket(glock_examiner examiner, struct gfs2_sbd *sdp,
1867 unsigned int hash)
1869 struct gfs2_glock *gl, *prev = NULL;
1870 int has_entries = 0;
1871 struct hlist_head *head = &gl_hash_table[hash].hb_list;
1873 read_lock(gl_lock_addr(hash));
1874 /* Can't use hlist_for_each_entry - don't want prefetch here */
1875 if (hlist_empty(head))
1876 goto out;
1877 gl = list_entry(head->first, struct gfs2_glock, gl_list);
1878 while(1) {
1879 if (gl->gl_sbd == sdp) {
1880 gfs2_glock_hold(gl);
1881 read_unlock(gl_lock_addr(hash));
1882 if (prev)
1883 gfs2_glock_put(prev);
1884 prev = gl;
1885 examiner(gl);
1886 has_entries = 1;
1887 read_lock(gl_lock_addr(hash));
1889 if (gl->gl_list.next == NULL)
1890 break;
1891 gl = list_entry(gl->gl_list.next, struct gfs2_glock, gl_list);
1893 out:
1894 read_unlock(gl_lock_addr(hash));
1895 if (prev)
1896 gfs2_glock_put(prev);
1897 return has_entries;
1901 * scan_glock - look at a glock and see if we can reclaim it
1902 * @gl: the glock to look at
1906 static void scan_glock(struct gfs2_glock *gl)
1908 if (gl->gl_ops == &gfs2_inode_glops && gl->gl_object)
1909 return;
1911 if (gfs2_glmutex_trylock(gl)) {
1912 if (queue_empty(gl, &gl->gl_holders) &&
1913 gl->gl_state != LM_ST_UNLOCKED && demote_ok(gl))
1914 goto out_schedule;
1915 gfs2_glmutex_unlock(gl);
1917 return;
1919 out_schedule:
1920 gfs2_glmutex_unlock(gl);
1921 gfs2_glock_schedule_for_reclaim(gl);
1925 * gfs2_scand_internal - Look for glocks and inodes to toss from memory
1926 * @sdp: the filesystem
1930 void gfs2_scand_internal(struct gfs2_sbd *sdp)
1932 unsigned int x;
1934 for (x = 0; x < GFS2_GL_HASH_SIZE; x++)
1935 examine_bucket(scan_glock, sdp, x);
1939 * clear_glock - look at a glock and see if we can free it from glock cache
1940 * @gl: the glock to look at
1944 static void clear_glock(struct gfs2_glock *gl)
1946 struct gfs2_sbd *sdp = gl->gl_sbd;
1947 int released;
1949 spin_lock(&sdp->sd_reclaim_lock);
1950 if (!list_empty(&gl->gl_reclaim)) {
1951 list_del_init(&gl->gl_reclaim);
1952 atomic_dec(&sdp->sd_reclaim_count);
1953 spin_unlock(&sdp->sd_reclaim_lock);
1954 released = gfs2_glock_put(gl);
1955 gfs2_assert(sdp, !released);
1956 } else {
1957 spin_unlock(&sdp->sd_reclaim_lock);
1960 if (gfs2_glmutex_trylock(gl)) {
1961 if (queue_empty(gl, &gl->gl_holders) &&
1962 gl->gl_state != LM_ST_UNLOCKED)
1963 handle_callback(gl, LM_ST_UNLOCKED);
1964 gfs2_glmutex_unlock(gl);
1969 * gfs2_gl_hash_clear - Empty out the glock hash table
1970 * @sdp: the filesystem
1971 * @wait: wait until it's all gone
1973 * Called when unmounting the filesystem, or when inter-node lock manager
1974 * requests DROPLOCKS because it is running out of capacity.
1977 void gfs2_gl_hash_clear(struct gfs2_sbd *sdp, int wait)
1979 unsigned long t;
1980 unsigned int x;
1981 int cont;
1983 t = jiffies;
1985 for (;;) {
1986 cont = 0;
1987 for (x = 0; x < GFS2_GL_HASH_SIZE; x++) {
1988 if (examine_bucket(clear_glock, sdp, x))
1989 cont = 1;
1992 if (!wait || !cont)
1993 break;
1995 if (time_after_eq(jiffies,
1996 t + gfs2_tune_get(sdp, gt_stall_secs) * HZ)) {
1997 fs_warn(sdp, "Unmount seems to be stalled. "
1998 "Dumping lock state...\n");
1999 gfs2_dump_lockstate(sdp);
2000 t = jiffies;
2003 invalidate_inodes(sdp->sd_vfs);
2004 msleep(10);
2009 * Diagnostic routines to help debug distributed deadlock
2013 * dump_holder - print information about a glock holder
2014 * @str: a string naming the type of holder
2015 * @gh: the glock holder
2017 * Returns: 0 on success, -ENOBUFS when we run out of space
2020 static int dump_holder(char *str, struct gfs2_holder *gh)
2022 unsigned int x;
2023 int error = -ENOBUFS;
2025 printk(KERN_INFO " %s\n", str);
2026 printk(KERN_INFO " owner = %ld\n",
2027 (gh->gh_owner) ? (long)gh->gh_owner->pid : -1);
2028 printk(KERN_INFO " gh_state = %u\n", gh->gh_state);
2029 printk(KERN_INFO " gh_flags =");
2030 for (x = 0; x < 32; x++)
2031 if (gh->gh_flags & (1 << x))
2032 printk(" %u", x);
2033 printk(" \n");
2034 printk(KERN_INFO " error = %d\n", gh->gh_error);
2035 printk(KERN_INFO " gh_iflags =");
2036 for (x = 0; x < 32; x++)
2037 if (test_bit(x, &gh->gh_iflags))
2038 printk(" %u", x);
2039 printk(" \n");
2040 print_symbol(KERN_INFO " initialized at: %s\n", gh->gh_ip);
2042 error = 0;
2044 return error;
2048 * dump_inode - print information about an inode
2049 * @ip: the inode
2051 * Returns: 0 on success, -ENOBUFS when we run out of space
2054 static int dump_inode(struct gfs2_inode *ip)
2056 unsigned int x;
2057 int error = -ENOBUFS;
2059 printk(KERN_INFO " Inode:\n");
2060 printk(KERN_INFO " num = %llu %llu\n",
2061 (unsigned long long)ip->i_num.no_formal_ino,
2062 (unsigned long long)ip->i_num.no_addr);
2063 printk(KERN_INFO " type = %u\n", IF2DT(ip->i_inode.i_mode));
2064 printk(KERN_INFO " i_flags =");
2065 for (x = 0; x < 32; x++)
2066 if (test_bit(x, &ip->i_flags))
2067 printk(" %u", x);
2068 printk(" \n");
2070 error = 0;
2072 return error;
2076 * dump_glock - print information about a glock
2077 * @gl: the glock
2078 * @count: where we are in the buffer
2080 * Returns: 0 on success, -ENOBUFS when we run out of space
2083 static int dump_glock(struct gfs2_glock *gl)
2085 struct gfs2_holder *gh;
2086 unsigned int x;
2087 int error = -ENOBUFS;
2089 spin_lock(&gl->gl_spin);
2091 printk(KERN_INFO "Glock 0x%p (%u, %llu)\n", gl, gl->gl_name.ln_type,
2092 (unsigned long long)gl->gl_name.ln_number);
2093 printk(KERN_INFO " gl_flags =");
2094 for (x = 0; x < 32; x++) {
2095 if (test_bit(x, &gl->gl_flags))
2096 printk(" %u", x);
2098 printk(" \n");
2099 printk(KERN_INFO " gl_ref = %d\n", atomic_read(&gl->gl_ref));
2100 printk(KERN_INFO " gl_state = %u\n", gl->gl_state);
2101 printk(KERN_INFO " gl_owner = %s\n", gl->gl_owner->comm);
2102 print_symbol(KERN_INFO " gl_ip = %s\n", gl->gl_ip);
2103 printk(KERN_INFO " req_gh = %s\n", (gl->gl_req_gh) ? "yes" : "no");
2104 printk(KERN_INFO " req_bh = %s\n", (gl->gl_req_bh) ? "yes" : "no");
2105 printk(KERN_INFO " lvb_count = %d\n", atomic_read(&gl->gl_lvb_count));
2106 printk(KERN_INFO " object = %s\n", (gl->gl_object) ? "yes" : "no");
2107 printk(KERN_INFO " le = %s\n",
2108 (list_empty(&gl->gl_le.le_list)) ? "no" : "yes");
2109 printk(KERN_INFO " reclaim = %s\n",
2110 (list_empty(&gl->gl_reclaim)) ? "no" : "yes");
2111 if (gl->gl_aspace)
2112 printk(KERN_INFO " aspace = 0x%p nrpages = %lu\n", gl->gl_aspace,
2113 gl->gl_aspace->i_mapping->nrpages);
2114 else
2115 printk(KERN_INFO " aspace = no\n");
2116 printk(KERN_INFO " ail = %d\n", atomic_read(&gl->gl_ail_count));
2117 if (gl->gl_req_gh) {
2118 error = dump_holder("Request", gl->gl_req_gh);
2119 if (error)
2120 goto out;
2122 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
2123 error = dump_holder("Holder", gh);
2124 if (error)
2125 goto out;
2127 list_for_each_entry(gh, &gl->gl_waiters1, gh_list) {
2128 error = dump_holder("Waiter1", gh);
2129 if (error)
2130 goto out;
2132 list_for_each_entry(gh, &gl->gl_waiters2, gh_list) {
2133 error = dump_holder("Waiter2", gh);
2134 if (error)
2135 goto out;
2137 list_for_each_entry(gh, &gl->gl_waiters3, gh_list) {
2138 error = dump_holder("Waiter3", gh);
2139 if (error)
2140 goto out;
2142 if (gl->gl_ops == &gfs2_inode_glops && gl->gl_object) {
2143 if (!test_bit(GLF_LOCK, &gl->gl_flags) &&
2144 list_empty(&gl->gl_holders)) {
2145 error = dump_inode(gl->gl_object);
2146 if (error)
2147 goto out;
2148 } else {
2149 error = -ENOBUFS;
2150 printk(KERN_INFO " Inode: busy\n");
2154 error = 0;
2156 out:
2157 spin_unlock(&gl->gl_spin);
2158 return error;
2162 * gfs2_dump_lockstate - print out the current lockstate
2163 * @sdp: the filesystem
2164 * @ub: the buffer to copy the information into
2166 * If @ub is NULL, dump the lockstate to the console.
2170 static int gfs2_dump_lockstate(struct gfs2_sbd *sdp)
2172 struct gfs2_glock *gl;
2173 struct hlist_node *h;
2174 unsigned int x;
2175 int error = 0;
2177 for (x = 0; x < GFS2_GL_HASH_SIZE; x++) {
2179 read_lock(gl_lock_addr(x));
2181 hlist_for_each_entry(gl, h, &gl_hash_table[x].hb_list, gl_list) {
2182 if (gl->gl_sbd != sdp)
2183 continue;
2185 error = dump_glock(gl);
2186 if (error)
2187 break;
2190 read_unlock(gl_lock_addr(x));
2192 if (error)
2193 break;
2197 return error;
2200 int __init gfs2_glock_init(void)
2202 unsigned i;
2203 for(i = 0; i < GFS2_GL_HASH_SIZE; i++) {
2204 INIT_HLIST_HEAD(&gl_hash_table[i].hb_list);
2206 #ifdef GL_HASH_LOCK_SZ
2207 for(i = 0; i < GL_HASH_LOCK_SZ; i++) {
2208 rwlock_init(&gl_hash_locks[i]);
2210 #endif
2211 return 0;