blob: 0054b7df714af76451754866e62362627a7af195 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
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>
Steven Whitehoused0dc80d2006-03-29 14:36:49 -050018#include <linux/kallsyms.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050019#include <linux/gfs2_ondisk.h>
Steven Whitehouse24264432006-09-11 21:40:30 -040020#include <linux/list.h>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020021#include <linux/lm_interface.h>
Steven Whitehousefee852e2007-01-17 15:33:23 +000022#include <linux/wait.h>
akpm@linux-foundation.org95d97b72007-03-05 23:10:39 -080023#include <linux/module.h>
Steven Whitehouse61be0842007-01-29 11:51:45 +000024#include <linux/rwsem.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000025#include <asm/uaccess.h>
Robert Peterson7c52b162007-03-16 10:26:37 +000026#include <linux/seq_file.h>
27#include <linux/debugfs.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000028
29#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050030#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000031#include "glock.h"
32#include "glops.h"
33#include "inode.h"
34#include "lm.h"
35#include "lops.h"
36#include "meta_io.h"
37#include "quota.h"
38#include "super.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050039#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000040
Steven Whitehouse37b2fa62006-09-08 13:35:56 -040041struct gfs2_gl_hash_bucket {
Steven Whitehouseb6397892006-09-12 10:10:01 -040042 struct hlist_head hb_list;
Steven Whitehouse37b2fa62006-09-08 13:35:56 -040043};
44
Robert Peterson7c52b162007-03-16 10:26:37 +000045struct glock_iter {
46 int hash; /* hash bucket index */
47 struct gfs2_sbd *sdp; /* incore superblock */
48 struct gfs2_glock *gl; /* current glock struct */
Robert Peterson7c52b162007-03-16 10:26:37 +000049 struct seq_file *seq; /* sequence file for debugfs */
50 char string[512]; /* scratch space */
51};
52
David Teiglandb3b94fa2006-01-16 16:50:04 +000053typedef void (*glock_examiner) (struct gfs2_glock * gl);
54
Adrian Bunk08bc2db2006-04-28 10:59:12 -040055static int gfs2_dump_lockstate(struct gfs2_sbd *sdp);
Robert Peterson04b933f2007-03-23 17:05:15 -050056static int dump_glock(struct glock_iter *gi, struct gfs2_glock *gl);
Steven Whitehouse3b8249f2007-03-16 09:40:31 +000057static void gfs2_glock_xmote_th(struct gfs2_glock *gl, struct gfs2_holder *gh);
Steven Whitehouseb5d32be2007-01-22 12:15:34 -050058static void gfs2_glock_drop_th(struct gfs2_glock *gl);
Steven Whitehouse61be0842007-01-29 11:51:45 +000059static DECLARE_RWSEM(gfs2_umount_flush_sem);
Robert Peterson7c52b162007-03-16 10:26:37 +000060static struct dentry *gfs2_root;
Adrian Bunk08bc2db2006-04-28 10:59:12 -040061
Steven Whitehouseb6397892006-09-12 10:10:01 -040062#define GFS2_GL_HASH_SHIFT 15
Steven Whitehouse087efdd2006-09-09 16:59:11 -040063#define GFS2_GL_HASH_SIZE (1 << GFS2_GL_HASH_SHIFT)
64#define GFS2_GL_HASH_MASK (GFS2_GL_HASH_SIZE - 1)
65
Steven Whitehouse85d1da62006-09-07 14:40:21 -040066static struct gfs2_gl_hash_bucket gl_hash_table[GFS2_GL_HASH_SIZE];
Robert Peterson04b933f2007-03-23 17:05:15 -050067static struct dentry *gfs2_root;
Steven Whitehouse087efdd2006-09-09 16:59:11 -040068
69/*
70 * Despite what you might think, the numbers below are not arbitrary :-)
71 * They are taken from the ipv4 routing hash code, which is well tested
72 * and thus should be nearly optimal. Later on we might tweek the numbers
73 * but for now this should be fine.
74 *
75 * The reason for putting the locks in a separate array from the list heads
76 * is that we can have fewer locks than list heads and save memory. We use
77 * the same hash function for both, but with a different hash mask.
78 */
79#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK) || \
80 defined(CONFIG_PROVE_LOCKING)
81
82#ifdef CONFIG_LOCKDEP
83# define GL_HASH_LOCK_SZ 256
84#else
85# if NR_CPUS >= 32
86# define GL_HASH_LOCK_SZ 4096
87# elif NR_CPUS >= 16
88# define GL_HASH_LOCK_SZ 2048
89# elif NR_CPUS >= 8
90# define GL_HASH_LOCK_SZ 1024
91# elif NR_CPUS >= 4
92# define GL_HASH_LOCK_SZ 512
93# else
94# define GL_HASH_LOCK_SZ 256
95# endif
96#endif
97
98/* We never want more locks than chains */
99#if GFS2_GL_HASH_SIZE < GL_HASH_LOCK_SZ
100# undef GL_HASH_LOCK_SZ
101# define GL_HASH_LOCK_SZ GFS2_GL_HASH_SIZE
102#endif
103
104static rwlock_t gl_hash_locks[GL_HASH_LOCK_SZ];
105
106static inline rwlock_t *gl_lock_addr(unsigned int x)
107{
Steven Whitehouse94610612006-09-09 18:59:27 -0400108 return &gl_hash_locks[x & (GL_HASH_LOCK_SZ-1)];
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400109}
110#else /* not SMP, so no spinlocks required */
Randy Dunlap0ac23062006-11-28 22:29:19 -0800111static inline rwlock_t *gl_lock_addr(unsigned int x)
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400112{
113 return NULL;
114}
115#endif
Steven Whitehouse85d1da62006-09-07 14:40:21 -0400116
David Teiglandb3b94fa2006-01-16 16:50:04 +0000117/**
118 * relaxed_state_ok - is a requested lock compatible with the current lock mode?
119 * @actual: the current state of the lock
120 * @requested: the lock state that was requested by the caller
121 * @flags: the modifier flags passed in by the caller
122 *
123 * Returns: 1 if the locks are compatible, 0 otherwise
124 */
125
126static inline int relaxed_state_ok(unsigned int actual, unsigned requested,
127 int flags)
128{
129 if (actual == requested)
130 return 1;
131
132 if (flags & GL_EXACT)
133 return 0;
134
135 if (actual == LM_ST_EXCLUSIVE && requested == LM_ST_SHARED)
136 return 1;
137
138 if (actual != LM_ST_UNLOCKED && (flags & LM_FLAG_ANY))
139 return 1;
140
141 return 0;
142}
143
144/**
145 * gl_hash() - Turn glock number into hash bucket number
146 * @lock: The glock number
147 *
148 * Returns: The number of the corresponding hash bucket
149 */
150
Steven Whitehouseb8547852006-09-07 13:12:27 -0400151static unsigned int gl_hash(const struct gfs2_sbd *sdp,
152 const struct lm_lockname *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000153{
154 unsigned int h;
155
Steven Whitehousecd915492006-09-04 12:49:07 -0400156 h = jhash(&name->ln_number, sizeof(u64), 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000157 h = jhash(&name->ln_type, sizeof(unsigned int), h);
Steven Whitehouseb8547852006-09-07 13:12:27 -0400158 h = jhash(&sdp, sizeof(struct gfs2_sbd *), h);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000159 h &= GFS2_GL_HASH_MASK;
160
161 return h;
162}
163
164/**
165 * glock_free() - Perform a few checks and then release struct gfs2_glock
166 * @gl: The glock to release
167 *
168 * Also calls lock module to release its internal structure for this glock.
169 *
170 */
171
172static void glock_free(struct gfs2_glock *gl)
173{
174 struct gfs2_sbd *sdp = gl->gl_sbd;
175 struct inode *aspace = gl->gl_aspace;
176
177 gfs2_lm_put_lock(sdp, gl->gl_lock);
178
179 if (aspace)
180 gfs2_aspace_put(aspace);
181
182 kmem_cache_free(gfs2_glock_cachep, gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000183}
184
185/**
186 * gfs2_glock_hold() - increment reference count on glock
187 * @gl: The glock to hold
188 *
189 */
190
191void gfs2_glock_hold(struct gfs2_glock *gl)
192{
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400193 atomic_inc(&gl->gl_ref);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000194}
195
196/**
197 * gfs2_glock_put() - Decrement reference count on glock
198 * @gl: The glock to put
199 *
200 */
201
202int gfs2_glock_put(struct gfs2_glock *gl)
203{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000204 int rv = 0;
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400205 struct gfs2_sbd *sdp = gl->gl_sbd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000206
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400207 write_lock(gl_lock_addr(gl->gl_hash));
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400208 if (atomic_dec_and_test(&gl->gl_ref)) {
Steven Whitehouseb6397892006-09-12 10:10:01 -0400209 hlist_del(&gl->gl_list);
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400210 write_unlock(gl_lock_addr(gl->gl_hash));
Steven Whitehouse190562b2006-04-20 16:57:23 -0400211 BUG_ON(spin_is_locked(&gl->gl_spin));
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400212 gfs2_assert(sdp, gl->gl_state == LM_ST_UNLOCKED);
213 gfs2_assert(sdp, list_empty(&gl->gl_reclaim));
214 gfs2_assert(sdp, list_empty(&gl->gl_holders));
215 gfs2_assert(sdp, list_empty(&gl->gl_waiters1));
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400216 gfs2_assert(sdp, list_empty(&gl->gl_waiters3));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000217 glock_free(gl);
218 rv = 1;
219 goto out;
220 }
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400221 write_unlock(gl_lock_addr(gl->gl_hash));
Steven Whitehousea2242db2006-08-24 17:03:05 -0400222out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000223 return rv;
224}
225
226/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000227 * search_bucket() - Find struct gfs2_glock by lock number
228 * @bucket: the bucket to search
229 * @name: The lock name
230 *
231 * Returns: NULL, or the struct gfs2_glock with the requested number
232 */
233
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400234static struct gfs2_glock *search_bucket(unsigned int hash,
Steven Whitehouse899be4d2006-08-30 12:50:28 -0400235 const struct gfs2_sbd *sdp,
Steven Whitehoused6a53722006-08-30 11:16:23 -0400236 const struct lm_lockname *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000237{
238 struct gfs2_glock *gl;
Steven Whitehouseb6397892006-09-12 10:10:01 -0400239 struct hlist_node *h;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000240
Steven Whitehouseb6397892006-09-12 10:10:01 -0400241 hlist_for_each_entry(gl, h, &gl_hash_table[hash].hb_list, gl_list) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000242 if (!lm_name_equal(&gl->gl_name, name))
243 continue;
Steven Whitehouse899be4d2006-08-30 12:50:28 -0400244 if (gl->gl_sbd != sdp)
245 continue;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000246
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400247 atomic_inc(&gl->gl_ref);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000248
249 return gl;
250 }
251
252 return NULL;
253}
254
255/**
256 * gfs2_glock_find() - Find glock by lock number
257 * @sdp: The GFS2 superblock
258 * @name: The lock name
259 *
260 * Returns: NULL, or the struct gfs2_glock with the requested number
261 */
262
Steven Whitehouse85d1da62006-09-07 14:40:21 -0400263static struct gfs2_glock *gfs2_glock_find(const struct gfs2_sbd *sdp,
Steven Whitehoused6a53722006-08-30 11:16:23 -0400264 const struct lm_lockname *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000265{
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400266 unsigned int hash = gl_hash(sdp, name);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000267 struct gfs2_glock *gl;
268
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400269 read_lock(gl_lock_addr(hash));
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400270 gl = search_bucket(hash, sdp, name);
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400271 read_unlock(gl_lock_addr(hash));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000272
273 return gl;
274}
275
276/**
277 * gfs2_glock_get() - Get a glock, or create one if one doesn't exist
278 * @sdp: The GFS2 superblock
279 * @number: the lock number
280 * @glops: The glock_operations to use
281 * @create: If 0, don't create the glock if it doesn't exist
282 * @glp: the glock is returned here
283 *
284 * This does not lock a glock, just finds/creates structures for one.
285 *
286 * Returns: errno
287 */
288
Steven Whitehousecd915492006-09-04 12:49:07 -0400289int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number,
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400290 const struct gfs2_glock_operations *glops, int create,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000291 struct gfs2_glock **glp)
292{
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400293 struct lm_lockname name = { .ln_number = number, .ln_type = glops->go_type };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000294 struct gfs2_glock *gl, *tmp;
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400295 unsigned int hash = gl_hash(sdp, &name);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000296 int error;
297
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400298 read_lock(gl_lock_addr(hash));
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400299 gl = search_bucket(hash, sdp, &name);
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400300 read_unlock(gl_lock_addr(hash));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000301
302 if (gl || !create) {
303 *glp = gl;
304 return 0;
305 }
306
307 gl = kmem_cache_alloc(gfs2_glock_cachep, GFP_KERNEL);
308 if (!gl)
309 return -ENOMEM;
310
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400311 gl->gl_flags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000312 gl->gl_name = name;
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400313 atomic_set(&gl->gl_ref, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000314 gl->gl_state = LM_ST_UNLOCKED;
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400315 gl->gl_hash = hash;
Robert Peterson04b933f2007-03-23 17:05:15 -0500316 gl->gl_owner_pid = 0;
Steven Whitehouse320dd102006-05-18 16:25:27 -0400317 gl->gl_ip = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000318 gl->gl_ops = glops;
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400319 gl->gl_req_gh = NULL;
320 gl->gl_req_bh = NULL;
321 gl->gl_vn = 0;
322 gl->gl_stamp = jiffies;
323 gl->gl_object = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000324 gl->gl_sbd = sdp;
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400325 gl->gl_aspace = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000326 lops_init_le(&gl->gl_le, &gfs2_glock_lops);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000327
328 /* If this glock protects actual on-disk data or metadata blocks,
329 create a VFS inode to manage the pages/buffers holding them. */
Steven Whitehouse50299962006-09-04 09:49:55 -0400330 if (glops == &gfs2_inode_glops || glops == &gfs2_rgrp_glops) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000331 gl->gl_aspace = gfs2_aspace_get(sdp);
332 if (!gl->gl_aspace) {
333 error = -ENOMEM;
334 goto fail;
335 }
336 }
337
338 error = gfs2_lm_get_lock(sdp, &name, &gl->gl_lock);
339 if (error)
340 goto fail_aspace;
341
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400342 write_lock(gl_lock_addr(hash));
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400343 tmp = search_bucket(hash, sdp, &name);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000344 if (tmp) {
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400345 write_unlock(gl_lock_addr(hash));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000346 glock_free(gl);
347 gl = tmp;
348 } else {
Steven Whitehouseb6397892006-09-12 10:10:01 -0400349 hlist_add_head(&gl->gl_list, &gl_hash_table[hash].hb_list);
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400350 write_unlock(gl_lock_addr(hash));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000351 }
352
353 *glp = gl;
354
355 return 0;
356
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400357fail_aspace:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000358 if (gl->gl_aspace)
359 gfs2_aspace_put(gl->gl_aspace);
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400360fail:
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400361 kmem_cache_free(gfs2_glock_cachep, gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000362 return error;
363}
364
365/**
366 * gfs2_holder_init - initialize a struct gfs2_holder in the default way
367 * @gl: the glock
368 * @state: the state we're requesting
369 * @flags: the modifier flags
370 * @gh: the holder structure
371 *
372 */
373
Steven Whitehouse190562b2006-04-20 16:57:23 -0400374void gfs2_holder_init(struct gfs2_glock *gl, unsigned int state, unsigned flags,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000375 struct gfs2_holder *gh)
376{
377 INIT_LIST_HEAD(&gh->gh_list);
378 gh->gh_gl = gl;
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500379 gh->gh_ip = (unsigned long)__builtin_return_address(0);
Robert Peterson04b933f2007-03-23 17:05:15 -0500380 gh->gh_owner_pid = current->pid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000381 gh->gh_state = state;
382 gh->gh_flags = flags;
383 gh->gh_error = 0;
384 gh->gh_iflags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000385 gfs2_glock_hold(gl);
386}
387
388/**
389 * gfs2_holder_reinit - reinitialize a struct gfs2_holder so we can requeue it
390 * @state: the state we're requesting
391 * @flags: the modifier flags
392 * @gh: the holder structure
393 *
394 * Don't mess with the glock.
395 *
396 */
397
Steven Whitehouse190562b2006-04-20 16:57:23 -0400398void gfs2_holder_reinit(unsigned int state, unsigned flags, struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000399{
400 gh->gh_state = state;
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400401 gh->gh_flags = flags;
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000402 gh->gh_iflags = 0;
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500403 gh->gh_ip = (unsigned long)__builtin_return_address(0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000404}
405
406/**
407 * gfs2_holder_uninit - uninitialize a holder structure (drop glock reference)
408 * @gh: the holder structure
409 *
410 */
411
412void gfs2_holder_uninit(struct gfs2_holder *gh)
413{
414 gfs2_glock_put(gh->gh_gl);
415 gh->gh_gl = NULL;
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500416 gh->gh_ip = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000417}
418
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000419static void gfs2_holder_wake(struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000420{
Steven Whitehousefee852e2007-01-17 15:33:23 +0000421 clear_bit(HIF_WAIT, &gh->gh_iflags);
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100422 smp_mb__after_clear_bit();
Steven Whitehousefee852e2007-01-17 15:33:23 +0000423 wake_up_bit(&gh->gh_iflags, HIF_WAIT);
424}
425
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100426static int just_schedule(void *word)
Steven Whitehousefee852e2007-01-17 15:33:23 +0000427{
428 schedule();
429 return 0;
430}
431
432static void wait_on_holder(struct gfs2_holder *gh)
433{
434 might_sleep();
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100435 wait_on_bit(&gh->gh_iflags, HIF_WAIT, just_schedule, TASK_UNINTERRUPTIBLE);
436}
437
438static void gfs2_demote_wake(struct gfs2_glock *gl)
439{
440 clear_bit(GLF_DEMOTE, &gl->gl_flags);
441 smp_mb__after_clear_bit();
442 wake_up_bit(&gl->gl_flags, GLF_DEMOTE);
443}
444
445static void wait_on_demote(struct gfs2_glock *gl)
446{
447 might_sleep();
448 wait_on_bit(&gl->gl_flags, GLF_DEMOTE, just_schedule, TASK_UNINTERRUPTIBLE);
Steven Whitehousefee852e2007-01-17 15:33:23 +0000449}
450
David Teiglandb3b94fa2006-01-16 16:50:04 +0000451/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000452 * rq_mutex - process a mutex request in the queue
453 * @gh: the glock holder
454 *
455 * Returns: 1 if the queue is blocked
456 */
457
458static int rq_mutex(struct gfs2_holder *gh)
459{
460 struct gfs2_glock *gl = gh->gh_gl;
461
462 list_del_init(&gh->gh_list);
463 /* gh->gh_error never examined. */
464 set_bit(GLF_LOCK, &gl->gl_flags);
Steven Whitehoused043e192007-01-23 16:56:36 -0500465 clear_bit(HIF_WAIT, &gh->gh_iflags);
Steven Whitehousefee852e2007-01-17 15:33:23 +0000466 smp_mb();
467 wake_up_bit(&gh->gh_iflags, HIF_WAIT);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000468
469 return 1;
470}
471
472/**
473 * rq_promote - process a promote request in the queue
474 * @gh: the glock holder
475 *
476 * Acquire a new inter-node lock, or change a lock state to more restrictive.
477 *
478 * Returns: 1 if the queue is blocked
479 */
480
481static int rq_promote(struct gfs2_holder *gh)
482{
483 struct gfs2_glock *gl = gh->gh_gl;
484 struct gfs2_sbd *sdp = gl->gl_sbd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000485
486 if (!relaxed_state_ok(gl->gl_state, gh->gh_state, gh->gh_flags)) {
487 if (list_empty(&gl->gl_holders)) {
488 gl->gl_req_gh = gh;
489 set_bit(GLF_LOCK, &gl->gl_flags);
490 spin_unlock(&gl->gl_spin);
491
492 if (atomic_read(&sdp->sd_reclaim_count) >
493 gfs2_tune_get(sdp, gt_reclaim_limit) &&
494 !(gh->gh_flags & LM_FLAG_PRIORITY)) {
495 gfs2_reclaim_glock(sdp);
496 gfs2_reclaim_glock(sdp);
497 }
498
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000499 gfs2_glock_xmote_th(gh->gh_gl, gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000500 spin_lock(&gl->gl_spin);
501 }
502 return 1;
503 }
504
505 if (list_empty(&gl->gl_holders)) {
506 set_bit(HIF_FIRST, &gh->gh_iflags);
507 set_bit(GLF_LOCK, &gl->gl_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000508 } else {
509 struct gfs2_holder *next_gh;
Steven Whitehouse1c0f4872007-01-22 12:10:39 -0500510 if (gh->gh_state == LM_ST_EXCLUSIVE)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000511 return 1;
512 next_gh = list_entry(gl->gl_holders.next, struct gfs2_holder,
513 gh_list);
Steven Whitehouse1c0f4872007-01-22 12:10:39 -0500514 if (next_gh->gh_state == LM_ST_EXCLUSIVE)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000515 return 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000516 }
517
518 list_move_tail(&gh->gh_list, &gl->gl_holders);
519 gh->gh_error = 0;
520 set_bit(HIF_HOLDER, &gh->gh_iflags);
521
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000522 gfs2_holder_wake(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000523
524 return 0;
525}
526
527/**
528 * rq_demote - process a demote request in the queue
529 * @gh: the glock holder
530 *
531 * Returns: 1 if the queue is blocked
532 */
533
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000534static int rq_demote(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000535{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000536 if (!list_empty(&gl->gl_holders))
537 return 1;
538
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000539 if (gl->gl_state == gl->gl_demote_state ||
540 gl->gl_state == LM_ST_UNLOCKED) {
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100541 gfs2_demote_wake(gl);
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000542 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000543 }
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000544 set_bit(GLF_LOCK, &gl->gl_flags);
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000545 if (gl->gl_demote_state == LM_ST_UNLOCKED ||
Steven Whitehouse87124e52007-07-23 09:54:36 +0100546 gl->gl_state != LM_ST_EXCLUSIVE) {
547 spin_unlock(&gl->gl_spin);
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000548 gfs2_glock_drop_th(gl);
Steven Whitehouse87124e52007-07-23 09:54:36 +0100549 } else {
550 spin_unlock(&gl->gl_spin);
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000551 gfs2_glock_xmote_th(gl, NULL);
Steven Whitehouse87124e52007-07-23 09:54:36 +0100552 }
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000553 spin_lock(&gl->gl_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000554
555 return 0;
556}
557
558/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000559 * run_queue - process holder structures on a glock
560 * @gl: the glock
561 *
562 */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000563static void run_queue(struct gfs2_glock *gl)
564{
565 struct gfs2_holder *gh;
566 int blocked = 1;
567
568 for (;;) {
569 if (test_bit(GLF_LOCK, &gl->gl_flags))
570 break;
571
572 if (!list_empty(&gl->gl_waiters1)) {
573 gh = list_entry(gl->gl_waiters1.next,
574 struct gfs2_holder, gh_list);
575
576 if (test_bit(HIF_MUTEX, &gh->gh_iflags))
577 blocked = rq_mutex(gh);
578 else
579 gfs2_assert_warn(gl->gl_sbd, 0);
580
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000581 } else if (test_bit(GLF_DEMOTE, &gl->gl_flags)) {
582 blocked = rq_demote(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000583 } else if (!list_empty(&gl->gl_waiters3)) {
584 gh = list_entry(gl->gl_waiters3.next,
585 struct gfs2_holder, gh_list);
586
587 if (test_bit(HIF_PROMOTE, &gh->gh_iflags))
588 blocked = rq_promote(gh);
589 else
590 gfs2_assert_warn(gl->gl_sbd, 0);
591
592 } else
593 break;
594
595 if (blocked)
596 break;
597 }
598}
599
600/**
601 * gfs2_glmutex_lock - acquire a local lock on a glock
602 * @gl: the glock
603 *
604 * Gives caller exclusive access to manipulate a glock structure.
605 */
606
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400607static void gfs2_glmutex_lock(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000608{
609 struct gfs2_holder gh;
610
611 gfs2_holder_init(gl, 0, 0, &gh);
612 set_bit(HIF_MUTEX, &gh.gh_iflags);
Steven Whitehousefee852e2007-01-17 15:33:23 +0000613 if (test_and_set_bit(HIF_WAIT, &gh.gh_iflags))
614 BUG();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000615
616 spin_lock(&gl->gl_spin);
Steven Whitehouse85d1da62006-09-07 14:40:21 -0400617 if (test_and_set_bit(GLF_LOCK, &gl->gl_flags)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000618 list_add_tail(&gh.gh_list, &gl->gl_waiters1);
Steven Whitehouse85d1da62006-09-07 14:40:21 -0400619 } else {
Robert Peterson04b933f2007-03-23 17:05:15 -0500620 gl->gl_owner_pid = current->pid;
Steven Whitehouse320dd102006-05-18 16:25:27 -0400621 gl->gl_ip = (unsigned long)__builtin_return_address(0);
Steven Whitehousefee852e2007-01-17 15:33:23 +0000622 clear_bit(HIF_WAIT, &gh.gh_iflags);
623 smp_mb();
624 wake_up_bit(&gh.gh_iflags, HIF_WAIT);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400625 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000626 spin_unlock(&gl->gl_spin);
627
Steven Whitehousefee852e2007-01-17 15:33:23 +0000628 wait_on_holder(&gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000629 gfs2_holder_uninit(&gh);
630}
631
632/**
633 * gfs2_glmutex_trylock - try to acquire a local lock on a glock
634 * @gl: the glock
635 *
636 * Returns: 1 if the glock is acquired
637 */
638
Adrian Bunk08bc2db2006-04-28 10:59:12 -0400639static int gfs2_glmutex_trylock(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000640{
641 int acquired = 1;
642
643 spin_lock(&gl->gl_spin);
Steven Whitehouse85d1da62006-09-07 14:40:21 -0400644 if (test_and_set_bit(GLF_LOCK, &gl->gl_flags)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000645 acquired = 0;
Steven Whitehouse85d1da62006-09-07 14:40:21 -0400646 } else {
Robert Peterson04b933f2007-03-23 17:05:15 -0500647 gl->gl_owner_pid = current->pid;
Steven Whitehouse320dd102006-05-18 16:25:27 -0400648 gl->gl_ip = (unsigned long)__builtin_return_address(0);
649 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000650 spin_unlock(&gl->gl_spin);
651
652 return acquired;
653}
654
655/**
656 * gfs2_glmutex_unlock - release a local lock on a glock
657 * @gl: the glock
658 *
659 */
660
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400661static void gfs2_glmutex_unlock(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000662{
663 spin_lock(&gl->gl_spin);
664 clear_bit(GLF_LOCK, &gl->gl_flags);
Robert Peterson04b933f2007-03-23 17:05:15 -0500665 gl->gl_owner_pid = 0;
Steven Whitehouse320dd102006-05-18 16:25:27 -0400666 gl->gl_ip = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000667 run_queue(gl);
Steven Whitehouse190562b2006-04-20 16:57:23 -0400668 BUG_ON(!spin_is_locked(&gl->gl_spin));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000669 spin_unlock(&gl->gl_spin);
670}
671
672/**
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000673 * handle_callback - process a demote request
David Teiglandb3b94fa2006-01-16 16:50:04 +0000674 * @gl: the glock
675 * @state: the state the caller wants us to change to
676 *
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000677 * There are only two requests that we are going to see in actual
678 * practise: LM_ST_SHARED and LM_ST_UNLOCKED
David Teiglandb3b94fa2006-01-16 16:50:04 +0000679 */
680
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100681static void handle_callback(struct gfs2_glock *gl, unsigned int state, int remote)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000682{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000683 spin_lock(&gl->gl_spin);
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000684 if (test_and_set_bit(GLF_DEMOTE, &gl->gl_flags) == 0) {
685 gl->gl_demote_state = state;
686 gl->gl_demote_time = jiffies;
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100687 if (remote && gl->gl_ops->go_type == LM_TYPE_IOPEN &&
688 gl->gl_object) {
689 struct inode *inode = igrab(gl->gl_object);
690 spin_unlock(&gl->gl_spin);
691 if (inode) {
692 d_prune_aliases(inode);
693 iput(inode);
694 }
695 return;
696 }
Josef Whiter26caee52007-07-23 10:02:40 +0100697 } else if (gl->gl_demote_state != LM_ST_UNLOCKED &&
698 gl->gl_demote_state != state) {
699 gl->gl_demote_state = LM_ST_UNLOCKED;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000700 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000701 spin_unlock(&gl->gl_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000702}
703
704/**
705 * state_change - record that the glock is now in a different state
706 * @gl: the glock
707 * @new_state the new state
708 *
709 */
710
711static void state_change(struct gfs2_glock *gl, unsigned int new_state)
712{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000713 int held1, held2;
714
715 held1 = (gl->gl_state != LM_ST_UNLOCKED);
716 held2 = (new_state != LM_ST_UNLOCKED);
717
718 if (held1 != held2) {
David Teigland6a6b3d02006-02-23 10:11:47 +0000719 if (held2)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000720 gfs2_glock_hold(gl);
David Teigland6a6b3d02006-02-23 10:11:47 +0000721 else
David Teiglandb3b94fa2006-01-16 16:50:04 +0000722 gfs2_glock_put(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000723 }
724
725 gl->gl_state = new_state;
726}
727
728/**
729 * xmote_bh - Called after the lock module is done acquiring a lock
730 * @gl: The glock in question
731 * @ret: the int returned from the lock module
732 *
733 */
734
735static void xmote_bh(struct gfs2_glock *gl, unsigned int ret)
736{
737 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400738 const struct gfs2_glock_operations *glops = gl->gl_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000739 struct gfs2_holder *gh = gl->gl_req_gh;
740 int prev_state = gl->gl_state;
741 int op_done = 1;
742
743 gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
Steven Whitehouse12132932007-01-22 13:09:04 -0500744 gfs2_assert_warn(sdp, list_empty(&gl->gl_holders));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000745 gfs2_assert_warn(sdp, !(ret & LM_OUT_ASYNC));
746
747 state_change(gl, ret & LM_OUT_ST_MASK);
748
749 if (prev_state != LM_ST_UNLOCKED && !(ret & LM_OUT_CACHEABLE)) {
750 if (glops->go_inval)
Steven Whitehouse1a14d3a2006-11-20 10:37:45 -0500751 glops->go_inval(gl, DIO_METADATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000752 } else if (gl->gl_state == LM_ST_DEFERRED) {
753 /* We might not want to do this here.
754 Look at moving to the inode glops. */
755 if (glops->go_inval)
Steven Whitehouse1a14d3a2006-11-20 10:37:45 -0500756 glops->go_inval(gl, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000757 }
758
759 /* Deal with each possible exit condition */
760
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000761 if (!gh) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000762 gl->gl_stamp = jiffies;
Steven Whitehouse87124e52007-07-23 09:54:36 +0100763 if (ret & LM_OUT_CANCELED) {
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000764 op_done = 0;
Steven Whitehouse87124e52007-07-23 09:54:36 +0100765 } else {
766 spin_lock(&gl->gl_spin);
767 if (gl->gl_state != gl->gl_demote_state) {
768 gl->gl_req_bh = NULL;
769 spin_unlock(&gl->gl_spin);
770 gfs2_glock_drop_th(gl);
771 gfs2_glock_put(gl);
772 return;
773 }
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100774 gfs2_demote_wake(gl);
Steven Whitehouse87124e52007-07-23 09:54:36 +0100775 spin_unlock(&gl->gl_spin);
776 }
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000777 } else {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000778 spin_lock(&gl->gl_spin);
779 list_del_init(&gh->gh_list);
780 gh->gh_error = -EIO;
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000781 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
782 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000783 gh->gh_error = GLR_CANCELED;
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000784 if (ret & LM_OUT_CANCELED)
785 goto out;
786 if (relaxed_state_ok(gl->gl_state, gh->gh_state, gh->gh_flags)) {
787 list_add_tail(&gh->gh_list, &gl->gl_holders);
788 gh->gh_error = 0;
789 set_bit(HIF_HOLDER, &gh->gh_iflags);
790 set_bit(HIF_FIRST, &gh->gh_iflags);
791 op_done = 0;
792 goto out;
793 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000794 gh->gh_error = GLR_TRYFAILED;
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000795 if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))
796 goto out;
797 gh->gh_error = -EINVAL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000798 if (gfs2_assert_withdraw(sdp, 0) == -1)
799 fs_err(sdp, "ret = 0x%.8X\n", ret);
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000800out:
801 spin_unlock(&gl->gl_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000802 }
803
804 if (glops->go_xmote_bh)
805 glops->go_xmote_bh(gl);
806
807 if (op_done) {
808 spin_lock(&gl->gl_spin);
809 gl->gl_req_gh = NULL;
810 gl->gl_req_bh = NULL;
811 clear_bit(GLF_LOCK, &gl->gl_flags);
812 run_queue(gl);
813 spin_unlock(&gl->gl_spin);
814 }
815
816 gfs2_glock_put(gl);
817
Steven Whitehousefee852e2007-01-17 15:33:23 +0000818 if (gh)
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000819 gfs2_holder_wake(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000820}
821
822/**
823 * gfs2_glock_xmote_th - Call into the lock module to acquire or change a glock
824 * @gl: The glock in question
825 * @state: the requested state
826 * @flags: modifier flags to the lock call
827 *
828 */
829
Steven Whitehouse87124e52007-07-23 09:54:36 +0100830static void gfs2_glock_xmote_th(struct gfs2_glock *gl, struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000831{
832 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000833 int flags = gh ? gh->gh_flags : 0;
834 unsigned state = gh ? gh->gh_state : gl->gl_demote_state;
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400835 const struct gfs2_glock_operations *glops = gl->gl_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000836 int lck_flags = flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB |
837 LM_FLAG_NOEXP | LM_FLAG_ANY |
838 LM_FLAG_PRIORITY);
839 unsigned int lck_ret;
840
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500841 if (glops->go_xmote_th)
842 glops->go_xmote_th(gl);
843
David Teiglandb3b94fa2006-01-16 16:50:04 +0000844 gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
Steven Whitehouse12132932007-01-22 13:09:04 -0500845 gfs2_assert_warn(sdp, list_empty(&gl->gl_holders));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000846 gfs2_assert_warn(sdp, state != LM_ST_UNLOCKED);
847 gfs2_assert_warn(sdp, state != gl->gl_state);
848
David Teiglandb3b94fa2006-01-16 16:50:04 +0000849 gfs2_glock_hold(gl);
850 gl->gl_req_bh = xmote_bh;
851
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400852 lck_ret = gfs2_lm_lock(sdp, gl->gl_lock, gl->gl_state, state, lck_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000853
854 if (gfs2_assert_withdraw(sdp, !(lck_ret & LM_OUT_ERROR)))
855 return;
856
857 if (lck_ret & LM_OUT_ASYNC)
858 gfs2_assert_warn(sdp, lck_ret == LM_OUT_ASYNC);
859 else
860 xmote_bh(gl, lck_ret);
861}
862
863/**
864 * drop_bh - Called after a lock module unlock completes
865 * @gl: the glock
866 * @ret: the return status
867 *
868 * Doesn't wake up the process waiting on the struct gfs2_holder (if any)
869 * Doesn't drop the reference on the glock the top half took out
870 *
871 */
872
873static void drop_bh(struct gfs2_glock *gl, unsigned int ret)
874{
875 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400876 const struct gfs2_glock_operations *glops = gl->gl_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000877 struct gfs2_holder *gh = gl->gl_req_gh;
878
David Teiglandb3b94fa2006-01-16 16:50:04 +0000879 gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
Steven Whitehouse12132932007-01-22 13:09:04 -0500880 gfs2_assert_warn(sdp, list_empty(&gl->gl_holders));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000881 gfs2_assert_warn(sdp, !ret);
882
883 state_change(gl, LM_ST_UNLOCKED);
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100884 gfs2_demote_wake(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000885
886 if (glops->go_inval)
Steven Whitehouse1a14d3a2006-11-20 10:37:45 -0500887 glops->go_inval(gl, DIO_METADATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000888
889 if (gh) {
890 spin_lock(&gl->gl_spin);
891 list_del_init(&gh->gh_list);
892 gh->gh_error = 0;
893 spin_unlock(&gl->gl_spin);
894 }
895
David Teiglandb3b94fa2006-01-16 16:50:04 +0000896 spin_lock(&gl->gl_spin);
897 gl->gl_req_gh = NULL;
898 gl->gl_req_bh = NULL;
899 clear_bit(GLF_LOCK, &gl->gl_flags);
900 run_queue(gl);
901 spin_unlock(&gl->gl_spin);
902
903 gfs2_glock_put(gl);
904
Steven Whitehousefee852e2007-01-17 15:33:23 +0000905 if (gh)
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000906 gfs2_holder_wake(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000907}
908
909/**
910 * gfs2_glock_drop_th - call into the lock module to unlock a lock
911 * @gl: the glock
912 *
913 */
914
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500915static void gfs2_glock_drop_th(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000916{
917 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400918 const struct gfs2_glock_operations *glops = gl->gl_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000919 unsigned int ret;
920
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500921 if (glops->go_drop_th)
922 glops->go_drop_th(gl);
923
David Teiglandb3b94fa2006-01-16 16:50:04 +0000924 gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
Steven Whitehouse12132932007-01-22 13:09:04 -0500925 gfs2_assert_warn(sdp, list_empty(&gl->gl_holders));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000926 gfs2_assert_warn(sdp, gl->gl_state != LM_ST_UNLOCKED);
927
David Teiglandb3b94fa2006-01-16 16:50:04 +0000928 gfs2_glock_hold(gl);
929 gl->gl_req_bh = drop_bh;
930
David Teiglandb3b94fa2006-01-16 16:50:04 +0000931 ret = gfs2_lm_unlock(sdp, gl->gl_lock, gl->gl_state);
932
933 if (gfs2_assert_withdraw(sdp, !(ret & LM_OUT_ERROR)))
934 return;
935
936 if (!ret)
937 drop_bh(gl, ret);
938 else
939 gfs2_assert_warn(sdp, ret == LM_OUT_ASYNC);
940}
941
942/**
943 * do_cancels - cancel requests for locks stuck waiting on an expire flag
944 * @gh: the LM_FLAG_PRIORITY holder waiting to acquire the lock
945 *
946 * Don't cancel GL_NOCANCEL requests.
947 */
948
949static void do_cancels(struct gfs2_holder *gh)
950{
951 struct gfs2_glock *gl = gh->gh_gl;
952
953 spin_lock(&gl->gl_spin);
954
955 while (gl->gl_req_gh != gh &&
956 !test_bit(HIF_HOLDER, &gh->gh_iflags) &&
957 !list_empty(&gh->gh_list)) {
Steven Whitehouse50299962006-09-04 09:49:55 -0400958 if (gl->gl_req_bh && !(gl->gl_req_gh &&
959 (gl->gl_req_gh->gh_flags & GL_NOCANCEL))) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000960 spin_unlock(&gl->gl_spin);
961 gfs2_lm_cancel(gl->gl_sbd, gl->gl_lock);
962 msleep(100);
963 spin_lock(&gl->gl_spin);
964 } else {
965 spin_unlock(&gl->gl_spin);
966 msleep(100);
967 spin_lock(&gl->gl_spin);
968 }
969 }
970
971 spin_unlock(&gl->gl_spin);
972}
973
974/**
975 * glock_wait_internal - wait on a glock acquisition
976 * @gh: the glock holder
977 *
978 * Returns: 0 on success
979 */
980
981static int glock_wait_internal(struct gfs2_holder *gh)
982{
983 struct gfs2_glock *gl = gh->gh_gl;
984 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400985 const struct gfs2_glock_operations *glops = gl->gl_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000986
987 if (test_bit(HIF_ABORTED, &gh->gh_iflags))
988 return -EIO;
989
990 if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) {
991 spin_lock(&gl->gl_spin);
992 if (gl->gl_req_gh != gh &&
993 !test_bit(HIF_HOLDER, &gh->gh_iflags) &&
994 !list_empty(&gh->gh_list)) {
995 list_del_init(&gh->gh_list);
996 gh->gh_error = GLR_TRYFAILED;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000997 run_queue(gl);
998 spin_unlock(&gl->gl_spin);
999 return gh->gh_error;
1000 }
1001 spin_unlock(&gl->gl_spin);
1002 }
1003
1004 if (gh->gh_flags & LM_FLAG_PRIORITY)
1005 do_cancels(gh);
1006
Steven Whitehousefee852e2007-01-17 15:33:23 +00001007 wait_on_holder(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001008 if (gh->gh_error)
1009 return gh->gh_error;
1010
1011 gfs2_assert_withdraw(sdp, test_bit(HIF_HOLDER, &gh->gh_iflags));
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001012 gfs2_assert_withdraw(sdp, relaxed_state_ok(gl->gl_state, gh->gh_state,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001013 gh->gh_flags));
1014
1015 if (test_bit(HIF_FIRST, &gh->gh_iflags)) {
1016 gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
1017
1018 if (glops->go_lock) {
1019 gh->gh_error = glops->go_lock(gh);
1020 if (gh->gh_error) {
1021 spin_lock(&gl->gl_spin);
1022 list_del_init(&gh->gh_list);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001023 spin_unlock(&gl->gl_spin);
1024 }
1025 }
1026
1027 spin_lock(&gl->gl_spin);
1028 gl->gl_req_gh = NULL;
1029 gl->gl_req_bh = NULL;
1030 clear_bit(GLF_LOCK, &gl->gl_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001031 run_queue(gl);
1032 spin_unlock(&gl->gl_spin);
1033 }
1034
1035 return gh->gh_error;
1036}
1037
1038static inline struct gfs2_holder *
Robert Peterson04b933f2007-03-23 17:05:15 -05001039find_holder_by_owner(struct list_head *head, pid_t pid)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001040{
1041 struct gfs2_holder *gh;
1042
1043 list_for_each_entry(gh, head, gh_list) {
Robert Peterson04b933f2007-03-23 17:05:15 -05001044 if (gh->gh_owner_pid == pid)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001045 return gh;
1046 }
1047
1048 return NULL;
1049}
1050
Robert Peterson7c52b162007-03-16 10:26:37 +00001051static void print_dbg(struct glock_iter *gi, const char *fmt, ...)
1052{
1053 va_list args;
1054
1055 va_start(args, fmt);
1056 if (gi) {
1057 vsprintf(gi->string, fmt, args);
1058 seq_printf(gi->seq, gi->string);
1059 }
1060 else
1061 vprintk(fmt, args);
1062 va_end(args);
1063}
1064
David Teiglandb3b94fa2006-01-16 16:50:04 +00001065/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001066 * add_to_queue - Add a holder to the wait queue (but look for recursion)
1067 * @gh: the holder structure to add
1068 *
1069 */
1070
1071static void add_to_queue(struct gfs2_holder *gh)
1072{
1073 struct gfs2_glock *gl = gh->gh_gl;
1074 struct gfs2_holder *existing;
1075
Robert Peterson04b933f2007-03-23 17:05:15 -05001076 BUG_ON(!gh->gh_owner_pid);
Steven Whitehousefee852e2007-01-17 15:33:23 +00001077 if (test_and_set_bit(HIF_WAIT, &gh->gh_iflags))
1078 BUG();
Steven Whitehouse190562b2006-04-20 16:57:23 -04001079
Robert Peterson04b933f2007-03-23 17:05:15 -05001080 existing = find_holder_by_owner(&gl->gl_holders, gh->gh_owner_pid);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001081 if (existing) {
Steven Whitehouse5965b1f2006-04-26 13:21:55 -04001082 print_symbol(KERN_WARNING "original: %s\n", existing->gh_ip);
Robert Peterson04b933f2007-03-23 17:05:15 -05001083 printk(KERN_INFO "pid : %d\n", existing->gh_owner_pid);
Steven Whitehouse907b9bc2006-09-25 09:26:04 -04001084 printk(KERN_INFO "lock type : %d lock state : %d\n",
Abhijith Das86384602006-08-25 11:13:37 -05001085 existing->gh_gl->gl_name.ln_type, existing->gh_gl->gl_state);
Steven Whitehouse5965b1f2006-04-26 13:21:55 -04001086 print_symbol(KERN_WARNING "new: %s\n", gh->gh_ip);
Robert Peterson04b933f2007-03-23 17:05:15 -05001087 printk(KERN_INFO "pid : %d\n", gh->gh_owner_pid);
Steven Whitehouse907b9bc2006-09-25 09:26:04 -04001088 printk(KERN_INFO "lock type : %d lock state : %d\n",
Abhijith Das86384602006-08-25 11:13:37 -05001089 gl->gl_name.ln_type, gl->gl_state);
Steven Whitehouse5965b1f2006-04-26 13:21:55 -04001090 BUG();
David Teiglandb3b94fa2006-01-16 16:50:04 +00001091 }
1092
Robert Peterson04b933f2007-03-23 17:05:15 -05001093 existing = find_holder_by_owner(&gl->gl_waiters3, gh->gh_owner_pid);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001094 if (existing) {
Steven Whitehouse5965b1f2006-04-26 13:21:55 -04001095 print_symbol(KERN_WARNING "original: %s\n", existing->gh_ip);
1096 print_symbol(KERN_WARNING "new: %s\n", gh->gh_ip);
1097 BUG();
David Teiglandb3b94fa2006-01-16 16:50:04 +00001098 }
1099
David Teiglandb3b94fa2006-01-16 16:50:04 +00001100 if (gh->gh_flags & LM_FLAG_PRIORITY)
1101 list_add(&gh->gh_list, &gl->gl_waiters3);
1102 else
Steven Whitehouse907b9bc2006-09-25 09:26:04 -04001103 list_add_tail(&gh->gh_list, &gl->gl_waiters3);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001104}
1105
1106/**
1107 * gfs2_glock_nq - enqueue a struct gfs2_holder onto a glock (acquire a glock)
1108 * @gh: the holder structure
1109 *
1110 * if (gh->gh_flags & GL_ASYNC), this never returns an error
1111 *
1112 * Returns: 0, GLR_TRYFAILED, or errno on failure
1113 */
1114
1115int gfs2_glock_nq(struct gfs2_holder *gh)
1116{
1117 struct gfs2_glock *gl = gh->gh_gl;
1118 struct gfs2_sbd *sdp = gl->gl_sbd;
1119 int error = 0;
1120
Steven Whitehouse320dd102006-05-18 16:25:27 -04001121restart:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001122 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags))) {
1123 set_bit(HIF_ABORTED, &gh->gh_iflags);
1124 return -EIO;
1125 }
1126
1127 set_bit(HIF_PROMOTE, &gh->gh_iflags);
1128
1129 spin_lock(&gl->gl_spin);
1130 add_to_queue(gh);
1131 run_queue(gl);
1132 spin_unlock(&gl->gl_spin);
1133
1134 if (!(gh->gh_flags & GL_ASYNC)) {
1135 error = glock_wait_internal(gh);
1136 if (error == GLR_CANCELED) {
Steven Whitehouse190562b2006-04-20 16:57:23 -04001137 msleep(100);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001138 goto restart;
1139 }
1140 }
1141
David Teiglandb3b94fa2006-01-16 16:50:04 +00001142 return error;
1143}
1144
1145/**
1146 * gfs2_glock_poll - poll to see if an async request has been completed
1147 * @gh: the holder
1148 *
1149 * Returns: 1 if the request is ready to be gfs2_glock_wait()ed on
1150 */
1151
1152int gfs2_glock_poll(struct gfs2_holder *gh)
1153{
1154 struct gfs2_glock *gl = gh->gh_gl;
1155 int ready = 0;
1156
1157 spin_lock(&gl->gl_spin);
1158
1159 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
1160 ready = 1;
1161 else if (list_empty(&gh->gh_list)) {
1162 if (gh->gh_error == GLR_CANCELED) {
1163 spin_unlock(&gl->gl_spin);
Steven Whitehouse190562b2006-04-20 16:57:23 -04001164 msleep(100);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001165 if (gfs2_glock_nq(gh))
1166 return 1;
1167 return 0;
1168 } else
1169 ready = 1;
1170 }
1171
1172 spin_unlock(&gl->gl_spin);
1173
1174 return ready;
1175}
1176
1177/**
1178 * gfs2_glock_wait - wait for a lock acquisition that ended in a GLR_ASYNC
1179 * @gh: the holder structure
1180 *
1181 * Returns: 0, GLR_TRYFAILED, or errno on failure
1182 */
1183
1184int gfs2_glock_wait(struct gfs2_holder *gh)
1185{
1186 int error;
1187
1188 error = glock_wait_internal(gh);
1189 if (error == GLR_CANCELED) {
Steven Whitehouse190562b2006-04-20 16:57:23 -04001190 msleep(100);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001191 gh->gh_flags &= ~GL_ASYNC;
1192 error = gfs2_glock_nq(gh);
1193 }
1194
1195 return error;
1196}
1197
1198/**
1199 * gfs2_glock_dq - dequeue a struct gfs2_holder from a glock (release a glock)
1200 * @gh: the glock holder
1201 *
1202 */
1203
1204void gfs2_glock_dq(struct gfs2_holder *gh)
1205{
1206 struct gfs2_glock *gl = gh->gh_gl;
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001207 const struct gfs2_glock_operations *glops = gl->gl_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001208
David Teiglandb3b94fa2006-01-16 16:50:04 +00001209 if (gh->gh_flags & GL_NOCACHE)
Abhijith Dasd93cfa92007-06-11 08:22:32 +01001210 handle_callback(gl, LM_ST_UNLOCKED, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001211
1212 gfs2_glmutex_lock(gl);
1213
1214 spin_lock(&gl->gl_spin);
1215 list_del_init(&gh->gh_list);
1216
1217 if (list_empty(&gl->gl_holders)) {
1218 spin_unlock(&gl->gl_spin);
1219
1220 if (glops->go_unlock)
1221 glops->go_unlock(gh);
1222
David Teiglandb3b94fa2006-01-16 16:50:04 +00001223 spin_lock(&gl->gl_spin);
Steven Whitehouse3b8249f2007-03-16 09:40:31 +00001224 gl->gl_stamp = jiffies;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001225 }
1226
1227 clear_bit(GLF_LOCK, &gl->gl_flags);
1228 run_queue(gl);
1229 spin_unlock(&gl->gl_spin);
1230}
1231
Abhijith Dasd93cfa92007-06-11 08:22:32 +01001232void gfs2_glock_dq_wait(struct gfs2_holder *gh)
1233{
1234 struct gfs2_glock *gl = gh->gh_gl;
1235 gfs2_glock_dq(gh);
1236 wait_on_demote(gl);
1237}
1238
David Teiglandb3b94fa2006-01-16 16:50:04 +00001239/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001240 * gfs2_glock_dq_uninit - dequeue a holder from a glock and initialize it
1241 * @gh: the holder structure
1242 *
1243 */
1244
1245void gfs2_glock_dq_uninit(struct gfs2_holder *gh)
1246{
1247 gfs2_glock_dq(gh);
1248 gfs2_holder_uninit(gh);
1249}
1250
1251/**
1252 * gfs2_glock_nq_num - acquire a glock based on lock number
1253 * @sdp: the filesystem
1254 * @number: the lock number
1255 * @glops: the glock operations for the type of glock
1256 * @state: the state to acquire the glock in
1257 * @flags: modifier flags for the aquisition
1258 * @gh: the struct gfs2_holder
1259 *
1260 * Returns: errno
1261 */
1262
Steven Whitehousecd915492006-09-04 12:49:07 -04001263int gfs2_glock_nq_num(struct gfs2_sbd *sdp, u64 number,
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001264 const struct gfs2_glock_operations *glops,
1265 unsigned int state, int flags, struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001266{
1267 struct gfs2_glock *gl;
1268 int error;
1269
1270 error = gfs2_glock_get(sdp, number, glops, CREATE, &gl);
1271 if (!error) {
1272 error = gfs2_glock_nq_init(gl, state, flags, gh);
1273 gfs2_glock_put(gl);
1274 }
1275
1276 return error;
1277}
1278
1279/**
1280 * glock_compare - Compare two struct gfs2_glock structures for sorting
1281 * @arg_a: the first structure
1282 * @arg_b: the second structure
1283 *
1284 */
1285
1286static int glock_compare(const void *arg_a, const void *arg_b)
1287{
Steven Whitehousea5e08a92006-09-09 17:07:05 -04001288 const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1289 const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1290 const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1291 const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001292
1293 if (a->ln_number > b->ln_number)
Steven Whitehousea5e08a92006-09-09 17:07:05 -04001294 return 1;
1295 if (a->ln_number < b->ln_number)
1296 return -1;
Steven Whitehouse1c0f4872007-01-22 12:10:39 -05001297 BUG_ON(gh_a->gh_gl->gl_ops->go_type == gh_b->gh_gl->gl_ops->go_type);
Steven Whitehousea5e08a92006-09-09 17:07:05 -04001298 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001299}
1300
1301/**
1302 * nq_m_sync - synchonously acquire more than one glock in deadlock free order
1303 * @num_gh: the number of structures
1304 * @ghs: an array of struct gfs2_holder structures
1305 *
1306 * Returns: 0 on success (all glocks acquired),
1307 * errno on failure (no glocks acquired)
1308 */
1309
1310static int nq_m_sync(unsigned int num_gh, struct gfs2_holder *ghs,
1311 struct gfs2_holder **p)
1312{
1313 unsigned int x;
1314 int error = 0;
1315
1316 for (x = 0; x < num_gh; x++)
1317 p[x] = &ghs[x];
1318
1319 sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare, NULL);
1320
1321 for (x = 0; x < num_gh; x++) {
1322 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1323
1324 error = gfs2_glock_nq(p[x]);
1325 if (error) {
1326 while (x--)
1327 gfs2_glock_dq(p[x]);
1328 break;
1329 }
1330 }
1331
1332 return error;
1333}
1334
1335/**
1336 * gfs2_glock_nq_m - acquire multiple glocks
1337 * @num_gh: the number of structures
1338 * @ghs: an array of struct gfs2_holder structures
1339 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001340 *
1341 * Returns: 0 on success (all glocks acquired),
1342 * errno on failure (no glocks acquired)
1343 */
1344
1345int gfs2_glock_nq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1346{
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001347 struct gfs2_holder *tmp[4];
1348 struct gfs2_holder **pph = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001349 int error = 0;
1350
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001351 switch(num_gh) {
1352 case 0:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001353 return 0;
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001354 case 1:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001355 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1356 return gfs2_glock_nq(ghs);
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001357 default:
1358 if (num_gh <= 4)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001359 break;
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001360 pph = kmalloc(num_gh * sizeof(struct gfs2_holder *), GFP_NOFS);
1361 if (!pph)
1362 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001363 }
1364
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001365 error = nq_m_sync(num_gh, ghs, pph);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001366
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001367 if (pph != tmp)
1368 kfree(pph);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001369
1370 return error;
1371}
1372
1373/**
1374 * gfs2_glock_dq_m - release multiple glocks
1375 * @num_gh: the number of structures
1376 * @ghs: an array of struct gfs2_holder structures
1377 *
1378 */
1379
1380void gfs2_glock_dq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1381{
1382 unsigned int x;
1383
1384 for (x = 0; x < num_gh; x++)
1385 gfs2_glock_dq(&ghs[x]);
1386}
1387
1388/**
1389 * gfs2_glock_dq_uninit_m - release multiple glocks
1390 * @num_gh: the number of structures
1391 * @ghs: an array of struct gfs2_holder structures
1392 *
1393 */
1394
1395void gfs2_glock_dq_uninit_m(unsigned int num_gh, struct gfs2_holder *ghs)
1396{
1397 unsigned int x;
1398
1399 for (x = 0; x < num_gh; x++)
1400 gfs2_glock_dq_uninit(&ghs[x]);
1401}
1402
1403/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001404 * gfs2_lvb_hold - attach a LVB from a glock
1405 * @gl: The glock in question
1406 *
1407 */
1408
1409int gfs2_lvb_hold(struct gfs2_glock *gl)
1410{
1411 int error;
1412
1413 gfs2_glmutex_lock(gl);
1414
1415 if (!atomic_read(&gl->gl_lvb_count)) {
1416 error = gfs2_lm_hold_lvb(gl->gl_sbd, gl->gl_lock, &gl->gl_lvb);
1417 if (error) {
1418 gfs2_glmutex_unlock(gl);
1419 return error;
1420 }
1421 gfs2_glock_hold(gl);
1422 }
1423 atomic_inc(&gl->gl_lvb_count);
1424
1425 gfs2_glmutex_unlock(gl);
1426
1427 return 0;
1428}
1429
1430/**
1431 * gfs2_lvb_unhold - detach a LVB from a glock
1432 * @gl: The glock in question
1433 *
1434 */
1435
1436void gfs2_lvb_unhold(struct gfs2_glock *gl)
1437{
1438 gfs2_glock_hold(gl);
1439 gfs2_glmutex_lock(gl);
1440
1441 gfs2_assert(gl->gl_sbd, atomic_read(&gl->gl_lvb_count) > 0);
1442 if (atomic_dec_and_test(&gl->gl_lvb_count)) {
1443 gfs2_lm_unhold_lvb(gl->gl_sbd, gl->gl_lock, gl->gl_lvb);
1444 gl->gl_lvb = NULL;
1445 gfs2_glock_put(gl);
1446 }
1447
1448 gfs2_glmutex_unlock(gl);
1449 gfs2_glock_put(gl);
1450}
1451
David Teiglandb3b94fa2006-01-16 16:50:04 +00001452static void blocking_cb(struct gfs2_sbd *sdp, struct lm_lockname *name,
1453 unsigned int state)
1454{
1455 struct gfs2_glock *gl;
1456
1457 gl = gfs2_glock_find(sdp, name);
1458 if (!gl)
1459 return;
1460
Abhijith Dasd93cfa92007-06-11 08:22:32 +01001461 handle_callback(gl, state, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001462
1463 spin_lock(&gl->gl_spin);
1464 run_queue(gl);
1465 spin_unlock(&gl->gl_spin);
1466
1467 gfs2_glock_put(gl);
1468}
1469
1470/**
1471 * gfs2_glock_cb - Callback used by locking module
Steven Whitehouse1c089c32006-09-07 15:50:20 -04001472 * @sdp: Pointer to the superblock
David Teiglandb3b94fa2006-01-16 16:50:04 +00001473 * @type: Type of callback
1474 * @data: Type dependent data pointer
1475 *
1476 * Called by the locking module when it wants to tell us something.
1477 * Either we need to drop a lock, one of our ASYNC requests completed, or
1478 * a journal from another client needs to be recovered.
1479 */
1480
Steven Whitehouse9b47c112006-09-08 10:17:58 -04001481void gfs2_glock_cb(void *cb_data, unsigned int type, void *data)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001482{
Steven Whitehouse9b47c112006-09-08 10:17:58 -04001483 struct gfs2_sbd *sdp = cb_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001484
David Teiglandb3b94fa2006-01-16 16:50:04 +00001485 switch (type) {
1486 case LM_CB_NEED_E:
David Teiglande7f5c012006-04-27 11:25:45 -04001487 blocking_cb(sdp, data, LM_ST_UNLOCKED);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001488 return;
1489
1490 case LM_CB_NEED_D:
David Teiglande7f5c012006-04-27 11:25:45 -04001491 blocking_cb(sdp, data, LM_ST_DEFERRED);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001492 return;
1493
1494 case LM_CB_NEED_S:
David Teiglande7f5c012006-04-27 11:25:45 -04001495 blocking_cb(sdp, data, LM_ST_SHARED);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001496 return;
1497
1498 case LM_CB_ASYNC: {
David Teiglande7f5c012006-04-27 11:25:45 -04001499 struct lm_async_cb *async = data;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001500 struct gfs2_glock *gl;
1501
Steven Whitehouse61be0842007-01-29 11:51:45 +00001502 down_read(&gfs2_umount_flush_sem);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001503 gl = gfs2_glock_find(sdp, &async->lc_name);
1504 if (gfs2_assert_warn(sdp, gl))
1505 return;
1506 if (!gfs2_assert_warn(sdp, gl->gl_req_bh))
1507 gl->gl_req_bh(gl, async->lc_ret);
1508 gfs2_glock_put(gl);
Steven Whitehouse61be0842007-01-29 11:51:45 +00001509 up_read(&gfs2_umount_flush_sem);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001510 return;
1511 }
1512
1513 case LM_CB_NEED_RECOVERY:
1514 gfs2_jdesc_make_dirty(sdp, *(unsigned int *)data);
1515 if (sdp->sd_recoverd_process)
1516 wake_up_process(sdp->sd_recoverd_process);
1517 return;
1518
1519 case LM_CB_DROPLOCKS:
1520 gfs2_gl_hash_clear(sdp, NO_WAIT);
1521 gfs2_quota_scan(sdp);
1522 return;
1523
1524 default:
1525 gfs2_assert_warn(sdp, 0);
1526 return;
1527 }
1528}
1529
1530/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001531 * demote_ok - Check to see if it's ok to unlock a glock
1532 * @gl: the glock
1533 *
1534 * Returns: 1 if it's ok
1535 */
1536
1537static int demote_ok(struct gfs2_glock *gl)
1538{
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001539 const struct gfs2_glock_operations *glops = gl->gl_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001540 int demote = 1;
1541
1542 if (test_bit(GLF_STICKY, &gl->gl_flags))
1543 demote = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001544 else if (glops->go_demote_ok)
1545 demote = glops->go_demote_ok(gl);
1546
1547 return demote;
1548}
1549
1550/**
1551 * gfs2_glock_schedule_for_reclaim - Add a glock to the reclaim list
1552 * @gl: the glock
1553 *
1554 */
1555
1556void gfs2_glock_schedule_for_reclaim(struct gfs2_glock *gl)
1557{
1558 struct gfs2_sbd *sdp = gl->gl_sbd;
1559
1560 spin_lock(&sdp->sd_reclaim_lock);
1561 if (list_empty(&gl->gl_reclaim)) {
1562 gfs2_glock_hold(gl);
1563 list_add(&gl->gl_reclaim, &sdp->sd_reclaim_list);
1564 atomic_inc(&sdp->sd_reclaim_count);
1565 }
1566 spin_unlock(&sdp->sd_reclaim_lock);
1567
1568 wake_up(&sdp->sd_reclaim_wq);
1569}
1570
1571/**
1572 * gfs2_reclaim_glock - process the next glock on the filesystem's reclaim list
1573 * @sdp: the filesystem
1574 *
1575 * Called from gfs2_glockd() glock reclaim daemon, or when promoting a
1576 * different glock and we notice that there are a lot of glocks in the
1577 * reclaim list.
1578 *
1579 */
1580
1581void gfs2_reclaim_glock(struct gfs2_sbd *sdp)
1582{
1583 struct gfs2_glock *gl;
1584
1585 spin_lock(&sdp->sd_reclaim_lock);
1586 if (list_empty(&sdp->sd_reclaim_list)) {
1587 spin_unlock(&sdp->sd_reclaim_lock);
1588 return;
1589 }
1590 gl = list_entry(sdp->sd_reclaim_list.next,
1591 struct gfs2_glock, gl_reclaim);
1592 list_del_init(&gl->gl_reclaim);
1593 spin_unlock(&sdp->sd_reclaim_lock);
1594
1595 atomic_dec(&sdp->sd_reclaim_count);
1596 atomic_inc(&sdp->sd_reclaimed);
1597
1598 if (gfs2_glmutex_trylock(gl)) {
Steven Whitehouse12132932007-01-22 13:09:04 -05001599 if (list_empty(&gl->gl_holders) &&
Steven Whitehouse50299962006-09-04 09:49:55 -04001600 gl->gl_state != LM_ST_UNLOCKED && demote_ok(gl))
Abhijith Dasd93cfa92007-06-11 08:22:32 +01001601 handle_callback(gl, LM_ST_UNLOCKED, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001602 gfs2_glmutex_unlock(gl);
1603 }
1604
1605 gfs2_glock_put(gl);
1606}
1607
1608/**
1609 * examine_bucket - Call a function for glock in a hash bucket
1610 * @examiner: the function
1611 * @sdp: the filesystem
1612 * @bucket: the bucket
1613 *
1614 * Returns: 1 if the bucket has entries
1615 */
1616
1617static int examine_bucket(glock_examiner examiner, struct gfs2_sbd *sdp,
Steven Whitehouse37b2fa62006-09-08 13:35:56 -04001618 unsigned int hash)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001619{
Steven Whitehouse24264432006-09-11 21:40:30 -04001620 struct gfs2_glock *gl, *prev = NULL;
1621 int has_entries = 0;
Steven Whitehouseb6397892006-09-12 10:10:01 -04001622 struct hlist_head *head = &gl_hash_table[hash].hb_list;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001623
Steven Whitehouse24264432006-09-11 21:40:30 -04001624 read_lock(gl_lock_addr(hash));
Steven Whitehouseb6397892006-09-12 10:10:01 -04001625 /* Can't use hlist_for_each_entry - don't want prefetch here */
1626 if (hlist_empty(head))
Steven Whitehouse24264432006-09-11 21:40:30 -04001627 goto out;
Steven Whitehouseb6397892006-09-12 10:10:01 -04001628 gl = list_entry(head->first, struct gfs2_glock, gl_list);
1629 while(1) {
Steven Whitehouse24264432006-09-11 21:40:30 -04001630 if (gl->gl_sbd == sdp) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001631 gfs2_glock_hold(gl);
Steven Whitehouse24264432006-09-11 21:40:30 -04001632 read_unlock(gl_lock_addr(hash));
1633 if (prev)
1634 gfs2_glock_put(prev);
1635 prev = gl;
1636 examiner(gl);
Steven Whitehousea8336342006-09-14 13:57:38 -04001637 has_entries = 1;
Steven Whitehouse24264432006-09-11 21:40:30 -04001638 read_lock(gl_lock_addr(hash));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001639 }
Steven Whitehouseb6397892006-09-12 10:10:01 -04001640 if (gl->gl_list.next == NULL)
1641 break;
Steven Whitehouse24264432006-09-11 21:40:30 -04001642 gl = list_entry(gl->gl_list.next, struct gfs2_glock, gl_list);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001643 }
Steven Whitehouse24264432006-09-11 21:40:30 -04001644out:
1645 read_unlock(gl_lock_addr(hash));
1646 if (prev)
1647 gfs2_glock_put(prev);
1648 return has_entries;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001649}
1650
1651/**
1652 * scan_glock - look at a glock and see if we can reclaim it
1653 * @gl: the glock to look at
1654 *
1655 */
1656
1657static void scan_glock(struct gfs2_glock *gl)
1658{
Steven Whitehouseb0041572006-11-23 10:51:34 -05001659 if (gl->gl_ops == &gfs2_inode_glops && gl->gl_object)
Steven Whitehouse24264432006-09-11 21:40:30 -04001660 return;
Steven Whitehousea2242db2006-08-24 17:03:05 -04001661
David Teiglandb3b94fa2006-01-16 16:50:04 +00001662 if (gfs2_glmutex_trylock(gl)) {
Steven Whitehouse12132932007-01-22 13:09:04 -05001663 if (list_empty(&gl->gl_holders) &&
Steven Whitehouse24264432006-09-11 21:40:30 -04001664 gl->gl_state != LM_ST_UNLOCKED && demote_ok(gl))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001665 goto out_schedule;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001666 gfs2_glmutex_unlock(gl);
1667 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001668 return;
1669
Steven Whitehouse627add22006-07-05 13:16:19 -04001670out_schedule:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001671 gfs2_glmutex_unlock(gl);
1672 gfs2_glock_schedule_for_reclaim(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001673}
1674
1675/**
1676 * gfs2_scand_internal - Look for glocks and inodes to toss from memory
1677 * @sdp: the filesystem
1678 *
1679 */
1680
1681void gfs2_scand_internal(struct gfs2_sbd *sdp)
1682{
1683 unsigned int x;
1684
Steven Whitehouse94610612006-09-09 18:59:27 -04001685 for (x = 0; x < GFS2_GL_HASH_SIZE; x++)
Steven Whitehouse37b2fa62006-09-08 13:35:56 -04001686 examine_bucket(scan_glock, sdp, x);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001687}
1688
1689/**
1690 * clear_glock - look at a glock and see if we can free it from glock cache
1691 * @gl: the glock to look at
1692 *
1693 */
1694
1695static void clear_glock(struct gfs2_glock *gl)
1696{
1697 struct gfs2_sbd *sdp = gl->gl_sbd;
1698 int released;
1699
1700 spin_lock(&sdp->sd_reclaim_lock);
1701 if (!list_empty(&gl->gl_reclaim)) {
1702 list_del_init(&gl->gl_reclaim);
1703 atomic_dec(&sdp->sd_reclaim_count);
Steven Whitehouse190562b2006-04-20 16:57:23 -04001704 spin_unlock(&sdp->sd_reclaim_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001705 released = gfs2_glock_put(gl);
1706 gfs2_assert(sdp, !released);
Steven Whitehouse190562b2006-04-20 16:57:23 -04001707 } else {
1708 spin_unlock(&sdp->sd_reclaim_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001709 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001710
1711 if (gfs2_glmutex_trylock(gl)) {
Steven Whitehouse90101c32007-01-23 13:20:41 -05001712 if (list_empty(&gl->gl_holders) &&
David Teiglandb3b94fa2006-01-16 16:50:04 +00001713 gl->gl_state != LM_ST_UNLOCKED)
Abhijith Dasd93cfa92007-06-11 08:22:32 +01001714 handle_callback(gl, LM_ST_UNLOCKED, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001715 gfs2_glmutex_unlock(gl);
1716 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001717}
1718
1719/**
1720 * gfs2_gl_hash_clear - Empty out the glock hash table
1721 * @sdp: the filesystem
1722 * @wait: wait until it's all gone
1723 *
1724 * Called when unmounting the filesystem, or when inter-node lock manager
1725 * requests DROPLOCKS because it is running out of capacity.
1726 */
1727
1728void gfs2_gl_hash_clear(struct gfs2_sbd *sdp, int wait)
1729{
1730 unsigned long t;
1731 unsigned int x;
1732 int cont;
1733
1734 t = jiffies;
1735
1736 for (;;) {
1737 cont = 0;
Steven Whitehouse24264432006-09-11 21:40:30 -04001738 for (x = 0; x < GFS2_GL_HASH_SIZE; x++) {
Steven Whitehouse907b9bc2006-09-25 09:26:04 -04001739 if (examine_bucket(clear_glock, sdp, x))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001740 cont = 1;
Steven Whitehouse24264432006-09-11 21:40:30 -04001741 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001742
1743 if (!wait || !cont)
1744 break;
1745
1746 if (time_after_eq(jiffies,
1747 t + gfs2_tune_get(sdp, gt_stall_secs) * HZ)) {
1748 fs_warn(sdp, "Unmount seems to be stalled. "
1749 "Dumping lock state...\n");
1750 gfs2_dump_lockstate(sdp);
1751 t = jiffies;
1752 }
1753
Steven Whitehouse61be0842007-01-29 11:51:45 +00001754 down_write(&gfs2_umount_flush_sem);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001755 invalidate_inodes(sdp->sd_vfs);
Steven Whitehouse61be0842007-01-29 11:51:45 +00001756 up_write(&gfs2_umount_flush_sem);
Steven Whitehousefd88de562006-05-05 16:59:11 -04001757 msleep(10);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001758 }
1759}
1760
1761/*
1762 * Diagnostic routines to help debug distributed deadlock
1763 */
1764
Robert Peterson04b933f2007-03-23 17:05:15 -05001765static void gfs2_print_symbol(struct glock_iter *gi, const char *fmt,
1766 unsigned long address)
1767{
Robert Peterson7a0079d2007-04-17 11:37:11 -05001768 char buffer[KSYM_SYMBOL_LEN];
Robert Peterson04b933f2007-03-23 17:05:15 -05001769
Robert Peterson7a0079d2007-04-17 11:37:11 -05001770 sprint_symbol(buffer, address);
1771 print_dbg(gi, fmt, buffer);
Robert Peterson04b933f2007-03-23 17:05:15 -05001772}
1773
David Teiglandb3b94fa2006-01-16 16:50:04 +00001774/**
1775 * dump_holder - print information about a glock holder
1776 * @str: a string naming the type of holder
1777 * @gh: the glock holder
1778 *
1779 * Returns: 0 on success, -ENOBUFS when we run out of space
1780 */
1781
Robert Peterson7c52b162007-03-16 10:26:37 +00001782static int dump_holder(struct glock_iter *gi, char *str,
1783 struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001784{
1785 unsigned int x;
Robert Peterson04b933f2007-03-23 17:05:15 -05001786 struct task_struct *gh_owner;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001787
Robert Peterson7c52b162007-03-16 10:26:37 +00001788 print_dbg(gi, " %s\n", str);
Robert Peterson04b933f2007-03-23 17:05:15 -05001789 if (gh->gh_owner_pid) {
1790 print_dbg(gi, " owner = %ld ", (long)gh->gh_owner_pid);
1791 gh_owner = find_task_by_pid(gh->gh_owner_pid);
1792 if (gh_owner)
1793 print_dbg(gi, "(%s)\n", gh_owner->comm);
1794 else
1795 print_dbg(gi, "(ended)\n");
1796 } else
1797 print_dbg(gi, " owner = -1\n");
Robert Peterson7c52b162007-03-16 10:26:37 +00001798 print_dbg(gi, " gh_state = %u\n", gh->gh_state);
1799 print_dbg(gi, " gh_flags =");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001800 for (x = 0; x < 32; x++)
1801 if (gh->gh_flags & (1 << x))
Robert Peterson7c52b162007-03-16 10:26:37 +00001802 print_dbg(gi, " %u", x);
1803 print_dbg(gi, " \n");
1804 print_dbg(gi, " error = %d\n", gh->gh_error);
1805 print_dbg(gi, " gh_iflags =");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001806 for (x = 0; x < 32; x++)
1807 if (test_bit(x, &gh->gh_iflags))
Robert Peterson7c52b162007-03-16 10:26:37 +00001808 print_dbg(gi, " %u", x);
1809 print_dbg(gi, " \n");
Robert Peterson04b933f2007-03-23 17:05:15 -05001810 gfs2_print_symbol(gi, " initialized at: %s\n", gh->gh_ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001811
Robert Peterson7c52b162007-03-16 10:26:37 +00001812 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001813}
1814
1815/**
1816 * dump_inode - print information about an inode
1817 * @ip: the inode
1818 *
1819 * Returns: 0 on success, -ENOBUFS when we run out of space
1820 */
1821
Robert Peterson7c52b162007-03-16 10:26:37 +00001822static int dump_inode(struct glock_iter *gi, struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001823{
1824 unsigned int x;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001825
Robert Peterson7c52b162007-03-16 10:26:37 +00001826 print_dbg(gi, " Inode:\n");
1827 print_dbg(gi, " num = %llu/%llu\n",
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001828 (unsigned long long)ip->i_no_formal_ino,
1829 (unsigned long long)ip->i_no_addr);
Robert Peterson7c52b162007-03-16 10:26:37 +00001830 print_dbg(gi, " type = %u\n", IF2DT(ip->i_inode.i_mode));
1831 print_dbg(gi, " i_flags =");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001832 for (x = 0; x < 32; x++)
1833 if (test_bit(x, &ip->i_flags))
Robert Peterson7c52b162007-03-16 10:26:37 +00001834 print_dbg(gi, " %u", x);
1835 print_dbg(gi, " \n");
1836 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001837}
1838
1839/**
1840 * dump_glock - print information about a glock
1841 * @gl: the glock
1842 * @count: where we are in the buffer
1843 *
1844 * Returns: 0 on success, -ENOBUFS when we run out of space
1845 */
1846
Robert Peterson7c52b162007-03-16 10:26:37 +00001847static int dump_glock(struct glock_iter *gi, struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001848{
1849 struct gfs2_holder *gh;
1850 unsigned int x;
1851 int error = -ENOBUFS;
Robert Peterson04b933f2007-03-23 17:05:15 -05001852 struct task_struct *gl_owner;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001853
1854 spin_lock(&gl->gl_spin);
1855
Robert Peterson7c52b162007-03-16 10:26:37 +00001856 print_dbg(gi, "Glock 0x%p (%u, %llu)\n", gl, gl->gl_name.ln_type,
1857 (unsigned long long)gl->gl_name.ln_number);
1858 print_dbg(gi, " gl_flags =");
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001859 for (x = 0; x < 32; x++) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001860 if (test_bit(x, &gl->gl_flags))
Robert Peterson7c52b162007-03-16 10:26:37 +00001861 print_dbg(gi, " %u", x);
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001862 }
Robert Peterson04b933f2007-03-23 17:05:15 -05001863 if (!test_bit(GLF_LOCK, &gl->gl_flags))
1864 print_dbg(gi, " (unlocked)");
Robert Peterson7c52b162007-03-16 10:26:37 +00001865 print_dbg(gi, " \n");
1866 print_dbg(gi, " gl_ref = %d\n", atomic_read(&gl->gl_ref));
1867 print_dbg(gi, " gl_state = %u\n", gl->gl_state);
Robert Peterson04b933f2007-03-23 17:05:15 -05001868 if (gl->gl_owner_pid) {
1869 gl_owner = find_task_by_pid(gl->gl_owner_pid);
1870 if (gl_owner)
1871 print_dbg(gi, " gl_owner = pid %d (%s)\n",
1872 gl->gl_owner_pid, gl_owner->comm);
1873 else
1874 print_dbg(gi, " gl_owner = %d (ended)\n",
1875 gl->gl_owner_pid);
1876 } else
1877 print_dbg(gi, " gl_owner = -1\n");
Robert Peterson7c52b162007-03-16 10:26:37 +00001878 print_dbg(gi, " gl_ip = %lu\n", gl->gl_ip);
1879 print_dbg(gi, " req_gh = %s\n", (gl->gl_req_gh) ? "yes" : "no");
1880 print_dbg(gi, " req_bh = %s\n", (gl->gl_req_bh) ? "yes" : "no");
1881 print_dbg(gi, " lvb_count = %d\n", atomic_read(&gl->gl_lvb_count));
1882 print_dbg(gi, " object = %s\n", (gl->gl_object) ? "yes" : "no");
1883 print_dbg(gi, " le = %s\n",
David Teiglandb3b94fa2006-01-16 16:50:04 +00001884 (list_empty(&gl->gl_le.le_list)) ? "no" : "yes");
Robert Peterson7c52b162007-03-16 10:26:37 +00001885 print_dbg(gi, " reclaim = %s\n",
1886 (list_empty(&gl->gl_reclaim)) ? "no" : "yes");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001887 if (gl->gl_aspace)
Robert Peterson7c52b162007-03-16 10:26:37 +00001888 print_dbg(gi, " aspace = 0x%p nrpages = %lu\n", gl->gl_aspace,
1889 gl->gl_aspace->i_mapping->nrpages);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001890 else
Robert Peterson7c52b162007-03-16 10:26:37 +00001891 print_dbg(gi, " aspace = no\n");
1892 print_dbg(gi, " ail = %d\n", atomic_read(&gl->gl_ail_count));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001893 if (gl->gl_req_gh) {
Robert Peterson7c52b162007-03-16 10:26:37 +00001894 error = dump_holder(gi, "Request", gl->gl_req_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001895 if (error)
1896 goto out;
1897 }
1898 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
Robert Peterson7c52b162007-03-16 10:26:37 +00001899 error = dump_holder(gi, "Holder", gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001900 if (error)
1901 goto out;
1902 }
1903 list_for_each_entry(gh, &gl->gl_waiters1, gh_list) {
Robert Peterson7c52b162007-03-16 10:26:37 +00001904 error = dump_holder(gi, "Waiter1", gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001905 if (error)
1906 goto out;
1907 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001908 list_for_each_entry(gh, &gl->gl_waiters3, gh_list) {
Robert Peterson7c52b162007-03-16 10:26:37 +00001909 error = dump_holder(gi, "Waiter3", gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001910 if (error)
1911 goto out;
1912 }
Steven Whitehouse3b8249f2007-03-16 09:40:31 +00001913 if (test_bit(GLF_DEMOTE, &gl->gl_flags)) {
1914 print_dbg(gi, " Demotion req to state %u (%llu uS ago)\n",
Robert Petersoncd81a4b2007-05-14 12:42:18 -05001915 gl->gl_demote_state, (unsigned long long)
1916 (jiffies - gl->gl_demote_time)*(1000000/HZ));
Steven Whitehouse3b8249f2007-03-16 09:40:31 +00001917 }
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001918 if (gl->gl_ops == &gfs2_inode_glops && gl->gl_object) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001919 if (!test_bit(GLF_LOCK, &gl->gl_flags) &&
Robert Peterson7c52b162007-03-16 10:26:37 +00001920 list_empty(&gl->gl_holders)) {
1921 error = dump_inode(gi, gl->gl_object);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001922 if (error)
1923 goto out;
1924 } else {
1925 error = -ENOBUFS;
Robert Peterson7c52b162007-03-16 10:26:37 +00001926 print_dbg(gi, " Inode: busy\n");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001927 }
1928 }
1929
1930 error = 0;
1931
Steven Whitehousea91ea692006-09-04 12:04:26 -04001932out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001933 spin_unlock(&gl->gl_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001934 return error;
1935}
1936
1937/**
1938 * gfs2_dump_lockstate - print out the current lockstate
1939 * @sdp: the filesystem
1940 * @ub: the buffer to copy the information into
1941 *
1942 * If @ub is NULL, dump the lockstate to the console.
1943 *
1944 */
1945
Adrian Bunk08bc2db2006-04-28 10:59:12 -04001946static int gfs2_dump_lockstate(struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001947{
David Teiglandb3b94fa2006-01-16 16:50:04 +00001948 struct gfs2_glock *gl;
Steven Whitehouseb6397892006-09-12 10:10:01 -04001949 struct hlist_node *h;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001950 unsigned int x;
1951 int error = 0;
1952
1953 for (x = 0; x < GFS2_GL_HASH_SIZE; x++) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001954
Steven Whitehouse087efdd2006-09-09 16:59:11 -04001955 read_lock(gl_lock_addr(x));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001956
Steven Whitehouseb6397892006-09-12 10:10:01 -04001957 hlist_for_each_entry(gl, h, &gl_hash_table[x].hb_list, gl_list) {
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001958 if (gl->gl_sbd != sdp)
1959 continue;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001960
Robert Peterson7c52b162007-03-16 10:26:37 +00001961 error = dump_glock(NULL, gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001962 if (error)
1963 break;
1964 }
1965
Steven Whitehouse087efdd2006-09-09 16:59:11 -04001966 read_unlock(gl_lock_addr(x));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001967
1968 if (error)
1969 break;
1970 }
1971
1972
1973 return error;
1974}
1975
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001976int __init gfs2_glock_init(void)
1977{
1978 unsigned i;
1979 for(i = 0; i < GFS2_GL_HASH_SIZE; i++) {
Steven Whitehouseb6397892006-09-12 10:10:01 -04001980 INIT_HLIST_HEAD(&gl_hash_table[i].hb_list);
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001981 }
Steven Whitehouse087efdd2006-09-09 16:59:11 -04001982#ifdef GL_HASH_LOCK_SZ
1983 for(i = 0; i < GL_HASH_LOCK_SZ; i++) {
1984 rwlock_init(&gl_hash_locks[i]);
1985 }
1986#endif
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001987 return 0;
1988}
1989
Robert Peterson7c52b162007-03-16 10:26:37 +00001990static int gfs2_glock_iter_next(struct glock_iter *gi)
1991{
Steven Whitehouse7b08fc62007-07-24 13:53:36 +01001992 struct gfs2_glock *gl;
1993
Robert Peterson7a0079d2007-04-17 11:37:11 -05001994 read_lock(gl_lock_addr(gi->hash));
Steven Whitehouse7b08fc62007-07-24 13:53:36 +01001995 gl = gi->gl;
1996 if (gl) {
1997 gi->gl = hlist_entry(gl->gl_list.next, struct gfs2_glock,
1998 gl_list);
Robert Peterson7c52b162007-03-16 10:26:37 +00001999 if (gi->gl)
Steven Whitehouse7b08fc62007-07-24 13:53:36 +01002000 gfs2_glock_hold(gi->gl);
Robert Peterson7c52b162007-03-16 10:26:37 +00002001 }
Robert Peterson7a0079d2007-04-17 11:37:11 -05002002 read_unlock(gl_lock_addr(gi->hash));
Steven Whitehouse7b08fc62007-07-24 13:53:36 +01002003 if (gl)
2004 gfs2_glock_put(gl);
2005
2006 while(gi->gl == NULL) {
2007 gi->hash++;
2008 if (gi->hash >= GFS2_GL_HASH_SIZE)
2009 return 1;
2010 read_lock(gl_lock_addr(gi->hash));
2011 gi->gl = hlist_entry(gl_hash_table[gi->hash].hb_list.first,
2012 struct gfs2_glock, gl_list);
2013 if (gi->gl)
2014 gfs2_glock_hold(gi->gl);
2015 read_unlock(gl_lock_addr(gi->hash));
2016 }
Robert Peterson7c52b162007-03-16 10:26:37 +00002017 return 0;
2018}
2019
2020static void gfs2_glock_iter_free(struct glock_iter *gi)
2021{
Steven Whitehouse7b08fc62007-07-24 13:53:36 +01002022 if (gi->gl)
2023 gfs2_glock_put(gi->gl);
Robert Peterson7c52b162007-03-16 10:26:37 +00002024 kfree(gi);
2025}
2026
2027static struct glock_iter *gfs2_glock_iter_init(struct gfs2_sbd *sdp)
2028{
2029 struct glock_iter *gi;
2030
2031 gi = kmalloc(sizeof (*gi), GFP_KERNEL);
2032 if (!gi)
2033 return NULL;
2034
2035 gi->sdp = sdp;
2036 gi->hash = 0;
Robert Peterson7c52b162007-03-16 10:26:37 +00002037 gi->seq = NULL;
2038 memset(gi->string, 0, sizeof(gi->string));
2039
Steven Whitehouse7b08fc62007-07-24 13:53:36 +01002040 read_lock(gl_lock_addr(gi->hash));
2041 gi->gl = hlist_entry(gl_hash_table[gi->hash].hb_list.first,
2042 struct gfs2_glock, gl_list);
2043 if (gi->gl)
2044 gfs2_glock_hold(gi->gl);
2045 read_unlock(gl_lock_addr(gi->hash));
2046
2047 if (!gi->gl && gfs2_glock_iter_next(gi)) {
Robert Peterson7c52b162007-03-16 10:26:37 +00002048 gfs2_glock_iter_free(gi);
2049 return NULL;
2050 }
2051
2052 return gi;
2053}
2054
2055static void *gfs2_glock_seq_start(struct seq_file *file, loff_t *pos)
2056{
2057 struct glock_iter *gi;
2058 loff_t n = *pos;
2059
2060 gi = gfs2_glock_iter_init(file->private);
2061 if (!gi)
2062 return NULL;
2063
Steven Whitehouse7b08fc62007-07-24 13:53:36 +01002064 while(n--) {
Robert Peterson7c52b162007-03-16 10:26:37 +00002065 if (gfs2_glock_iter_next(gi)) {
2066 gfs2_glock_iter_free(gi);
2067 return NULL;
2068 }
2069 }
2070
2071 return gi;
2072}
2073
2074static void *gfs2_glock_seq_next(struct seq_file *file, void *iter_ptr,
2075 loff_t *pos)
2076{
2077 struct glock_iter *gi = iter_ptr;
2078
2079 (*pos)++;
2080
2081 if (gfs2_glock_iter_next(gi)) {
2082 gfs2_glock_iter_free(gi);
2083 return NULL;
2084 }
2085
2086 return gi;
2087}
2088
2089static void gfs2_glock_seq_stop(struct seq_file *file, void *iter_ptr)
2090{
Steven Whitehouse7b08fc62007-07-24 13:53:36 +01002091 struct glock_iter *gi = iter_ptr;
2092 if (gi)
2093 gfs2_glock_iter_free(gi);
Robert Peterson7c52b162007-03-16 10:26:37 +00002094}
2095
2096static int gfs2_glock_seq_show(struct seq_file *file, void *iter_ptr)
2097{
2098 struct glock_iter *gi = iter_ptr;
2099
2100 gi->seq = file;
2101 dump_glock(gi, gi->gl);
2102
2103 return 0;
2104}
2105
Denis Cheng4ef29002007-07-31 18:31:11 +08002106static const struct seq_operations gfs2_glock_seq_ops = {
Robert Peterson7c52b162007-03-16 10:26:37 +00002107 .start = gfs2_glock_seq_start,
2108 .next = gfs2_glock_seq_next,
2109 .stop = gfs2_glock_seq_stop,
2110 .show = gfs2_glock_seq_show,
2111};
2112
2113static int gfs2_debugfs_open(struct inode *inode, struct file *file)
2114{
2115 struct seq_file *seq;
2116 int ret;
2117
2118 ret = seq_open(file, &gfs2_glock_seq_ops);
2119 if (ret)
2120 return ret;
2121
2122 seq = file->private_data;
2123 seq->private = inode->i_private;
2124
2125 return 0;
2126}
2127
2128static const struct file_operations gfs2_debug_fops = {
2129 .owner = THIS_MODULE,
2130 .open = gfs2_debugfs_open,
2131 .read = seq_read,
2132 .llseek = seq_lseek,
2133 .release = seq_release
2134};
2135
2136int gfs2_create_debugfs_file(struct gfs2_sbd *sdp)
2137{
Robert Peterson5f882092007-04-18 11:41:11 -05002138 sdp->debugfs_dir = debugfs_create_dir(sdp->sd_table_name, gfs2_root);
2139 if (!sdp->debugfs_dir)
2140 return -ENOMEM;
2141 sdp->debugfs_dentry_glocks = debugfs_create_file("glocks",
2142 S_IFREG | S_IRUGO,
2143 sdp->debugfs_dir, sdp,
2144 &gfs2_debug_fops);
2145 if (!sdp->debugfs_dentry_glocks)
Robert Peterson7c52b162007-03-16 10:26:37 +00002146 return -ENOMEM;
2147
2148 return 0;
2149}
2150
2151void gfs2_delete_debugfs_file(struct gfs2_sbd *sdp)
2152{
Robert Peterson5f882092007-04-18 11:41:11 -05002153 if (sdp && sdp->debugfs_dir) {
2154 if (sdp->debugfs_dentry_glocks) {
2155 debugfs_remove(sdp->debugfs_dentry_glocks);
2156 sdp->debugfs_dentry_glocks = NULL;
2157 }
2158 debugfs_remove(sdp->debugfs_dir);
2159 sdp->debugfs_dir = NULL;
2160 }
Robert Peterson7c52b162007-03-16 10:26:37 +00002161}
2162
2163int gfs2_register_debugfs(void)
2164{
2165 gfs2_root = debugfs_create_dir("gfs2", NULL);
2166 return gfs2_root ? 0 : -ENOMEM;
2167}
2168
2169void gfs2_unregister_debugfs(void)
2170{
2171 debugfs_remove(gfs2_root);
Robert Peterson5f882092007-04-18 11:41:11 -05002172 gfs2_root = NULL;
Robert Peterson7c52b162007-03-16 10:26:37 +00002173}