blob: 6a3eeba102f9164f32423e8d58646e6e766dec40 [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>
Robert Peterson04b933f2007-03-23 17:05:15 -050028#include <linux/module.h>
29#include <linux/kallsyms.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000030
31#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050032#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000033#include "glock.h"
34#include "glops.h"
35#include "inode.h"
36#include "lm.h"
37#include "lops.h"
38#include "meta_io.h"
39#include "quota.h"
40#include "super.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050041#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000042
Steven Whitehouse37b2fa62006-09-08 13:35:56 -040043struct gfs2_gl_hash_bucket {
Steven Whitehouseb6397892006-09-12 10:10:01 -040044 struct hlist_head hb_list;
Steven Whitehouse37b2fa62006-09-08 13:35:56 -040045};
46
Robert Peterson7c52b162007-03-16 10:26:37 +000047struct glock_iter {
48 int hash; /* hash bucket index */
49 struct gfs2_sbd *sdp; /* incore superblock */
50 struct gfs2_glock *gl; /* current glock struct */
51 struct hlist_head *hb_list; /* current hash bucket ptr */
52 struct seq_file *seq; /* sequence file for debugfs */
53 char string[512]; /* scratch space */
54};
55
David Teiglandb3b94fa2006-01-16 16:50:04 +000056typedef void (*glock_examiner) (struct gfs2_glock * gl);
57
Adrian Bunk08bc2db2006-04-28 10:59:12 -040058static int gfs2_dump_lockstate(struct gfs2_sbd *sdp);
Robert Peterson04b933f2007-03-23 17:05:15 -050059static int dump_glock(struct glock_iter *gi, struct gfs2_glock *gl);
Steven Whitehouse3b8249f2007-03-16 09:40:31 +000060static void gfs2_glock_xmote_th(struct gfs2_glock *gl, struct gfs2_holder *gh);
Steven Whitehouseb5d32be2007-01-22 12:15:34 -050061static void gfs2_glock_drop_th(struct gfs2_glock *gl);
Steven Whitehouse61be0842007-01-29 11:51:45 +000062static DECLARE_RWSEM(gfs2_umount_flush_sem);
Robert Peterson7c52b162007-03-16 10:26:37 +000063static struct dentry *gfs2_root;
Adrian Bunk08bc2db2006-04-28 10:59:12 -040064
Steven Whitehouseb6397892006-09-12 10:10:01 -040065#define GFS2_GL_HASH_SHIFT 15
Steven Whitehouse087efdd2006-09-09 16:59:11 -040066#define GFS2_GL_HASH_SIZE (1 << GFS2_GL_HASH_SHIFT)
67#define GFS2_GL_HASH_MASK (GFS2_GL_HASH_SIZE - 1)
68
Steven Whitehouse85d1da62006-09-07 14:40:21 -040069static struct gfs2_gl_hash_bucket gl_hash_table[GFS2_GL_HASH_SIZE];
Robert Peterson04b933f2007-03-23 17:05:15 -050070static struct dentry *gfs2_root;
Steven Whitehouse087efdd2006-09-09 16:59:11 -040071
72/*
73 * Despite what you might think, the numbers below are not arbitrary :-)
74 * They are taken from the ipv4 routing hash code, which is well tested
75 * and thus should be nearly optimal. Later on we might tweek the numbers
76 * but for now this should be fine.
77 *
78 * The reason for putting the locks in a separate array from the list heads
79 * is that we can have fewer locks than list heads and save memory. We use
80 * the same hash function for both, but with a different hash mask.
81 */
82#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK) || \
83 defined(CONFIG_PROVE_LOCKING)
84
85#ifdef CONFIG_LOCKDEP
86# define GL_HASH_LOCK_SZ 256
87#else
88# if NR_CPUS >= 32
89# define GL_HASH_LOCK_SZ 4096
90# elif NR_CPUS >= 16
91# define GL_HASH_LOCK_SZ 2048
92# elif NR_CPUS >= 8
93# define GL_HASH_LOCK_SZ 1024
94# elif NR_CPUS >= 4
95# define GL_HASH_LOCK_SZ 512
96# else
97# define GL_HASH_LOCK_SZ 256
98# endif
99#endif
100
101/* We never want more locks than chains */
102#if GFS2_GL_HASH_SIZE < GL_HASH_LOCK_SZ
103# undef GL_HASH_LOCK_SZ
104# define GL_HASH_LOCK_SZ GFS2_GL_HASH_SIZE
105#endif
106
107static rwlock_t gl_hash_locks[GL_HASH_LOCK_SZ];
108
109static inline rwlock_t *gl_lock_addr(unsigned int x)
110{
Steven Whitehouse94610612006-09-09 18:59:27 -0400111 return &gl_hash_locks[x & (GL_HASH_LOCK_SZ-1)];
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400112}
113#else /* not SMP, so no spinlocks required */
Randy Dunlap0ac23062006-11-28 22:29:19 -0800114static inline rwlock_t *gl_lock_addr(unsigned int x)
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400115{
116 return NULL;
117}
118#endif
Steven Whitehouse85d1da62006-09-07 14:40:21 -0400119
David Teiglandb3b94fa2006-01-16 16:50:04 +0000120/**
121 * relaxed_state_ok - is a requested lock compatible with the current lock mode?
122 * @actual: the current state of the lock
123 * @requested: the lock state that was requested by the caller
124 * @flags: the modifier flags passed in by the caller
125 *
126 * Returns: 1 if the locks are compatible, 0 otherwise
127 */
128
129static inline int relaxed_state_ok(unsigned int actual, unsigned requested,
130 int flags)
131{
132 if (actual == requested)
133 return 1;
134
135 if (flags & GL_EXACT)
136 return 0;
137
138 if (actual == LM_ST_EXCLUSIVE && requested == LM_ST_SHARED)
139 return 1;
140
141 if (actual != LM_ST_UNLOCKED && (flags & LM_FLAG_ANY))
142 return 1;
143
144 return 0;
145}
146
147/**
148 * gl_hash() - Turn glock number into hash bucket number
149 * @lock: The glock number
150 *
151 * Returns: The number of the corresponding hash bucket
152 */
153
Steven Whitehouseb8547852006-09-07 13:12:27 -0400154static unsigned int gl_hash(const struct gfs2_sbd *sdp,
155 const struct lm_lockname *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000156{
157 unsigned int h;
158
Steven Whitehousecd915492006-09-04 12:49:07 -0400159 h = jhash(&name->ln_number, sizeof(u64), 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000160 h = jhash(&name->ln_type, sizeof(unsigned int), h);
Steven Whitehouseb8547852006-09-07 13:12:27 -0400161 h = jhash(&sdp, sizeof(struct gfs2_sbd *), h);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000162 h &= GFS2_GL_HASH_MASK;
163
164 return h;
165}
166
167/**
168 * glock_free() - Perform a few checks and then release struct gfs2_glock
169 * @gl: The glock to release
170 *
171 * Also calls lock module to release its internal structure for this glock.
172 *
173 */
174
175static void glock_free(struct gfs2_glock *gl)
176{
177 struct gfs2_sbd *sdp = gl->gl_sbd;
178 struct inode *aspace = gl->gl_aspace;
179
180 gfs2_lm_put_lock(sdp, gl->gl_lock);
181
182 if (aspace)
183 gfs2_aspace_put(aspace);
184
185 kmem_cache_free(gfs2_glock_cachep, gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000186}
187
188/**
189 * gfs2_glock_hold() - increment reference count on glock
190 * @gl: The glock to hold
191 *
192 */
193
194void gfs2_glock_hold(struct gfs2_glock *gl)
195{
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400196 atomic_inc(&gl->gl_ref);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000197}
198
199/**
200 * gfs2_glock_put() - Decrement reference count on glock
201 * @gl: The glock to put
202 *
203 */
204
205int gfs2_glock_put(struct gfs2_glock *gl)
206{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000207 int rv = 0;
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400208 struct gfs2_sbd *sdp = gl->gl_sbd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000209
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400210 write_lock(gl_lock_addr(gl->gl_hash));
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400211 if (atomic_dec_and_test(&gl->gl_ref)) {
Steven Whitehouseb6397892006-09-12 10:10:01 -0400212 hlist_del(&gl->gl_list);
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400213 write_unlock(gl_lock_addr(gl->gl_hash));
Steven Whitehouse190562b2006-04-20 16:57:23 -0400214 BUG_ON(spin_is_locked(&gl->gl_spin));
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400215 gfs2_assert(sdp, gl->gl_state == LM_ST_UNLOCKED);
216 gfs2_assert(sdp, list_empty(&gl->gl_reclaim));
217 gfs2_assert(sdp, list_empty(&gl->gl_holders));
218 gfs2_assert(sdp, list_empty(&gl->gl_waiters1));
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400219 gfs2_assert(sdp, list_empty(&gl->gl_waiters3));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000220 glock_free(gl);
221 rv = 1;
222 goto out;
223 }
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400224 write_unlock(gl_lock_addr(gl->gl_hash));
Steven Whitehousea2242db2006-08-24 17:03:05 -0400225out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000226 return rv;
227}
228
229/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000230 * search_bucket() - Find struct gfs2_glock by lock number
231 * @bucket: the bucket to search
232 * @name: The lock name
233 *
234 * Returns: NULL, or the struct gfs2_glock with the requested number
235 */
236
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400237static struct gfs2_glock *search_bucket(unsigned int hash,
Steven Whitehouse899be4d2006-08-30 12:50:28 -0400238 const struct gfs2_sbd *sdp,
Steven Whitehoused6a53722006-08-30 11:16:23 -0400239 const struct lm_lockname *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000240{
241 struct gfs2_glock *gl;
Steven Whitehouseb6397892006-09-12 10:10:01 -0400242 struct hlist_node *h;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000243
Steven Whitehouseb6397892006-09-12 10:10:01 -0400244 hlist_for_each_entry(gl, h, &gl_hash_table[hash].hb_list, gl_list) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000245 if (!lm_name_equal(&gl->gl_name, name))
246 continue;
Steven Whitehouse899be4d2006-08-30 12:50:28 -0400247 if (gl->gl_sbd != sdp)
248 continue;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000249
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400250 atomic_inc(&gl->gl_ref);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000251
252 return gl;
253 }
254
255 return NULL;
256}
257
258/**
259 * gfs2_glock_find() - Find glock by lock number
260 * @sdp: The GFS2 superblock
261 * @name: The lock name
262 *
263 * Returns: NULL, or the struct gfs2_glock with the requested number
264 */
265
Steven Whitehouse85d1da62006-09-07 14:40:21 -0400266static struct gfs2_glock *gfs2_glock_find(const struct gfs2_sbd *sdp,
Steven Whitehoused6a53722006-08-30 11:16:23 -0400267 const struct lm_lockname *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000268{
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400269 unsigned int hash = gl_hash(sdp, name);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000270 struct gfs2_glock *gl;
271
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400272 read_lock(gl_lock_addr(hash));
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400273 gl = search_bucket(hash, sdp, name);
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400274 read_unlock(gl_lock_addr(hash));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000275
276 return gl;
277}
278
279/**
280 * gfs2_glock_get() - Get a glock, or create one if one doesn't exist
281 * @sdp: The GFS2 superblock
282 * @number: the lock number
283 * @glops: The glock_operations to use
284 * @create: If 0, don't create the glock if it doesn't exist
285 * @glp: the glock is returned here
286 *
287 * This does not lock a glock, just finds/creates structures for one.
288 *
289 * Returns: errno
290 */
291
Steven Whitehousecd915492006-09-04 12:49:07 -0400292int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number,
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400293 const struct gfs2_glock_operations *glops, int create,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000294 struct gfs2_glock **glp)
295{
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400296 struct lm_lockname name = { .ln_number = number, .ln_type = glops->go_type };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000297 struct gfs2_glock *gl, *tmp;
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400298 unsigned int hash = gl_hash(sdp, &name);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000299 int error;
300
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400301 read_lock(gl_lock_addr(hash));
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400302 gl = search_bucket(hash, sdp, &name);
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400303 read_unlock(gl_lock_addr(hash));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000304
305 if (gl || !create) {
306 *glp = gl;
307 return 0;
308 }
309
310 gl = kmem_cache_alloc(gfs2_glock_cachep, GFP_KERNEL);
311 if (!gl)
312 return -ENOMEM;
313
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400314 gl->gl_flags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000315 gl->gl_name = name;
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400316 atomic_set(&gl->gl_ref, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000317 gl->gl_state = LM_ST_UNLOCKED;
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400318 gl->gl_hash = hash;
Robert Peterson04b933f2007-03-23 17:05:15 -0500319 gl->gl_owner_pid = 0;
Steven Whitehouse320dd102006-05-18 16:25:27 -0400320 gl->gl_ip = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000321 gl->gl_ops = glops;
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400322 gl->gl_req_gh = NULL;
323 gl->gl_req_bh = NULL;
324 gl->gl_vn = 0;
325 gl->gl_stamp = jiffies;
326 gl->gl_object = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000327 gl->gl_sbd = sdp;
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400328 gl->gl_aspace = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000329 lops_init_le(&gl->gl_le, &gfs2_glock_lops);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000330
331 /* If this glock protects actual on-disk data or metadata blocks,
332 create a VFS inode to manage the pages/buffers holding them. */
Steven Whitehouse50299962006-09-04 09:49:55 -0400333 if (glops == &gfs2_inode_glops || glops == &gfs2_rgrp_glops) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000334 gl->gl_aspace = gfs2_aspace_get(sdp);
335 if (!gl->gl_aspace) {
336 error = -ENOMEM;
337 goto fail;
338 }
339 }
340
341 error = gfs2_lm_get_lock(sdp, &name, &gl->gl_lock);
342 if (error)
343 goto fail_aspace;
344
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400345 write_lock(gl_lock_addr(hash));
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400346 tmp = search_bucket(hash, sdp, &name);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000347 if (tmp) {
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400348 write_unlock(gl_lock_addr(hash));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000349 glock_free(gl);
350 gl = tmp;
351 } else {
Steven Whitehouseb6397892006-09-12 10:10:01 -0400352 hlist_add_head(&gl->gl_list, &gl_hash_table[hash].hb_list);
Steven Whitehouse087efdd2006-09-09 16:59:11 -0400353 write_unlock(gl_lock_addr(hash));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000354 }
355
356 *glp = gl;
357
358 return 0;
359
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400360fail_aspace:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000361 if (gl->gl_aspace)
362 gfs2_aspace_put(gl->gl_aspace);
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400363fail:
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400364 kmem_cache_free(gfs2_glock_cachep, gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000365 return error;
366}
367
368/**
369 * gfs2_holder_init - initialize a struct gfs2_holder in the default way
370 * @gl: the glock
371 * @state: the state we're requesting
372 * @flags: the modifier flags
373 * @gh: the holder structure
374 *
375 */
376
Steven Whitehouse190562b2006-04-20 16:57:23 -0400377void gfs2_holder_init(struct gfs2_glock *gl, unsigned int state, unsigned flags,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000378 struct gfs2_holder *gh)
379{
380 INIT_LIST_HEAD(&gh->gh_list);
381 gh->gh_gl = gl;
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500382 gh->gh_ip = (unsigned long)__builtin_return_address(0);
Robert Peterson04b933f2007-03-23 17:05:15 -0500383 gh->gh_owner_pid = current->pid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000384 gh->gh_state = state;
385 gh->gh_flags = flags;
386 gh->gh_error = 0;
387 gh->gh_iflags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000388 gfs2_glock_hold(gl);
389}
390
391/**
392 * gfs2_holder_reinit - reinitialize a struct gfs2_holder so we can requeue it
393 * @state: the state we're requesting
394 * @flags: the modifier flags
395 * @gh: the holder structure
396 *
397 * Don't mess with the glock.
398 *
399 */
400
Steven Whitehouse190562b2006-04-20 16:57:23 -0400401void gfs2_holder_reinit(unsigned int state, unsigned flags, struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000402{
403 gh->gh_state = state;
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400404 gh->gh_flags = flags;
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000405 gh->gh_iflags = 0;
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500406 gh->gh_ip = (unsigned long)__builtin_return_address(0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000407}
408
409/**
410 * gfs2_holder_uninit - uninitialize a holder structure (drop glock reference)
411 * @gh: the holder structure
412 *
413 */
414
415void gfs2_holder_uninit(struct gfs2_holder *gh)
416{
417 gfs2_glock_put(gh->gh_gl);
418 gh->gh_gl = NULL;
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500419 gh->gh_ip = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000420}
421
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000422static void gfs2_holder_wake(struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000423{
Steven Whitehousefee852e2007-01-17 15:33:23 +0000424 clear_bit(HIF_WAIT, &gh->gh_iflags);
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100425 smp_mb__after_clear_bit();
Steven Whitehousefee852e2007-01-17 15:33:23 +0000426 wake_up_bit(&gh->gh_iflags, HIF_WAIT);
427}
428
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100429static int just_schedule(void *word)
Steven Whitehousefee852e2007-01-17 15:33:23 +0000430{
431 schedule();
432 return 0;
433}
434
435static void wait_on_holder(struct gfs2_holder *gh)
436{
437 might_sleep();
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100438 wait_on_bit(&gh->gh_iflags, HIF_WAIT, just_schedule, TASK_UNINTERRUPTIBLE);
439}
440
441static void gfs2_demote_wake(struct gfs2_glock *gl)
442{
443 clear_bit(GLF_DEMOTE, &gl->gl_flags);
444 smp_mb__after_clear_bit();
445 wake_up_bit(&gl->gl_flags, GLF_DEMOTE);
446}
447
448static void wait_on_demote(struct gfs2_glock *gl)
449{
450 might_sleep();
451 wait_on_bit(&gl->gl_flags, GLF_DEMOTE, just_schedule, TASK_UNINTERRUPTIBLE);
Steven Whitehousefee852e2007-01-17 15:33:23 +0000452}
453
David Teiglandb3b94fa2006-01-16 16:50:04 +0000454/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000455 * rq_mutex - process a mutex request in the queue
456 * @gh: the glock holder
457 *
458 * Returns: 1 if the queue is blocked
459 */
460
461static int rq_mutex(struct gfs2_holder *gh)
462{
463 struct gfs2_glock *gl = gh->gh_gl;
464
465 list_del_init(&gh->gh_list);
466 /* gh->gh_error never examined. */
467 set_bit(GLF_LOCK, &gl->gl_flags);
Steven Whitehoused043e192007-01-23 16:56:36 -0500468 clear_bit(HIF_WAIT, &gh->gh_iflags);
Steven Whitehousefee852e2007-01-17 15:33:23 +0000469 smp_mb();
470 wake_up_bit(&gh->gh_iflags, HIF_WAIT);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000471
472 return 1;
473}
474
475/**
476 * rq_promote - process a promote request in the queue
477 * @gh: the glock holder
478 *
479 * Acquire a new inter-node lock, or change a lock state to more restrictive.
480 *
481 * Returns: 1 if the queue is blocked
482 */
483
484static int rq_promote(struct gfs2_holder *gh)
485{
486 struct gfs2_glock *gl = gh->gh_gl;
487 struct gfs2_sbd *sdp = gl->gl_sbd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000488
489 if (!relaxed_state_ok(gl->gl_state, gh->gh_state, gh->gh_flags)) {
490 if (list_empty(&gl->gl_holders)) {
491 gl->gl_req_gh = gh;
492 set_bit(GLF_LOCK, &gl->gl_flags);
493 spin_unlock(&gl->gl_spin);
494
495 if (atomic_read(&sdp->sd_reclaim_count) >
496 gfs2_tune_get(sdp, gt_reclaim_limit) &&
497 !(gh->gh_flags & LM_FLAG_PRIORITY)) {
498 gfs2_reclaim_glock(sdp);
499 gfs2_reclaim_glock(sdp);
500 }
501
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000502 gfs2_glock_xmote_th(gh->gh_gl, gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000503 spin_lock(&gl->gl_spin);
504 }
505 return 1;
506 }
507
508 if (list_empty(&gl->gl_holders)) {
509 set_bit(HIF_FIRST, &gh->gh_iflags);
510 set_bit(GLF_LOCK, &gl->gl_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000511 } else {
512 struct gfs2_holder *next_gh;
Steven Whitehouse1c0f4872007-01-22 12:10:39 -0500513 if (gh->gh_state == LM_ST_EXCLUSIVE)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000514 return 1;
515 next_gh = list_entry(gl->gl_holders.next, struct gfs2_holder,
516 gh_list);
Steven Whitehouse1c0f4872007-01-22 12:10:39 -0500517 if (next_gh->gh_state == LM_ST_EXCLUSIVE)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000518 return 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000519 }
520
521 list_move_tail(&gh->gh_list, &gl->gl_holders);
522 gh->gh_error = 0;
523 set_bit(HIF_HOLDER, &gh->gh_iflags);
524
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000525 gfs2_holder_wake(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000526
527 return 0;
528}
529
530/**
531 * rq_demote - process a demote request in the queue
532 * @gh: the glock holder
533 *
534 * Returns: 1 if the queue is blocked
535 */
536
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000537static int rq_demote(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000538{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000539 if (!list_empty(&gl->gl_holders))
540 return 1;
541
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000542 if (gl->gl_state == gl->gl_demote_state ||
543 gl->gl_state == LM_ST_UNLOCKED) {
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100544 gfs2_demote_wake(gl);
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000545 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000546 }
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000547 set_bit(GLF_LOCK, &gl->gl_flags);
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000548 if (gl->gl_demote_state == LM_ST_UNLOCKED ||
Steven Whitehouse87124e52007-07-23 09:54:36 +0100549 gl->gl_state != LM_ST_EXCLUSIVE) {
550 spin_unlock(&gl->gl_spin);
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000551 gfs2_glock_drop_th(gl);
Steven Whitehouse87124e52007-07-23 09:54:36 +0100552 } else {
553 spin_unlock(&gl->gl_spin);
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000554 gfs2_glock_xmote_th(gl, NULL);
Steven Whitehouse87124e52007-07-23 09:54:36 +0100555 }
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000556 spin_lock(&gl->gl_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000557
558 return 0;
559}
560
561/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000562 * run_queue - process holder structures on a glock
563 * @gl: the glock
564 *
565 */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000566static void run_queue(struct gfs2_glock *gl)
567{
568 struct gfs2_holder *gh;
569 int blocked = 1;
570
571 for (;;) {
572 if (test_bit(GLF_LOCK, &gl->gl_flags))
573 break;
574
575 if (!list_empty(&gl->gl_waiters1)) {
576 gh = list_entry(gl->gl_waiters1.next,
577 struct gfs2_holder, gh_list);
578
579 if (test_bit(HIF_MUTEX, &gh->gh_iflags))
580 blocked = rq_mutex(gh);
581 else
582 gfs2_assert_warn(gl->gl_sbd, 0);
583
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000584 } else if (test_bit(GLF_DEMOTE, &gl->gl_flags)) {
585 blocked = rq_demote(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000586 } else if (!list_empty(&gl->gl_waiters3)) {
587 gh = list_entry(gl->gl_waiters3.next,
588 struct gfs2_holder, gh_list);
589
590 if (test_bit(HIF_PROMOTE, &gh->gh_iflags))
591 blocked = rq_promote(gh);
592 else
593 gfs2_assert_warn(gl->gl_sbd, 0);
594
595 } else
596 break;
597
598 if (blocked)
599 break;
600 }
601}
602
603/**
604 * gfs2_glmutex_lock - acquire a local lock on a glock
605 * @gl: the glock
606 *
607 * Gives caller exclusive access to manipulate a glock structure.
608 */
609
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400610static void gfs2_glmutex_lock(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000611{
612 struct gfs2_holder gh;
613
614 gfs2_holder_init(gl, 0, 0, &gh);
615 set_bit(HIF_MUTEX, &gh.gh_iflags);
Steven Whitehousefee852e2007-01-17 15:33:23 +0000616 if (test_and_set_bit(HIF_WAIT, &gh.gh_iflags))
617 BUG();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000618
619 spin_lock(&gl->gl_spin);
Steven Whitehouse85d1da62006-09-07 14:40:21 -0400620 if (test_and_set_bit(GLF_LOCK, &gl->gl_flags)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000621 list_add_tail(&gh.gh_list, &gl->gl_waiters1);
Steven Whitehouse85d1da62006-09-07 14:40:21 -0400622 } else {
Robert Peterson04b933f2007-03-23 17:05:15 -0500623 gl->gl_owner_pid = current->pid;
Steven Whitehouse320dd102006-05-18 16:25:27 -0400624 gl->gl_ip = (unsigned long)__builtin_return_address(0);
Steven Whitehousefee852e2007-01-17 15:33:23 +0000625 clear_bit(HIF_WAIT, &gh.gh_iflags);
626 smp_mb();
627 wake_up_bit(&gh.gh_iflags, HIF_WAIT);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400628 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000629 spin_unlock(&gl->gl_spin);
630
Steven Whitehousefee852e2007-01-17 15:33:23 +0000631 wait_on_holder(&gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000632 gfs2_holder_uninit(&gh);
633}
634
635/**
636 * gfs2_glmutex_trylock - try to acquire a local lock on a glock
637 * @gl: the glock
638 *
639 * Returns: 1 if the glock is acquired
640 */
641
Adrian Bunk08bc2db2006-04-28 10:59:12 -0400642static int gfs2_glmutex_trylock(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000643{
644 int acquired = 1;
645
646 spin_lock(&gl->gl_spin);
Steven Whitehouse85d1da62006-09-07 14:40:21 -0400647 if (test_and_set_bit(GLF_LOCK, &gl->gl_flags)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000648 acquired = 0;
Steven Whitehouse85d1da62006-09-07 14:40:21 -0400649 } else {
Robert Peterson04b933f2007-03-23 17:05:15 -0500650 gl->gl_owner_pid = current->pid;
Steven Whitehouse320dd102006-05-18 16:25:27 -0400651 gl->gl_ip = (unsigned long)__builtin_return_address(0);
652 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000653 spin_unlock(&gl->gl_spin);
654
655 return acquired;
656}
657
658/**
659 * gfs2_glmutex_unlock - release a local lock on a glock
660 * @gl: the glock
661 *
662 */
663
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400664static void gfs2_glmutex_unlock(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000665{
666 spin_lock(&gl->gl_spin);
667 clear_bit(GLF_LOCK, &gl->gl_flags);
Robert Peterson04b933f2007-03-23 17:05:15 -0500668 gl->gl_owner_pid = 0;
Steven Whitehouse320dd102006-05-18 16:25:27 -0400669 gl->gl_ip = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000670 run_queue(gl);
Steven Whitehouse190562b2006-04-20 16:57:23 -0400671 BUG_ON(!spin_is_locked(&gl->gl_spin));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000672 spin_unlock(&gl->gl_spin);
673}
674
675/**
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000676 * handle_callback - process a demote request
David Teiglandb3b94fa2006-01-16 16:50:04 +0000677 * @gl: the glock
678 * @state: the state the caller wants us to change to
679 *
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000680 * There are only two requests that we are going to see in actual
681 * practise: LM_ST_SHARED and LM_ST_UNLOCKED
David Teiglandb3b94fa2006-01-16 16:50:04 +0000682 */
683
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100684static void handle_callback(struct gfs2_glock *gl, unsigned int state, int remote)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000685{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000686 spin_lock(&gl->gl_spin);
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000687 if (test_and_set_bit(GLF_DEMOTE, &gl->gl_flags) == 0) {
688 gl->gl_demote_state = state;
689 gl->gl_demote_time = jiffies;
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100690 if (remote && gl->gl_ops->go_type == LM_TYPE_IOPEN &&
691 gl->gl_object) {
692 struct inode *inode = igrab(gl->gl_object);
693 spin_unlock(&gl->gl_spin);
694 if (inode) {
695 d_prune_aliases(inode);
696 iput(inode);
697 }
698 return;
699 }
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000700 } else if (gl->gl_demote_state != LM_ST_UNLOCKED) {
701 gl->gl_demote_state = state;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000702 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000703 spin_unlock(&gl->gl_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000704}
705
706/**
707 * state_change - record that the glock is now in a different state
708 * @gl: the glock
709 * @new_state the new state
710 *
711 */
712
713static void state_change(struct gfs2_glock *gl, unsigned int new_state)
714{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000715 int held1, held2;
716
717 held1 = (gl->gl_state != LM_ST_UNLOCKED);
718 held2 = (new_state != LM_ST_UNLOCKED);
719
720 if (held1 != held2) {
David Teigland6a6b3d02006-02-23 10:11:47 +0000721 if (held2)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000722 gfs2_glock_hold(gl);
David Teigland6a6b3d02006-02-23 10:11:47 +0000723 else
David Teiglandb3b94fa2006-01-16 16:50:04 +0000724 gfs2_glock_put(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000725 }
726
727 gl->gl_state = new_state;
728}
729
730/**
731 * xmote_bh - Called after the lock module is done acquiring a lock
732 * @gl: The glock in question
733 * @ret: the int returned from the lock module
734 *
735 */
736
737static void xmote_bh(struct gfs2_glock *gl, unsigned int ret)
738{
739 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400740 const struct gfs2_glock_operations *glops = gl->gl_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000741 struct gfs2_holder *gh = gl->gl_req_gh;
742 int prev_state = gl->gl_state;
743 int op_done = 1;
744
745 gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
Steven Whitehouse12132932007-01-22 13:09:04 -0500746 gfs2_assert_warn(sdp, list_empty(&gl->gl_holders));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000747 gfs2_assert_warn(sdp, !(ret & LM_OUT_ASYNC));
748
749 state_change(gl, ret & LM_OUT_ST_MASK);
750
751 if (prev_state != LM_ST_UNLOCKED && !(ret & LM_OUT_CACHEABLE)) {
752 if (glops->go_inval)
Steven Whitehouse1a14d3a2006-11-20 10:37:45 -0500753 glops->go_inval(gl, DIO_METADATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000754 } else if (gl->gl_state == LM_ST_DEFERRED) {
755 /* We might not want to do this here.
756 Look at moving to the inode glops. */
757 if (glops->go_inval)
Steven Whitehouse1a14d3a2006-11-20 10:37:45 -0500758 glops->go_inval(gl, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000759 }
760
761 /* Deal with each possible exit condition */
762
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000763 if (!gh) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000764 gl->gl_stamp = jiffies;
Steven Whitehouse87124e52007-07-23 09:54:36 +0100765 if (ret & LM_OUT_CANCELED) {
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000766 op_done = 0;
Steven Whitehouse87124e52007-07-23 09:54:36 +0100767 } else {
768 spin_lock(&gl->gl_spin);
769 if (gl->gl_state != gl->gl_demote_state) {
770 gl->gl_req_bh = NULL;
771 spin_unlock(&gl->gl_spin);
772 gfs2_glock_drop_th(gl);
773 gfs2_glock_put(gl);
774 return;
775 }
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100776 gfs2_demote_wake(gl);
Steven Whitehouse87124e52007-07-23 09:54:36 +0100777 spin_unlock(&gl->gl_spin);
778 }
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000779 } else {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000780 spin_lock(&gl->gl_spin);
781 list_del_init(&gh->gh_list);
782 gh->gh_error = -EIO;
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000783 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
784 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000785 gh->gh_error = GLR_CANCELED;
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000786 if (ret & LM_OUT_CANCELED)
787 goto out;
788 if (relaxed_state_ok(gl->gl_state, gh->gh_state, gh->gh_flags)) {
789 list_add_tail(&gh->gh_list, &gl->gl_holders);
790 gh->gh_error = 0;
791 set_bit(HIF_HOLDER, &gh->gh_iflags);
792 set_bit(HIF_FIRST, &gh->gh_iflags);
793 op_done = 0;
794 goto out;
795 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000796 gh->gh_error = GLR_TRYFAILED;
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000797 if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))
798 goto out;
799 gh->gh_error = -EINVAL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000800 if (gfs2_assert_withdraw(sdp, 0) == -1)
801 fs_err(sdp, "ret = 0x%.8X\n", ret);
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000802out:
803 spin_unlock(&gl->gl_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000804 }
805
806 if (glops->go_xmote_bh)
807 glops->go_xmote_bh(gl);
808
809 if (op_done) {
810 spin_lock(&gl->gl_spin);
811 gl->gl_req_gh = NULL;
812 gl->gl_req_bh = NULL;
813 clear_bit(GLF_LOCK, &gl->gl_flags);
814 run_queue(gl);
815 spin_unlock(&gl->gl_spin);
816 }
817
818 gfs2_glock_put(gl);
819
Steven Whitehousefee852e2007-01-17 15:33:23 +0000820 if (gh)
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000821 gfs2_holder_wake(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000822}
823
824/**
825 * gfs2_glock_xmote_th - Call into the lock module to acquire or change a glock
826 * @gl: The glock in question
827 * @state: the requested state
828 * @flags: modifier flags to the lock call
829 *
830 */
831
Steven Whitehouse87124e52007-07-23 09:54:36 +0100832static void gfs2_glock_xmote_th(struct gfs2_glock *gl, struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000833{
834 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000835 int flags = gh ? gh->gh_flags : 0;
836 unsigned state = gh ? gh->gh_state : gl->gl_demote_state;
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400837 const struct gfs2_glock_operations *glops = gl->gl_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000838 int lck_flags = flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB |
839 LM_FLAG_NOEXP | LM_FLAG_ANY |
840 LM_FLAG_PRIORITY);
841 unsigned int lck_ret;
842
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500843 if (glops->go_xmote_th)
844 glops->go_xmote_th(gl);
845
David Teiglandb3b94fa2006-01-16 16:50:04 +0000846 gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
Steven Whitehouse12132932007-01-22 13:09:04 -0500847 gfs2_assert_warn(sdp, list_empty(&gl->gl_holders));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000848 gfs2_assert_warn(sdp, state != LM_ST_UNLOCKED);
849 gfs2_assert_warn(sdp, state != gl->gl_state);
850
David Teiglandb3b94fa2006-01-16 16:50:04 +0000851 gfs2_glock_hold(gl);
852 gl->gl_req_bh = xmote_bh;
853
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400854 lck_ret = gfs2_lm_lock(sdp, gl->gl_lock, gl->gl_state, state, lck_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000855
856 if (gfs2_assert_withdraw(sdp, !(lck_ret & LM_OUT_ERROR)))
857 return;
858
859 if (lck_ret & LM_OUT_ASYNC)
860 gfs2_assert_warn(sdp, lck_ret == LM_OUT_ASYNC);
861 else
862 xmote_bh(gl, lck_ret);
863}
864
865/**
866 * drop_bh - Called after a lock module unlock completes
867 * @gl: the glock
868 * @ret: the return status
869 *
870 * Doesn't wake up the process waiting on the struct gfs2_holder (if any)
871 * Doesn't drop the reference on the glock the top half took out
872 *
873 */
874
875static void drop_bh(struct gfs2_glock *gl, unsigned int ret)
876{
877 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400878 const struct gfs2_glock_operations *glops = gl->gl_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000879 struct gfs2_holder *gh = gl->gl_req_gh;
880
David Teiglandb3b94fa2006-01-16 16:50:04 +0000881 gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
Steven Whitehouse12132932007-01-22 13:09:04 -0500882 gfs2_assert_warn(sdp, list_empty(&gl->gl_holders));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000883 gfs2_assert_warn(sdp, !ret);
884
885 state_change(gl, LM_ST_UNLOCKED);
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100886 gfs2_demote_wake(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000887
888 if (glops->go_inval)
Steven Whitehouse1a14d3a2006-11-20 10:37:45 -0500889 glops->go_inval(gl, DIO_METADATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000890
891 if (gh) {
892 spin_lock(&gl->gl_spin);
893 list_del_init(&gh->gh_list);
894 gh->gh_error = 0;
895 spin_unlock(&gl->gl_spin);
896 }
897
David Teiglandb3b94fa2006-01-16 16:50:04 +0000898 spin_lock(&gl->gl_spin);
899 gl->gl_req_gh = NULL;
900 gl->gl_req_bh = NULL;
901 clear_bit(GLF_LOCK, &gl->gl_flags);
902 run_queue(gl);
903 spin_unlock(&gl->gl_spin);
904
905 gfs2_glock_put(gl);
906
Steven Whitehousefee852e2007-01-17 15:33:23 +0000907 if (gh)
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000908 gfs2_holder_wake(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000909}
910
911/**
912 * gfs2_glock_drop_th - call into the lock module to unlock a lock
913 * @gl: the glock
914 *
915 */
916
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500917static void gfs2_glock_drop_th(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000918{
919 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400920 const struct gfs2_glock_operations *glops = gl->gl_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000921 unsigned int ret;
922
Steven Whitehouseb5d32be2007-01-22 12:15:34 -0500923 if (glops->go_drop_th)
924 glops->go_drop_th(gl);
925
David Teiglandb3b94fa2006-01-16 16:50:04 +0000926 gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
Steven Whitehouse12132932007-01-22 13:09:04 -0500927 gfs2_assert_warn(sdp, list_empty(&gl->gl_holders));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000928 gfs2_assert_warn(sdp, gl->gl_state != LM_ST_UNLOCKED);
929
David Teiglandb3b94fa2006-01-16 16:50:04 +0000930 gfs2_glock_hold(gl);
931 gl->gl_req_bh = drop_bh;
932
David Teiglandb3b94fa2006-01-16 16:50:04 +0000933 ret = gfs2_lm_unlock(sdp, gl->gl_lock, gl->gl_state);
934
935 if (gfs2_assert_withdraw(sdp, !(ret & LM_OUT_ERROR)))
936 return;
937
938 if (!ret)
939 drop_bh(gl, ret);
940 else
941 gfs2_assert_warn(sdp, ret == LM_OUT_ASYNC);
942}
943
944/**
945 * do_cancels - cancel requests for locks stuck waiting on an expire flag
946 * @gh: the LM_FLAG_PRIORITY holder waiting to acquire the lock
947 *
948 * Don't cancel GL_NOCANCEL requests.
949 */
950
951static void do_cancels(struct gfs2_holder *gh)
952{
953 struct gfs2_glock *gl = gh->gh_gl;
954
955 spin_lock(&gl->gl_spin);
956
957 while (gl->gl_req_gh != gh &&
958 !test_bit(HIF_HOLDER, &gh->gh_iflags) &&
959 !list_empty(&gh->gh_list)) {
Steven Whitehouse50299962006-09-04 09:49:55 -0400960 if (gl->gl_req_bh && !(gl->gl_req_gh &&
961 (gl->gl_req_gh->gh_flags & GL_NOCANCEL))) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000962 spin_unlock(&gl->gl_spin);
963 gfs2_lm_cancel(gl->gl_sbd, gl->gl_lock);
964 msleep(100);
965 spin_lock(&gl->gl_spin);
966 } else {
967 spin_unlock(&gl->gl_spin);
968 msleep(100);
969 spin_lock(&gl->gl_spin);
970 }
971 }
972
973 spin_unlock(&gl->gl_spin);
974}
975
976/**
977 * glock_wait_internal - wait on a glock acquisition
978 * @gh: the glock holder
979 *
980 * Returns: 0 on success
981 */
982
983static int glock_wait_internal(struct gfs2_holder *gh)
984{
985 struct gfs2_glock *gl = gh->gh_gl;
986 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400987 const struct gfs2_glock_operations *glops = gl->gl_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000988
989 if (test_bit(HIF_ABORTED, &gh->gh_iflags))
990 return -EIO;
991
992 if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) {
993 spin_lock(&gl->gl_spin);
994 if (gl->gl_req_gh != gh &&
995 !test_bit(HIF_HOLDER, &gh->gh_iflags) &&
996 !list_empty(&gh->gh_list)) {
997 list_del_init(&gh->gh_list);
998 gh->gh_error = GLR_TRYFAILED;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000999 run_queue(gl);
1000 spin_unlock(&gl->gl_spin);
1001 return gh->gh_error;
1002 }
1003 spin_unlock(&gl->gl_spin);
1004 }
1005
1006 if (gh->gh_flags & LM_FLAG_PRIORITY)
1007 do_cancels(gh);
1008
Steven Whitehousefee852e2007-01-17 15:33:23 +00001009 wait_on_holder(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001010 if (gh->gh_error)
1011 return gh->gh_error;
1012
1013 gfs2_assert_withdraw(sdp, test_bit(HIF_HOLDER, &gh->gh_iflags));
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001014 gfs2_assert_withdraw(sdp, relaxed_state_ok(gl->gl_state, gh->gh_state,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001015 gh->gh_flags));
1016
1017 if (test_bit(HIF_FIRST, &gh->gh_iflags)) {
1018 gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
1019
1020 if (glops->go_lock) {
1021 gh->gh_error = glops->go_lock(gh);
1022 if (gh->gh_error) {
1023 spin_lock(&gl->gl_spin);
1024 list_del_init(&gh->gh_list);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001025 spin_unlock(&gl->gl_spin);
1026 }
1027 }
1028
1029 spin_lock(&gl->gl_spin);
1030 gl->gl_req_gh = NULL;
1031 gl->gl_req_bh = NULL;
1032 clear_bit(GLF_LOCK, &gl->gl_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001033 run_queue(gl);
1034 spin_unlock(&gl->gl_spin);
1035 }
1036
1037 return gh->gh_error;
1038}
1039
1040static inline struct gfs2_holder *
Robert Peterson04b933f2007-03-23 17:05:15 -05001041find_holder_by_owner(struct list_head *head, pid_t pid)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001042{
1043 struct gfs2_holder *gh;
1044
1045 list_for_each_entry(gh, head, gh_list) {
Robert Peterson04b933f2007-03-23 17:05:15 -05001046 if (gh->gh_owner_pid == pid)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001047 return gh;
1048 }
1049
1050 return NULL;
1051}
1052
Robert Peterson7c52b162007-03-16 10:26:37 +00001053static void print_dbg(struct glock_iter *gi, const char *fmt, ...)
1054{
1055 va_list args;
1056
1057 va_start(args, fmt);
1058 if (gi) {
1059 vsprintf(gi->string, fmt, args);
1060 seq_printf(gi->seq, gi->string);
1061 }
1062 else
1063 vprintk(fmt, args);
1064 va_end(args);
1065}
1066
David Teiglandb3b94fa2006-01-16 16:50:04 +00001067/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001068 * add_to_queue - Add a holder to the wait queue (but look for recursion)
1069 * @gh: the holder structure to add
1070 *
1071 */
1072
1073static void add_to_queue(struct gfs2_holder *gh)
1074{
1075 struct gfs2_glock *gl = gh->gh_gl;
1076 struct gfs2_holder *existing;
1077
Robert Peterson04b933f2007-03-23 17:05:15 -05001078 BUG_ON(!gh->gh_owner_pid);
Steven Whitehousefee852e2007-01-17 15:33:23 +00001079 if (test_and_set_bit(HIF_WAIT, &gh->gh_iflags))
1080 BUG();
Steven Whitehouse190562b2006-04-20 16:57:23 -04001081
Robert Peterson04b933f2007-03-23 17:05:15 -05001082 existing = find_holder_by_owner(&gl->gl_holders, gh->gh_owner_pid);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001083 if (existing) {
Steven Whitehouse5965b1f2006-04-26 13:21:55 -04001084 print_symbol(KERN_WARNING "original: %s\n", existing->gh_ip);
Robert Peterson04b933f2007-03-23 17:05:15 -05001085 printk(KERN_INFO "pid : %d\n", existing->gh_owner_pid);
Steven Whitehouse907b9bc2006-09-25 09:26:04 -04001086 printk(KERN_INFO "lock type : %d lock state : %d\n",
Abhijith Das86384602006-08-25 11:13:37 -05001087 existing->gh_gl->gl_name.ln_type, existing->gh_gl->gl_state);
Steven Whitehouse5965b1f2006-04-26 13:21:55 -04001088 print_symbol(KERN_WARNING "new: %s\n", gh->gh_ip);
Robert Peterson04b933f2007-03-23 17:05:15 -05001089 printk(KERN_INFO "pid : %d\n", gh->gh_owner_pid);
Steven Whitehouse907b9bc2006-09-25 09:26:04 -04001090 printk(KERN_INFO "lock type : %d lock state : %d\n",
Abhijith Das86384602006-08-25 11:13:37 -05001091 gl->gl_name.ln_type, gl->gl_state);
Steven Whitehouse5965b1f2006-04-26 13:21:55 -04001092 BUG();
David Teiglandb3b94fa2006-01-16 16:50:04 +00001093 }
1094
Robert Peterson04b933f2007-03-23 17:05:15 -05001095 existing = find_holder_by_owner(&gl->gl_waiters3, gh->gh_owner_pid);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001096 if (existing) {
Steven Whitehouse5965b1f2006-04-26 13:21:55 -04001097 print_symbol(KERN_WARNING "original: %s\n", existing->gh_ip);
1098 print_symbol(KERN_WARNING "new: %s\n", gh->gh_ip);
1099 BUG();
David Teiglandb3b94fa2006-01-16 16:50:04 +00001100 }
1101
David Teiglandb3b94fa2006-01-16 16:50:04 +00001102 if (gh->gh_flags & LM_FLAG_PRIORITY)
1103 list_add(&gh->gh_list, &gl->gl_waiters3);
1104 else
Steven Whitehouse907b9bc2006-09-25 09:26:04 -04001105 list_add_tail(&gh->gh_list, &gl->gl_waiters3);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001106}
1107
1108/**
1109 * gfs2_glock_nq - enqueue a struct gfs2_holder onto a glock (acquire a glock)
1110 * @gh: the holder structure
1111 *
1112 * if (gh->gh_flags & GL_ASYNC), this never returns an error
1113 *
1114 * Returns: 0, GLR_TRYFAILED, or errno on failure
1115 */
1116
1117int gfs2_glock_nq(struct gfs2_holder *gh)
1118{
1119 struct gfs2_glock *gl = gh->gh_gl;
1120 struct gfs2_sbd *sdp = gl->gl_sbd;
1121 int error = 0;
1122
Steven Whitehouse320dd102006-05-18 16:25:27 -04001123restart:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001124 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags))) {
1125 set_bit(HIF_ABORTED, &gh->gh_iflags);
1126 return -EIO;
1127 }
1128
1129 set_bit(HIF_PROMOTE, &gh->gh_iflags);
1130
1131 spin_lock(&gl->gl_spin);
1132 add_to_queue(gh);
1133 run_queue(gl);
1134 spin_unlock(&gl->gl_spin);
1135
1136 if (!(gh->gh_flags & GL_ASYNC)) {
1137 error = glock_wait_internal(gh);
1138 if (error == GLR_CANCELED) {
Steven Whitehouse190562b2006-04-20 16:57:23 -04001139 msleep(100);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001140 goto restart;
1141 }
1142 }
1143
David Teiglandb3b94fa2006-01-16 16:50:04 +00001144 return error;
1145}
1146
1147/**
1148 * gfs2_glock_poll - poll to see if an async request has been completed
1149 * @gh: the holder
1150 *
1151 * Returns: 1 if the request is ready to be gfs2_glock_wait()ed on
1152 */
1153
1154int gfs2_glock_poll(struct gfs2_holder *gh)
1155{
1156 struct gfs2_glock *gl = gh->gh_gl;
1157 int ready = 0;
1158
1159 spin_lock(&gl->gl_spin);
1160
1161 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
1162 ready = 1;
1163 else if (list_empty(&gh->gh_list)) {
1164 if (gh->gh_error == GLR_CANCELED) {
1165 spin_unlock(&gl->gl_spin);
Steven Whitehouse190562b2006-04-20 16:57:23 -04001166 msleep(100);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001167 if (gfs2_glock_nq(gh))
1168 return 1;
1169 return 0;
1170 } else
1171 ready = 1;
1172 }
1173
1174 spin_unlock(&gl->gl_spin);
1175
1176 return ready;
1177}
1178
1179/**
1180 * gfs2_glock_wait - wait for a lock acquisition that ended in a GLR_ASYNC
1181 * @gh: the holder structure
1182 *
1183 * Returns: 0, GLR_TRYFAILED, or errno on failure
1184 */
1185
1186int gfs2_glock_wait(struct gfs2_holder *gh)
1187{
1188 int error;
1189
1190 error = glock_wait_internal(gh);
1191 if (error == GLR_CANCELED) {
Steven Whitehouse190562b2006-04-20 16:57:23 -04001192 msleep(100);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001193 gh->gh_flags &= ~GL_ASYNC;
1194 error = gfs2_glock_nq(gh);
1195 }
1196
1197 return error;
1198}
1199
1200/**
1201 * gfs2_glock_dq - dequeue a struct gfs2_holder from a glock (release a glock)
1202 * @gh: the glock holder
1203 *
1204 */
1205
1206void gfs2_glock_dq(struct gfs2_holder *gh)
1207{
1208 struct gfs2_glock *gl = gh->gh_gl;
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001209 const struct gfs2_glock_operations *glops = gl->gl_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001210
David Teiglandb3b94fa2006-01-16 16:50:04 +00001211 if (gh->gh_flags & GL_NOCACHE)
Abhijith Dasd93cfa92007-06-11 08:22:32 +01001212 handle_callback(gl, LM_ST_UNLOCKED, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001213
1214 gfs2_glmutex_lock(gl);
1215
1216 spin_lock(&gl->gl_spin);
1217 list_del_init(&gh->gh_list);
1218
1219 if (list_empty(&gl->gl_holders)) {
1220 spin_unlock(&gl->gl_spin);
1221
1222 if (glops->go_unlock)
1223 glops->go_unlock(gh);
1224
David Teiglandb3b94fa2006-01-16 16:50:04 +00001225 spin_lock(&gl->gl_spin);
Steven Whitehouse3b8249f2007-03-16 09:40:31 +00001226 gl->gl_stamp = jiffies;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001227 }
1228
1229 clear_bit(GLF_LOCK, &gl->gl_flags);
1230 run_queue(gl);
1231 spin_unlock(&gl->gl_spin);
1232}
1233
Abhijith Dasd93cfa92007-06-11 08:22:32 +01001234void gfs2_glock_dq_wait(struct gfs2_holder *gh)
1235{
1236 struct gfs2_glock *gl = gh->gh_gl;
1237 gfs2_glock_dq(gh);
1238 wait_on_demote(gl);
1239}
1240
David Teiglandb3b94fa2006-01-16 16:50:04 +00001241/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001242 * gfs2_glock_dq_uninit - dequeue a holder from a glock and initialize it
1243 * @gh: the holder structure
1244 *
1245 */
1246
1247void gfs2_glock_dq_uninit(struct gfs2_holder *gh)
1248{
1249 gfs2_glock_dq(gh);
1250 gfs2_holder_uninit(gh);
1251}
1252
1253/**
1254 * gfs2_glock_nq_num - acquire a glock based on lock number
1255 * @sdp: the filesystem
1256 * @number: the lock number
1257 * @glops: the glock operations for the type of glock
1258 * @state: the state to acquire the glock in
1259 * @flags: modifier flags for the aquisition
1260 * @gh: the struct gfs2_holder
1261 *
1262 * Returns: errno
1263 */
1264
Steven Whitehousecd915492006-09-04 12:49:07 -04001265int gfs2_glock_nq_num(struct gfs2_sbd *sdp, u64 number,
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001266 const struct gfs2_glock_operations *glops,
1267 unsigned int state, int flags, struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001268{
1269 struct gfs2_glock *gl;
1270 int error;
1271
1272 error = gfs2_glock_get(sdp, number, glops, CREATE, &gl);
1273 if (!error) {
1274 error = gfs2_glock_nq_init(gl, state, flags, gh);
1275 gfs2_glock_put(gl);
1276 }
1277
1278 return error;
1279}
1280
1281/**
1282 * glock_compare - Compare two struct gfs2_glock structures for sorting
1283 * @arg_a: the first structure
1284 * @arg_b: the second structure
1285 *
1286 */
1287
1288static int glock_compare(const void *arg_a, const void *arg_b)
1289{
Steven Whitehousea5e08a92006-09-09 17:07:05 -04001290 const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1291 const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1292 const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1293 const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001294
1295 if (a->ln_number > b->ln_number)
Steven Whitehousea5e08a92006-09-09 17:07:05 -04001296 return 1;
1297 if (a->ln_number < b->ln_number)
1298 return -1;
Steven Whitehouse1c0f4872007-01-22 12:10:39 -05001299 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 -04001300 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001301}
1302
1303/**
1304 * nq_m_sync - synchonously acquire more than one glock in deadlock free order
1305 * @num_gh: the number of structures
1306 * @ghs: an array of struct gfs2_holder structures
1307 *
1308 * Returns: 0 on success (all glocks acquired),
1309 * errno on failure (no glocks acquired)
1310 */
1311
1312static int nq_m_sync(unsigned int num_gh, struct gfs2_holder *ghs,
1313 struct gfs2_holder **p)
1314{
1315 unsigned int x;
1316 int error = 0;
1317
1318 for (x = 0; x < num_gh; x++)
1319 p[x] = &ghs[x];
1320
1321 sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare, NULL);
1322
1323 for (x = 0; x < num_gh; x++) {
1324 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1325
1326 error = gfs2_glock_nq(p[x]);
1327 if (error) {
1328 while (x--)
1329 gfs2_glock_dq(p[x]);
1330 break;
1331 }
1332 }
1333
1334 return error;
1335}
1336
1337/**
1338 * gfs2_glock_nq_m - acquire multiple glocks
1339 * @num_gh: the number of structures
1340 * @ghs: an array of struct gfs2_holder structures
1341 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001342 *
1343 * Returns: 0 on success (all glocks acquired),
1344 * errno on failure (no glocks acquired)
1345 */
1346
1347int gfs2_glock_nq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1348{
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001349 struct gfs2_holder *tmp[4];
1350 struct gfs2_holder **pph = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001351 int error = 0;
1352
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001353 switch(num_gh) {
1354 case 0:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001355 return 0;
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001356 case 1:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001357 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1358 return gfs2_glock_nq(ghs);
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001359 default:
1360 if (num_gh <= 4)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001361 break;
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001362 pph = kmalloc(num_gh * sizeof(struct gfs2_holder *), GFP_NOFS);
1363 if (!pph)
1364 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001365 }
1366
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001367 error = nq_m_sync(num_gh, ghs, pph);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001368
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001369 if (pph != tmp)
1370 kfree(pph);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001371
1372 return error;
1373}
1374
1375/**
1376 * gfs2_glock_dq_m - release multiple glocks
1377 * @num_gh: the number of structures
1378 * @ghs: an array of struct gfs2_holder structures
1379 *
1380 */
1381
1382void gfs2_glock_dq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1383{
1384 unsigned int x;
1385
1386 for (x = 0; x < num_gh; x++)
1387 gfs2_glock_dq(&ghs[x]);
1388}
1389
1390/**
1391 * gfs2_glock_dq_uninit_m - release multiple glocks
1392 * @num_gh: the number of structures
1393 * @ghs: an array of struct gfs2_holder structures
1394 *
1395 */
1396
1397void gfs2_glock_dq_uninit_m(unsigned int num_gh, struct gfs2_holder *ghs)
1398{
1399 unsigned int x;
1400
1401 for (x = 0; x < num_gh; x++)
1402 gfs2_glock_dq_uninit(&ghs[x]);
1403}
1404
1405/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001406 * gfs2_lvb_hold - attach a LVB from a glock
1407 * @gl: The glock in question
1408 *
1409 */
1410
1411int gfs2_lvb_hold(struct gfs2_glock *gl)
1412{
1413 int error;
1414
1415 gfs2_glmutex_lock(gl);
1416
1417 if (!atomic_read(&gl->gl_lvb_count)) {
1418 error = gfs2_lm_hold_lvb(gl->gl_sbd, gl->gl_lock, &gl->gl_lvb);
1419 if (error) {
1420 gfs2_glmutex_unlock(gl);
1421 return error;
1422 }
1423 gfs2_glock_hold(gl);
1424 }
1425 atomic_inc(&gl->gl_lvb_count);
1426
1427 gfs2_glmutex_unlock(gl);
1428
1429 return 0;
1430}
1431
1432/**
1433 * gfs2_lvb_unhold - detach a LVB from a glock
1434 * @gl: The glock in question
1435 *
1436 */
1437
1438void gfs2_lvb_unhold(struct gfs2_glock *gl)
1439{
1440 gfs2_glock_hold(gl);
1441 gfs2_glmutex_lock(gl);
1442
1443 gfs2_assert(gl->gl_sbd, atomic_read(&gl->gl_lvb_count) > 0);
1444 if (atomic_dec_and_test(&gl->gl_lvb_count)) {
1445 gfs2_lm_unhold_lvb(gl->gl_sbd, gl->gl_lock, gl->gl_lvb);
1446 gl->gl_lvb = NULL;
1447 gfs2_glock_put(gl);
1448 }
1449
1450 gfs2_glmutex_unlock(gl);
1451 gfs2_glock_put(gl);
1452}
1453
David Teiglandb3b94fa2006-01-16 16:50:04 +00001454static void blocking_cb(struct gfs2_sbd *sdp, struct lm_lockname *name,
1455 unsigned int state)
1456{
1457 struct gfs2_glock *gl;
1458
1459 gl = gfs2_glock_find(sdp, name);
1460 if (!gl)
1461 return;
1462
Abhijith Dasd93cfa92007-06-11 08:22:32 +01001463 handle_callback(gl, state, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001464
1465 spin_lock(&gl->gl_spin);
1466 run_queue(gl);
1467 spin_unlock(&gl->gl_spin);
1468
1469 gfs2_glock_put(gl);
1470}
1471
1472/**
1473 * gfs2_glock_cb - Callback used by locking module
Steven Whitehouse1c089c32006-09-07 15:50:20 -04001474 * @sdp: Pointer to the superblock
David Teiglandb3b94fa2006-01-16 16:50:04 +00001475 * @type: Type of callback
1476 * @data: Type dependent data pointer
1477 *
1478 * Called by the locking module when it wants to tell us something.
1479 * Either we need to drop a lock, one of our ASYNC requests completed, or
1480 * a journal from another client needs to be recovered.
1481 */
1482
Steven Whitehouse9b47c112006-09-08 10:17:58 -04001483void gfs2_glock_cb(void *cb_data, unsigned int type, void *data)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001484{
Steven Whitehouse9b47c112006-09-08 10:17:58 -04001485 struct gfs2_sbd *sdp = cb_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001486
David Teiglandb3b94fa2006-01-16 16:50:04 +00001487 switch (type) {
1488 case LM_CB_NEED_E:
David Teiglande7f5c012006-04-27 11:25:45 -04001489 blocking_cb(sdp, data, LM_ST_UNLOCKED);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001490 return;
1491
1492 case LM_CB_NEED_D:
David Teiglande7f5c012006-04-27 11:25:45 -04001493 blocking_cb(sdp, data, LM_ST_DEFERRED);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001494 return;
1495
1496 case LM_CB_NEED_S:
David Teiglande7f5c012006-04-27 11:25:45 -04001497 blocking_cb(sdp, data, LM_ST_SHARED);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001498 return;
1499
1500 case LM_CB_ASYNC: {
David Teiglande7f5c012006-04-27 11:25:45 -04001501 struct lm_async_cb *async = data;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001502 struct gfs2_glock *gl;
1503
Steven Whitehouse61be0842007-01-29 11:51:45 +00001504 down_read(&gfs2_umount_flush_sem);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001505 gl = gfs2_glock_find(sdp, &async->lc_name);
1506 if (gfs2_assert_warn(sdp, gl))
1507 return;
1508 if (!gfs2_assert_warn(sdp, gl->gl_req_bh))
1509 gl->gl_req_bh(gl, async->lc_ret);
1510 gfs2_glock_put(gl);
Steven Whitehouse61be0842007-01-29 11:51:45 +00001511 up_read(&gfs2_umount_flush_sem);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001512 return;
1513 }
1514
1515 case LM_CB_NEED_RECOVERY:
1516 gfs2_jdesc_make_dirty(sdp, *(unsigned int *)data);
1517 if (sdp->sd_recoverd_process)
1518 wake_up_process(sdp->sd_recoverd_process);
1519 return;
1520
1521 case LM_CB_DROPLOCKS:
1522 gfs2_gl_hash_clear(sdp, NO_WAIT);
1523 gfs2_quota_scan(sdp);
1524 return;
1525
1526 default:
1527 gfs2_assert_warn(sdp, 0);
1528 return;
1529 }
1530}
1531
1532/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001533 * demote_ok - Check to see if it's ok to unlock a glock
1534 * @gl: the glock
1535 *
1536 * Returns: 1 if it's ok
1537 */
1538
1539static int demote_ok(struct gfs2_glock *gl)
1540{
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001541 const struct gfs2_glock_operations *glops = gl->gl_ops;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001542 int demote = 1;
1543
1544 if (test_bit(GLF_STICKY, &gl->gl_flags))
1545 demote = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001546 else if (glops->go_demote_ok)
1547 demote = glops->go_demote_ok(gl);
1548
1549 return demote;
1550}
1551
1552/**
1553 * gfs2_glock_schedule_for_reclaim - Add a glock to the reclaim list
1554 * @gl: the glock
1555 *
1556 */
1557
1558void gfs2_glock_schedule_for_reclaim(struct gfs2_glock *gl)
1559{
1560 struct gfs2_sbd *sdp = gl->gl_sbd;
1561
1562 spin_lock(&sdp->sd_reclaim_lock);
1563 if (list_empty(&gl->gl_reclaim)) {
1564 gfs2_glock_hold(gl);
1565 list_add(&gl->gl_reclaim, &sdp->sd_reclaim_list);
1566 atomic_inc(&sdp->sd_reclaim_count);
1567 }
1568 spin_unlock(&sdp->sd_reclaim_lock);
1569
1570 wake_up(&sdp->sd_reclaim_wq);
1571}
1572
1573/**
1574 * gfs2_reclaim_glock - process the next glock on the filesystem's reclaim list
1575 * @sdp: the filesystem
1576 *
1577 * Called from gfs2_glockd() glock reclaim daemon, or when promoting a
1578 * different glock and we notice that there are a lot of glocks in the
1579 * reclaim list.
1580 *
1581 */
1582
1583void gfs2_reclaim_glock(struct gfs2_sbd *sdp)
1584{
1585 struct gfs2_glock *gl;
1586
1587 spin_lock(&sdp->sd_reclaim_lock);
1588 if (list_empty(&sdp->sd_reclaim_list)) {
1589 spin_unlock(&sdp->sd_reclaim_lock);
1590 return;
1591 }
1592 gl = list_entry(sdp->sd_reclaim_list.next,
1593 struct gfs2_glock, gl_reclaim);
1594 list_del_init(&gl->gl_reclaim);
1595 spin_unlock(&sdp->sd_reclaim_lock);
1596
1597 atomic_dec(&sdp->sd_reclaim_count);
1598 atomic_inc(&sdp->sd_reclaimed);
1599
1600 if (gfs2_glmutex_trylock(gl)) {
Steven Whitehouse12132932007-01-22 13:09:04 -05001601 if (list_empty(&gl->gl_holders) &&
Steven Whitehouse50299962006-09-04 09:49:55 -04001602 gl->gl_state != LM_ST_UNLOCKED && demote_ok(gl))
Abhijith Dasd93cfa92007-06-11 08:22:32 +01001603 handle_callback(gl, LM_ST_UNLOCKED, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001604 gfs2_glmutex_unlock(gl);
1605 }
1606
1607 gfs2_glock_put(gl);
1608}
1609
1610/**
1611 * examine_bucket - Call a function for glock in a hash bucket
1612 * @examiner: the function
1613 * @sdp: the filesystem
1614 * @bucket: the bucket
1615 *
1616 * Returns: 1 if the bucket has entries
1617 */
1618
1619static int examine_bucket(glock_examiner examiner, struct gfs2_sbd *sdp,
Steven Whitehouse37b2fa62006-09-08 13:35:56 -04001620 unsigned int hash)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001621{
Steven Whitehouse24264432006-09-11 21:40:30 -04001622 struct gfs2_glock *gl, *prev = NULL;
1623 int has_entries = 0;
Steven Whitehouseb6397892006-09-12 10:10:01 -04001624 struct hlist_head *head = &gl_hash_table[hash].hb_list;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001625
Steven Whitehouse24264432006-09-11 21:40:30 -04001626 read_lock(gl_lock_addr(hash));
Steven Whitehouseb6397892006-09-12 10:10:01 -04001627 /* Can't use hlist_for_each_entry - don't want prefetch here */
1628 if (hlist_empty(head))
Steven Whitehouse24264432006-09-11 21:40:30 -04001629 goto out;
Steven Whitehouseb6397892006-09-12 10:10:01 -04001630 gl = list_entry(head->first, struct gfs2_glock, gl_list);
1631 while(1) {
Steven Whitehouse24264432006-09-11 21:40:30 -04001632 if (gl->gl_sbd == sdp) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001633 gfs2_glock_hold(gl);
Steven Whitehouse24264432006-09-11 21:40:30 -04001634 read_unlock(gl_lock_addr(hash));
1635 if (prev)
1636 gfs2_glock_put(prev);
1637 prev = gl;
1638 examiner(gl);
Steven Whitehousea8336342006-09-14 13:57:38 -04001639 has_entries = 1;
Steven Whitehouse24264432006-09-11 21:40:30 -04001640 read_lock(gl_lock_addr(hash));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001641 }
Steven Whitehouseb6397892006-09-12 10:10:01 -04001642 if (gl->gl_list.next == NULL)
1643 break;
Steven Whitehouse24264432006-09-11 21:40:30 -04001644 gl = list_entry(gl->gl_list.next, struct gfs2_glock, gl_list);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001645 }
Steven Whitehouse24264432006-09-11 21:40:30 -04001646out:
1647 read_unlock(gl_lock_addr(hash));
1648 if (prev)
1649 gfs2_glock_put(prev);
1650 return has_entries;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001651}
1652
1653/**
1654 * scan_glock - look at a glock and see if we can reclaim it
1655 * @gl: the glock to look at
1656 *
1657 */
1658
1659static void scan_glock(struct gfs2_glock *gl)
1660{
Steven Whitehouseb0041572006-11-23 10:51:34 -05001661 if (gl->gl_ops == &gfs2_inode_glops && gl->gl_object)
Steven Whitehouse24264432006-09-11 21:40:30 -04001662 return;
Steven Whitehousea2242db2006-08-24 17:03:05 -04001663
David Teiglandb3b94fa2006-01-16 16:50:04 +00001664 if (gfs2_glmutex_trylock(gl)) {
Steven Whitehouse12132932007-01-22 13:09:04 -05001665 if (list_empty(&gl->gl_holders) &&
Steven Whitehouse24264432006-09-11 21:40:30 -04001666 gl->gl_state != LM_ST_UNLOCKED && demote_ok(gl))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001667 goto out_schedule;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001668 gfs2_glmutex_unlock(gl);
1669 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001670 return;
1671
Steven Whitehouse627add22006-07-05 13:16:19 -04001672out_schedule:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001673 gfs2_glmutex_unlock(gl);
1674 gfs2_glock_schedule_for_reclaim(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001675}
1676
1677/**
1678 * gfs2_scand_internal - Look for glocks and inodes to toss from memory
1679 * @sdp: the filesystem
1680 *
1681 */
1682
1683void gfs2_scand_internal(struct gfs2_sbd *sdp)
1684{
1685 unsigned int x;
1686
Steven Whitehouse94610612006-09-09 18:59:27 -04001687 for (x = 0; x < GFS2_GL_HASH_SIZE; x++)
Steven Whitehouse37b2fa62006-09-08 13:35:56 -04001688 examine_bucket(scan_glock, sdp, x);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001689}
1690
1691/**
1692 * clear_glock - look at a glock and see if we can free it from glock cache
1693 * @gl: the glock to look at
1694 *
1695 */
1696
1697static void clear_glock(struct gfs2_glock *gl)
1698{
1699 struct gfs2_sbd *sdp = gl->gl_sbd;
1700 int released;
1701
1702 spin_lock(&sdp->sd_reclaim_lock);
1703 if (!list_empty(&gl->gl_reclaim)) {
1704 list_del_init(&gl->gl_reclaim);
1705 atomic_dec(&sdp->sd_reclaim_count);
Steven Whitehouse190562b2006-04-20 16:57:23 -04001706 spin_unlock(&sdp->sd_reclaim_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001707 released = gfs2_glock_put(gl);
1708 gfs2_assert(sdp, !released);
Steven Whitehouse190562b2006-04-20 16:57:23 -04001709 } else {
1710 spin_unlock(&sdp->sd_reclaim_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001711 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001712
1713 if (gfs2_glmutex_trylock(gl)) {
Steven Whitehouse90101c32007-01-23 13:20:41 -05001714 if (list_empty(&gl->gl_holders) &&
David Teiglandb3b94fa2006-01-16 16:50:04 +00001715 gl->gl_state != LM_ST_UNLOCKED)
Abhijith Dasd93cfa92007-06-11 08:22:32 +01001716 handle_callback(gl, LM_ST_UNLOCKED, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001717 gfs2_glmutex_unlock(gl);
1718 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001719}
1720
1721/**
1722 * gfs2_gl_hash_clear - Empty out the glock hash table
1723 * @sdp: the filesystem
1724 * @wait: wait until it's all gone
1725 *
1726 * Called when unmounting the filesystem, or when inter-node lock manager
1727 * requests DROPLOCKS because it is running out of capacity.
1728 */
1729
1730void gfs2_gl_hash_clear(struct gfs2_sbd *sdp, int wait)
1731{
1732 unsigned long t;
1733 unsigned int x;
1734 int cont;
1735
1736 t = jiffies;
1737
1738 for (;;) {
1739 cont = 0;
Steven Whitehouse24264432006-09-11 21:40:30 -04001740 for (x = 0; x < GFS2_GL_HASH_SIZE; x++) {
Steven Whitehouse907b9bc2006-09-25 09:26:04 -04001741 if (examine_bucket(clear_glock, sdp, x))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001742 cont = 1;
Steven Whitehouse24264432006-09-11 21:40:30 -04001743 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001744
1745 if (!wait || !cont)
1746 break;
1747
1748 if (time_after_eq(jiffies,
1749 t + gfs2_tune_get(sdp, gt_stall_secs) * HZ)) {
1750 fs_warn(sdp, "Unmount seems to be stalled. "
1751 "Dumping lock state...\n");
1752 gfs2_dump_lockstate(sdp);
1753 t = jiffies;
1754 }
1755
Steven Whitehouse61be0842007-01-29 11:51:45 +00001756 down_write(&gfs2_umount_flush_sem);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001757 invalidate_inodes(sdp->sd_vfs);
Steven Whitehouse61be0842007-01-29 11:51:45 +00001758 up_write(&gfs2_umount_flush_sem);
Steven Whitehousefd88de562006-05-05 16:59:11 -04001759 msleep(10);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001760 }
1761}
1762
1763/*
1764 * Diagnostic routines to help debug distributed deadlock
1765 */
1766
Robert Peterson04b933f2007-03-23 17:05:15 -05001767static void gfs2_print_symbol(struct glock_iter *gi, const char *fmt,
1768 unsigned long address)
1769{
Robert Peterson7a0079d2007-04-17 11:37:11 -05001770 char buffer[KSYM_SYMBOL_LEN];
Robert Peterson04b933f2007-03-23 17:05:15 -05001771
Robert Peterson7a0079d2007-04-17 11:37:11 -05001772 sprint_symbol(buffer, address);
1773 print_dbg(gi, fmt, buffer);
Robert Peterson04b933f2007-03-23 17:05:15 -05001774}
1775
David Teiglandb3b94fa2006-01-16 16:50:04 +00001776/**
1777 * dump_holder - print information about a glock holder
1778 * @str: a string naming the type of holder
1779 * @gh: the glock holder
1780 *
1781 * Returns: 0 on success, -ENOBUFS when we run out of space
1782 */
1783
Robert Peterson7c52b162007-03-16 10:26:37 +00001784static int dump_holder(struct glock_iter *gi, char *str,
1785 struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001786{
1787 unsigned int x;
Robert Peterson04b933f2007-03-23 17:05:15 -05001788 struct task_struct *gh_owner;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001789
Robert Peterson7c52b162007-03-16 10:26:37 +00001790 print_dbg(gi, " %s\n", str);
Robert Peterson04b933f2007-03-23 17:05:15 -05001791 if (gh->gh_owner_pid) {
1792 print_dbg(gi, " owner = %ld ", (long)gh->gh_owner_pid);
1793 gh_owner = find_task_by_pid(gh->gh_owner_pid);
1794 if (gh_owner)
1795 print_dbg(gi, "(%s)\n", gh_owner->comm);
1796 else
1797 print_dbg(gi, "(ended)\n");
1798 } else
1799 print_dbg(gi, " owner = -1\n");
Robert Peterson7c52b162007-03-16 10:26:37 +00001800 print_dbg(gi, " gh_state = %u\n", gh->gh_state);
1801 print_dbg(gi, " gh_flags =");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001802 for (x = 0; x < 32; x++)
1803 if (gh->gh_flags & (1 << x))
Robert Peterson7c52b162007-03-16 10:26:37 +00001804 print_dbg(gi, " %u", x);
1805 print_dbg(gi, " \n");
1806 print_dbg(gi, " error = %d\n", gh->gh_error);
1807 print_dbg(gi, " gh_iflags =");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001808 for (x = 0; x < 32; x++)
1809 if (test_bit(x, &gh->gh_iflags))
Robert Peterson7c52b162007-03-16 10:26:37 +00001810 print_dbg(gi, " %u", x);
1811 print_dbg(gi, " \n");
Robert Peterson04b933f2007-03-23 17:05:15 -05001812 gfs2_print_symbol(gi, " initialized at: %s\n", gh->gh_ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001813
Robert Peterson7c52b162007-03-16 10:26:37 +00001814 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001815}
1816
1817/**
1818 * dump_inode - print information about an inode
1819 * @ip: the inode
1820 *
1821 * Returns: 0 on success, -ENOBUFS when we run out of space
1822 */
1823
Robert Peterson7c52b162007-03-16 10:26:37 +00001824static int dump_inode(struct glock_iter *gi, struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001825{
1826 unsigned int x;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001827
Robert Peterson7c52b162007-03-16 10:26:37 +00001828 print_dbg(gi, " Inode:\n");
1829 print_dbg(gi, " num = %llu/%llu\n",
Steven Whitehousedbb7cae2007-05-15 15:37:50 +01001830 (unsigned long long)ip->i_no_formal_ino,
1831 (unsigned long long)ip->i_no_addr);
Robert Peterson7c52b162007-03-16 10:26:37 +00001832 print_dbg(gi, " type = %u\n", IF2DT(ip->i_inode.i_mode));
1833 print_dbg(gi, " i_flags =");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001834 for (x = 0; x < 32; x++)
1835 if (test_bit(x, &ip->i_flags))
Robert Peterson7c52b162007-03-16 10:26:37 +00001836 print_dbg(gi, " %u", x);
1837 print_dbg(gi, " \n");
1838 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001839}
1840
1841/**
1842 * dump_glock - print information about a glock
1843 * @gl: the glock
1844 * @count: where we are in the buffer
1845 *
1846 * Returns: 0 on success, -ENOBUFS when we run out of space
1847 */
1848
Robert Peterson7c52b162007-03-16 10:26:37 +00001849static int dump_glock(struct glock_iter *gi, struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001850{
1851 struct gfs2_holder *gh;
1852 unsigned int x;
1853 int error = -ENOBUFS;
Robert Peterson04b933f2007-03-23 17:05:15 -05001854 struct task_struct *gl_owner;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001855
1856 spin_lock(&gl->gl_spin);
1857
Robert Peterson7c52b162007-03-16 10:26:37 +00001858 print_dbg(gi, "Glock 0x%p (%u, %llu)\n", gl, gl->gl_name.ln_type,
1859 (unsigned long long)gl->gl_name.ln_number);
1860 print_dbg(gi, " gl_flags =");
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001861 for (x = 0; x < 32; x++) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001862 if (test_bit(x, &gl->gl_flags))
Robert Peterson7c52b162007-03-16 10:26:37 +00001863 print_dbg(gi, " %u", x);
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001864 }
Robert Peterson04b933f2007-03-23 17:05:15 -05001865 if (!test_bit(GLF_LOCK, &gl->gl_flags))
1866 print_dbg(gi, " (unlocked)");
Robert Peterson7c52b162007-03-16 10:26:37 +00001867 print_dbg(gi, " \n");
1868 print_dbg(gi, " gl_ref = %d\n", atomic_read(&gl->gl_ref));
1869 print_dbg(gi, " gl_state = %u\n", gl->gl_state);
Robert Peterson04b933f2007-03-23 17:05:15 -05001870 if (gl->gl_owner_pid) {
1871 gl_owner = find_task_by_pid(gl->gl_owner_pid);
1872 if (gl_owner)
1873 print_dbg(gi, " gl_owner = pid %d (%s)\n",
1874 gl->gl_owner_pid, gl_owner->comm);
1875 else
1876 print_dbg(gi, " gl_owner = %d (ended)\n",
1877 gl->gl_owner_pid);
1878 } else
1879 print_dbg(gi, " gl_owner = -1\n");
Robert Peterson7c52b162007-03-16 10:26:37 +00001880 print_dbg(gi, " gl_ip = %lu\n", gl->gl_ip);
1881 print_dbg(gi, " req_gh = %s\n", (gl->gl_req_gh) ? "yes" : "no");
1882 print_dbg(gi, " req_bh = %s\n", (gl->gl_req_bh) ? "yes" : "no");
1883 print_dbg(gi, " lvb_count = %d\n", atomic_read(&gl->gl_lvb_count));
1884 print_dbg(gi, " object = %s\n", (gl->gl_object) ? "yes" : "no");
1885 print_dbg(gi, " le = %s\n",
David Teiglandb3b94fa2006-01-16 16:50:04 +00001886 (list_empty(&gl->gl_le.le_list)) ? "no" : "yes");
Robert Peterson7c52b162007-03-16 10:26:37 +00001887 print_dbg(gi, " reclaim = %s\n",
1888 (list_empty(&gl->gl_reclaim)) ? "no" : "yes");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001889 if (gl->gl_aspace)
Robert Peterson7c52b162007-03-16 10:26:37 +00001890 print_dbg(gi, " aspace = 0x%p nrpages = %lu\n", gl->gl_aspace,
1891 gl->gl_aspace->i_mapping->nrpages);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001892 else
Robert Peterson7c52b162007-03-16 10:26:37 +00001893 print_dbg(gi, " aspace = no\n");
1894 print_dbg(gi, " ail = %d\n", atomic_read(&gl->gl_ail_count));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001895 if (gl->gl_req_gh) {
Robert Peterson7c52b162007-03-16 10:26:37 +00001896 error = dump_holder(gi, "Request", gl->gl_req_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001897 if (error)
1898 goto out;
1899 }
1900 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
Robert Peterson7c52b162007-03-16 10:26:37 +00001901 error = dump_holder(gi, "Holder", gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001902 if (error)
1903 goto out;
1904 }
1905 list_for_each_entry(gh, &gl->gl_waiters1, gh_list) {
Robert Peterson7c52b162007-03-16 10:26:37 +00001906 error = dump_holder(gi, "Waiter1", gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001907 if (error)
1908 goto out;
1909 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001910 list_for_each_entry(gh, &gl->gl_waiters3, gh_list) {
Robert Peterson7c52b162007-03-16 10:26:37 +00001911 error = dump_holder(gi, "Waiter3", gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001912 if (error)
1913 goto out;
1914 }
Steven Whitehouse3b8249f2007-03-16 09:40:31 +00001915 if (test_bit(GLF_DEMOTE, &gl->gl_flags)) {
1916 print_dbg(gi, " Demotion req to state %u (%llu uS ago)\n",
Robert Petersoncd81a4b2007-05-14 12:42:18 -05001917 gl->gl_demote_state, (unsigned long long)
1918 (jiffies - gl->gl_demote_time)*(1000000/HZ));
Steven Whitehouse3b8249f2007-03-16 09:40:31 +00001919 }
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001920 if (gl->gl_ops == &gfs2_inode_glops && gl->gl_object) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001921 if (!test_bit(GLF_LOCK, &gl->gl_flags) &&
Robert Peterson7c52b162007-03-16 10:26:37 +00001922 list_empty(&gl->gl_holders)) {
1923 error = dump_inode(gi, gl->gl_object);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001924 if (error)
1925 goto out;
1926 } else {
1927 error = -ENOBUFS;
Robert Peterson7c52b162007-03-16 10:26:37 +00001928 print_dbg(gi, " Inode: busy\n");
David Teiglandb3b94fa2006-01-16 16:50:04 +00001929 }
1930 }
1931
1932 error = 0;
1933
Steven Whitehousea91ea692006-09-04 12:04:26 -04001934out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001935 spin_unlock(&gl->gl_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001936 return error;
1937}
1938
1939/**
1940 * gfs2_dump_lockstate - print out the current lockstate
1941 * @sdp: the filesystem
1942 * @ub: the buffer to copy the information into
1943 *
1944 * If @ub is NULL, dump the lockstate to the console.
1945 *
1946 */
1947
Adrian Bunk08bc2db2006-04-28 10:59:12 -04001948static int gfs2_dump_lockstate(struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001949{
David Teiglandb3b94fa2006-01-16 16:50:04 +00001950 struct gfs2_glock *gl;
Steven Whitehouseb6397892006-09-12 10:10:01 -04001951 struct hlist_node *h;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001952 unsigned int x;
1953 int error = 0;
1954
1955 for (x = 0; x < GFS2_GL_HASH_SIZE; x++) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001956
Steven Whitehouse087efdd2006-09-09 16:59:11 -04001957 read_lock(gl_lock_addr(x));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001958
Steven Whitehouseb6397892006-09-12 10:10:01 -04001959 hlist_for_each_entry(gl, h, &gl_hash_table[x].hb_list, gl_list) {
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001960 if (gl->gl_sbd != sdp)
1961 continue;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001962
Robert Peterson7c52b162007-03-16 10:26:37 +00001963 error = dump_glock(NULL, gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001964 if (error)
1965 break;
1966 }
1967
Steven Whitehouse087efdd2006-09-09 16:59:11 -04001968 read_unlock(gl_lock_addr(x));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001969
1970 if (error)
1971 break;
1972 }
1973
1974
1975 return error;
1976}
1977
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001978int __init gfs2_glock_init(void)
1979{
1980 unsigned i;
1981 for(i = 0; i < GFS2_GL_HASH_SIZE; i++) {
Steven Whitehouseb6397892006-09-12 10:10:01 -04001982 INIT_HLIST_HEAD(&gl_hash_table[i].hb_list);
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001983 }
Steven Whitehouse087efdd2006-09-09 16:59:11 -04001984#ifdef GL_HASH_LOCK_SZ
1985 for(i = 0; i < GL_HASH_LOCK_SZ; i++) {
1986 rwlock_init(&gl_hash_locks[i]);
1987 }
1988#endif
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001989 return 0;
1990}
1991
Robert Peterson7c52b162007-03-16 10:26:37 +00001992static int gfs2_glock_iter_next(struct glock_iter *gi)
1993{
Robert Peterson7a0079d2007-04-17 11:37:11 -05001994 read_lock(gl_lock_addr(gi->hash));
Robert Peterson7c52b162007-03-16 10:26:37 +00001995 while (1) {
1996 if (!gi->hb_list) { /* If we don't have a hash bucket yet */
1997 gi->hb_list = &gl_hash_table[gi->hash].hb_list;
1998 if (hlist_empty(gi->hb_list)) {
Robert Peterson7a0079d2007-04-17 11:37:11 -05001999 read_unlock(gl_lock_addr(gi->hash));
Robert Peterson7c52b162007-03-16 10:26:37 +00002000 gi->hash++;
Robert Peterson7a0079d2007-04-17 11:37:11 -05002001 read_lock(gl_lock_addr(gi->hash));
Robert Peterson7c52b162007-03-16 10:26:37 +00002002 gi->hb_list = NULL;
Robert Peterson7a0079d2007-04-17 11:37:11 -05002003 if (gi->hash >= GFS2_GL_HASH_SIZE) {
2004 read_unlock(gl_lock_addr(gi->hash));
Robert Peterson7c52b162007-03-16 10:26:37 +00002005 return 1;
Robert Peterson7a0079d2007-04-17 11:37:11 -05002006 }
Robert Peterson7c52b162007-03-16 10:26:37 +00002007 else
2008 continue;
2009 }
2010 if (!hlist_empty(gi->hb_list)) {
2011 gi->gl = list_entry(gi->hb_list->first,
2012 struct gfs2_glock,
2013 gl_list);
2014 }
2015 } else {
2016 if (gi->gl->gl_list.next == NULL) {
Robert Peterson7a0079d2007-04-17 11:37:11 -05002017 read_unlock(gl_lock_addr(gi->hash));
Robert Peterson7c52b162007-03-16 10:26:37 +00002018 gi->hash++;
Robert Peterson7a0079d2007-04-17 11:37:11 -05002019 read_lock(gl_lock_addr(gi->hash));
Robert Peterson7c52b162007-03-16 10:26:37 +00002020 gi->hb_list = NULL;
2021 continue;
2022 }
2023 gi->gl = list_entry(gi->gl->gl_list.next,
2024 struct gfs2_glock, gl_list);
2025 }
2026 if (gi->gl)
2027 break;
2028 }
Robert Peterson7a0079d2007-04-17 11:37:11 -05002029 read_unlock(gl_lock_addr(gi->hash));
Robert Peterson7c52b162007-03-16 10:26:37 +00002030 return 0;
2031}
2032
2033static void gfs2_glock_iter_free(struct glock_iter *gi)
2034{
2035 kfree(gi);
2036}
2037
2038static struct glock_iter *gfs2_glock_iter_init(struct gfs2_sbd *sdp)
2039{
2040 struct glock_iter *gi;
2041
2042 gi = kmalloc(sizeof (*gi), GFP_KERNEL);
2043 if (!gi)
2044 return NULL;
2045
2046 gi->sdp = sdp;
2047 gi->hash = 0;
2048 gi->gl = NULL;
2049 gi->hb_list = NULL;
2050 gi->seq = NULL;
2051 memset(gi->string, 0, sizeof(gi->string));
2052
2053 if (gfs2_glock_iter_next(gi)) {
2054 gfs2_glock_iter_free(gi);
2055 return NULL;
2056 }
2057
2058 return gi;
2059}
2060
2061static void *gfs2_glock_seq_start(struct seq_file *file, loff_t *pos)
2062{
2063 struct glock_iter *gi;
2064 loff_t n = *pos;
2065
2066 gi = gfs2_glock_iter_init(file->private);
2067 if (!gi)
2068 return NULL;
2069
2070 while (n--) {
2071 if (gfs2_glock_iter_next(gi)) {
2072 gfs2_glock_iter_free(gi);
2073 return NULL;
2074 }
2075 }
2076
2077 return gi;
2078}
2079
2080static void *gfs2_glock_seq_next(struct seq_file *file, void *iter_ptr,
2081 loff_t *pos)
2082{
2083 struct glock_iter *gi = iter_ptr;
2084
2085 (*pos)++;
2086
2087 if (gfs2_glock_iter_next(gi)) {
2088 gfs2_glock_iter_free(gi);
2089 return NULL;
2090 }
2091
2092 return gi;
2093}
2094
2095static void gfs2_glock_seq_stop(struct seq_file *file, void *iter_ptr)
2096{
2097 /* nothing for now */
2098}
2099
2100static int gfs2_glock_seq_show(struct seq_file *file, void *iter_ptr)
2101{
2102 struct glock_iter *gi = iter_ptr;
2103
2104 gi->seq = file;
2105 dump_glock(gi, gi->gl);
2106
2107 return 0;
2108}
2109
2110static struct seq_operations gfs2_glock_seq_ops = {
2111 .start = gfs2_glock_seq_start,
2112 .next = gfs2_glock_seq_next,
2113 .stop = gfs2_glock_seq_stop,
2114 .show = gfs2_glock_seq_show,
2115};
2116
2117static int gfs2_debugfs_open(struct inode *inode, struct file *file)
2118{
2119 struct seq_file *seq;
2120 int ret;
2121
2122 ret = seq_open(file, &gfs2_glock_seq_ops);
2123 if (ret)
2124 return ret;
2125
2126 seq = file->private_data;
2127 seq->private = inode->i_private;
2128
2129 return 0;
2130}
2131
2132static const struct file_operations gfs2_debug_fops = {
2133 .owner = THIS_MODULE,
2134 .open = gfs2_debugfs_open,
2135 .read = seq_read,
2136 .llseek = seq_lseek,
2137 .release = seq_release
2138};
2139
2140int gfs2_create_debugfs_file(struct gfs2_sbd *sdp)
2141{
Robert Peterson5f882092007-04-18 11:41:11 -05002142 sdp->debugfs_dir = debugfs_create_dir(sdp->sd_table_name, gfs2_root);
2143 if (!sdp->debugfs_dir)
2144 return -ENOMEM;
2145 sdp->debugfs_dentry_glocks = debugfs_create_file("glocks",
2146 S_IFREG | S_IRUGO,
2147 sdp->debugfs_dir, sdp,
2148 &gfs2_debug_fops);
2149 if (!sdp->debugfs_dentry_glocks)
Robert Peterson7c52b162007-03-16 10:26:37 +00002150 return -ENOMEM;
2151
2152 return 0;
2153}
2154
2155void gfs2_delete_debugfs_file(struct gfs2_sbd *sdp)
2156{
Robert Peterson5f882092007-04-18 11:41:11 -05002157 if (sdp && sdp->debugfs_dir) {
2158 if (sdp->debugfs_dentry_glocks) {
2159 debugfs_remove(sdp->debugfs_dentry_glocks);
2160 sdp->debugfs_dentry_glocks = NULL;
2161 }
2162 debugfs_remove(sdp->debugfs_dir);
2163 sdp->debugfs_dir = NULL;
2164 }
Robert Peterson7c52b162007-03-16 10:26:37 +00002165}
2166
2167int gfs2_register_debugfs(void)
2168{
2169 gfs2_root = debugfs_create_dir("gfs2", NULL);
2170 return gfs2_root ? 0 : -ENOMEM;
2171}
2172
2173void gfs2_unregister_debugfs(void)
2174{
2175 debugfs_remove(gfs2_root);
Robert Peterson5f882092007-04-18 11:41:11 -05002176 gfs2_root = NULL;
Robert Peterson7c52b162007-03-16 10:26:37 +00002177}