blob: 10ae1645d9a517313bd2c1c97096b2e86d6c1d12 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Bob Petersoncf45b752008-01-31 10:31:39 -06003 * Copyright (C) 2004-2008 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>
David Teiglandb3b94fa2006-01-16 16:50:04 +000013#include <linux/buffer_head.h>
14#include <linux/delay.h>
15#include <linux/sort.h>
16#include <linux/jhash.h>
Steven Whitehoused0dc80d2006-03-29 14:36:49 -050017#include <linux/kallsyms.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050018#include <linux/gfs2_ondisk.h>
Steven Whitehouse24264432006-09-11 21:40:30 -040019#include <linux/list.h>
Steven Whitehousefee852e2007-01-17 15:33:23 +000020#include <linux/wait.h>
akpm@linux-foundation.org95d97b72007-03-05 23:10:39 -080021#include <linux/module.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000022#include <asm/uaccess.h>
Robert Peterson7c52b162007-03-16 10:26:37 +000023#include <linux/seq_file.h>
24#include <linux/debugfs.h>
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +010025#include <linux/kthread.h>
26#include <linux/freezer.h>
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -050027#include <linux/workqueue.h>
28#include <linux/jiffies.h>
Steven Whitehousebc015cb2011-01-19 09:30:01 +000029#include <linux/rcupdate.h>
30#include <linux/rculist_bl.h>
31#include <linux/bit_spinlock.h>
Steven Whitehousea2457692012-01-20 10:38:36 +000032#include <linux/percpu.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000033
34#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050035#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000036#include "glock.h"
37#include "glops.h"
38#include "inode.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000039#include "lops.h"
40#include "meta_io.h"
41#include "quota.h"
42#include "super.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050043#include "util.h"
Steven Whitehouse813e0c42008-11-18 13:38:48 +000044#include "bmap.h"
Steven Whitehouse63997772009-06-12 08:49:20 +010045#define CREATE_TRACE_POINTS
46#include "trace_gfs2.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000047
Steven Whitehouse6802e342008-05-21 17:03:22 +010048struct gfs2_glock_iter {
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +010049 int hash; /* hash bucket index */
50 unsigned nhash; /* Index within current bucket */
51 struct gfs2_sbd *sdp; /* incore superblock */
52 struct gfs2_glock *gl; /* current glock struct */
53 loff_t last_pos; /* last position */
54 char string[512]; /* scratch space */
Robert Peterson7c52b162007-03-16 10:26:37 +000055};
56
David Teiglandb3b94fa2006-01-16 16:50:04 +000057typedef void (*glock_examiner) (struct gfs2_glock * gl);
58
Steven Whitehouse6802e342008-05-21 17:03:22 +010059static int __dump_glock(struct seq_file *seq, const struct gfs2_glock *gl);
60#define GLOCK_BUG_ON(gl,x) do { if (unlikely(x)) { __dump_glock(NULL, gl); BUG(); } } while(0)
61static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -050062
Robert Peterson7c52b162007-03-16 10:26:37 +000063static struct dentry *gfs2_root;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -050064static struct workqueue_struct *glock_workqueue;
Benjamin Marzinskib94a1702009-07-23 18:52:34 -050065struct workqueue_struct *gfs2_delete_workqueue;
Steven Whitehouse97cc1022008-11-20 13:39:47 +000066static LIST_HEAD(lru_list);
67static atomic_t lru_count = ATOMIC_INIT(0);
Julia Lawalleb8374e2008-12-25 15:35:27 +010068static DEFINE_SPINLOCK(lru_lock);
Adrian Bunk08bc2db2006-04-28 10:59:12 -040069
Steven Whitehouseb6397892006-09-12 10:10:01 -040070#define GFS2_GL_HASH_SHIFT 15
Steven Whitehouse087efdd2006-09-09 16:59:11 -040071#define GFS2_GL_HASH_SIZE (1 << GFS2_GL_HASH_SHIFT)
72#define GFS2_GL_HASH_MASK (GFS2_GL_HASH_SIZE - 1)
73
Steven Whitehousebc015cb2011-01-19 09:30:01 +000074static struct hlist_bl_head gl_hash_table[GFS2_GL_HASH_SIZE];
Robert Peterson04b933f2007-03-23 17:05:15 -050075static struct dentry *gfs2_root;
Steven Whitehouse087efdd2006-09-09 16:59:11 -040076
David Teiglandb3b94fa2006-01-16 16:50:04 +000077/**
David Teiglandb3b94fa2006-01-16 16:50:04 +000078 * gl_hash() - Turn glock number into hash bucket number
79 * @lock: The glock number
80 *
81 * Returns: The number of the corresponding hash bucket
82 */
83
Steven Whitehouseb8547852006-09-07 13:12:27 -040084static unsigned int gl_hash(const struct gfs2_sbd *sdp,
85 const struct lm_lockname *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +000086{
87 unsigned int h;
88
Steven Whitehousecd915492006-09-04 12:49:07 -040089 h = jhash(&name->ln_number, sizeof(u64), 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +000090 h = jhash(&name->ln_type, sizeof(unsigned int), h);
Steven Whitehouseb8547852006-09-07 13:12:27 -040091 h = jhash(&sdp, sizeof(struct gfs2_sbd *), h);
David Teiglandb3b94fa2006-01-16 16:50:04 +000092 h &= GFS2_GL_HASH_MASK;
93
94 return h;
95}
96
Steven Whitehousebc015cb2011-01-19 09:30:01 +000097static inline void spin_lock_bucket(unsigned int hash)
David Teiglandb3b94fa2006-01-16 16:50:04 +000098{
Christoph Hellwig1879fd62011-04-25 14:01:36 -040099 hlist_bl_lock(&gl_hash_table[hash]);
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000100}
David Teiglandb3b94fa2006-01-16 16:50:04 +0000101
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000102static inline void spin_unlock_bucket(unsigned int hash)
103{
Christoph Hellwig1879fd62011-04-25 14:01:36 -0400104 hlist_bl_unlock(&gl_hash_table[hash]);
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000105}
106
Steven Whitehousefc0e38d2011-03-09 10:58:04 +0000107static void gfs2_glock_dealloc(struct rcu_head *rcu)
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000108{
109 struct gfs2_glock *gl = container_of(rcu, struct gfs2_glock, gl_rcu);
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000110
111 if (gl->gl_ops->go_flags & GLOF_ASPACE)
112 kmem_cache_free(gfs2_glock_aspace_cachep, gl);
113 else
114 kmem_cache_free(gfs2_glock_cachep, gl);
Steven Whitehousefc0e38d2011-03-09 10:58:04 +0000115}
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000116
Steven Whitehousefc0e38d2011-03-09 10:58:04 +0000117void gfs2_glock_free(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000118{
119 struct gfs2_sbd *sdp = gl->gl_sbd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000120
Steven Whitehousefc0e38d2011-03-09 10:58:04 +0000121 call_rcu(&gl->gl_rcu, gfs2_glock_dealloc);
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000122 if (atomic_dec_and_test(&sdp->sd_glock_disposal))
123 wake_up(&sdp->sd_glock_wait);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000124}
125
126/**
127 * gfs2_glock_hold() - increment reference count on glock
128 * @gl: The glock to hold
129 *
130 */
131
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500132void gfs2_glock_hold(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000133{
Steven Whitehoused8348de2009-02-05 10:12:38 +0000134 GLOCK_BUG_ON(gl, atomic_read(&gl->gl_ref) == 0);
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400135 atomic_inc(&gl->gl_ref);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000136}
137
138/**
Benjamin Marzinski8ff22a62009-07-10 18:04:24 -0500139 * demote_ok - Check to see if it's ok to unlock a glock
140 * @gl: the glock
141 *
142 * Returns: 1 if it's ok
143 */
144
145static int demote_ok(const struct gfs2_glock *gl)
146{
147 const struct gfs2_glock_operations *glops = gl->gl_ops;
148
149 if (gl->gl_state == LM_ST_UNLOCKED)
150 return 0;
Steven Whitehousef42ab082011-04-14 16:50:31 +0100151 if (!list_empty(&gl->gl_holders))
Benjamin Marzinski8ff22a62009-07-10 18:04:24 -0500152 return 0;
153 if (glops->go_demote_ok)
154 return glops->go_demote_ok(gl);
155 return 1;
156}
157
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000158
Steven Whitehouse29687a22011-03-30 16:33:25 +0100159void gfs2_glock_add_to_lru(struct gfs2_glock *gl)
160{
161 spin_lock(&lru_lock);
162
163 if (!list_empty(&gl->gl_lru))
164 list_del_init(&gl->gl_lru);
165 else
166 atomic_inc(&lru_count);
167
168 list_add_tail(&gl->gl_lru, &lru_list);
Steven Whitehouse627c10b2011-04-14 14:09:52 +0100169 set_bit(GLF_LRU, &gl->gl_flags);
Steven Whitehouse29687a22011-03-30 16:33:25 +0100170 spin_unlock(&lru_lock);
171}
172
Steven Whitehouse4043b882012-01-16 15:46:21 +0000173static void __gfs2_glock_remove_from_lru(struct gfs2_glock *gl)
Steven Whitehousef42ab082011-04-14 16:50:31 +0100174{
Steven Whitehousef42ab082011-04-14 16:50:31 +0100175 if (!list_empty(&gl->gl_lru)) {
176 list_del_init(&gl->gl_lru);
177 atomic_dec(&lru_count);
178 clear_bit(GLF_LRU, &gl->gl_flags);
179 }
Steven Whitehouse4043b882012-01-16 15:46:21 +0000180}
181
182static void gfs2_glock_remove_from_lru(struct gfs2_glock *gl)
183{
184 spin_lock(&lru_lock);
185 __gfs2_glock_remove_from_lru(gl);
Steven Whitehousef42ab082011-04-14 16:50:31 +0100186 spin_unlock(&lru_lock);
187}
188
Benjamin Marzinski8ff22a62009-07-10 18:04:24 -0500189/**
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000190 * __gfs2_glock_schedule_for_reclaim - Add a glock to the reclaim list
Steven Whitehouse97cc1022008-11-20 13:39:47 +0000191 * @gl: the glock
192 *
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000193 * If the glock is demotable, then we add it (or move it) to the end
194 * of the glock LRU list.
Steven Whitehouse97cc1022008-11-20 13:39:47 +0000195 */
196
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000197static void __gfs2_glock_schedule_for_reclaim(struct gfs2_glock *gl)
Steven Whitehouse97cc1022008-11-20 13:39:47 +0000198{
Steven Whitehouse29687a22011-03-30 16:33:25 +0100199 if (demote_ok(gl))
200 gfs2_glock_add_to_lru(gl);
Steven Whitehouse97cc1022008-11-20 13:39:47 +0000201}
202
203/**
Benjamin Marzinski8ff22a62009-07-10 18:04:24 -0500204 * gfs2_glock_put_nolock() - Decrement reference count on glock
205 * @gl: The glock to put
206 *
207 * This function should only be used if the caller has its own reference
208 * to the glock, in addition to the one it is dropping.
209 */
210
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500211void gfs2_glock_put_nolock(struct gfs2_glock *gl)
Benjamin Marzinski8ff22a62009-07-10 18:04:24 -0500212{
213 if (atomic_dec_and_test(&gl->gl_ref))
214 GLOCK_BUG_ON(gl, 1);
Benjamin Marzinski8ff22a62009-07-10 18:04:24 -0500215}
216
217/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000218 * gfs2_glock_put() - Decrement reference count on glock
219 * @gl: The glock to put
220 *
221 */
222
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000223void gfs2_glock_put(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000224{
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000225 struct gfs2_sbd *sdp = gl->gl_sbd;
226 struct address_space *mapping = gfs2_glock2aspace(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000227
Steven Whitehouse4043b882012-01-16 15:46:21 +0000228 if (atomic_dec_and_lock(&gl->gl_ref, &lru_lock)) {
229 __gfs2_glock_remove_from_lru(gl);
230 spin_unlock(&lru_lock);
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000231 spin_lock_bucket(gl->gl_hash);
232 hlist_bl_del_rcu(&gl->gl_list);
233 spin_unlock_bucket(gl->gl_hash);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100234 GLOCK_BUG_ON(gl, !list_empty(&gl->gl_holders));
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000235 GLOCK_BUG_ON(gl, mapping && mapping->nrpages);
236 trace_gfs2_glock_put(gl);
237 sdp->sd_lockstruct.ls_ops->lm_put_lock(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000238 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000239}
240
241/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000242 * search_bucket() - Find struct gfs2_glock by lock number
243 * @bucket: the bucket to search
244 * @name: The lock name
245 *
246 * Returns: NULL, or the struct gfs2_glock with the requested number
247 */
248
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400249static struct gfs2_glock *search_bucket(unsigned int hash,
Steven Whitehouse899be4d2006-08-30 12:50:28 -0400250 const struct gfs2_sbd *sdp,
Steven Whitehoused6a53722006-08-30 11:16:23 -0400251 const struct lm_lockname *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000252{
253 struct gfs2_glock *gl;
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000254 struct hlist_bl_node *h;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000255
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000256 hlist_bl_for_each_entry_rcu(gl, h, &gl_hash_table[hash], gl_list) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000257 if (!lm_name_equal(&gl->gl_name, name))
258 continue;
Steven Whitehouse899be4d2006-08-30 12:50:28 -0400259 if (gl->gl_sbd != sdp)
260 continue;
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000261 if (atomic_inc_not_zero(&gl->gl_ref))
262 return gl;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000263 }
264
265 return NULL;
266}
267
268/**
Steven Whitehouse6802e342008-05-21 17:03:22 +0100269 * may_grant - check if its ok to grant a new lock
270 * @gl: The glock
271 * @gh: The lock request which we wish to grant
272 *
273 * Returns: true if its ok to grant the lock
274 */
275
276static inline int may_grant(const struct gfs2_glock *gl, const struct gfs2_holder *gh)
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500277{
Steven Whitehouse6802e342008-05-21 17:03:22 +0100278 const struct gfs2_holder *gh_head = list_entry(gl->gl_holders.next, const struct gfs2_holder, gh_list);
279 if ((gh->gh_state == LM_ST_EXCLUSIVE ||
280 gh_head->gh_state == LM_ST_EXCLUSIVE) && gh != gh_head)
281 return 0;
282 if (gl->gl_state == gh->gh_state)
283 return 1;
284 if (gh->gh_flags & GL_EXACT)
285 return 0;
Steven Whitehouse209806a2008-07-07 10:07:28 +0100286 if (gl->gl_state == LM_ST_EXCLUSIVE) {
287 if (gh->gh_state == LM_ST_SHARED && gh_head->gh_state == LM_ST_SHARED)
288 return 1;
289 if (gh->gh_state == LM_ST_DEFERRED && gh_head->gh_state == LM_ST_DEFERRED)
290 return 1;
291 }
Steven Whitehouse6802e342008-05-21 17:03:22 +0100292 if (gl->gl_state != LM_ST_UNLOCKED && (gh->gh_flags & LM_FLAG_ANY))
293 return 1;
294 return 0;
295}
296
297static void gfs2_holder_wake(struct gfs2_holder *gh)
298{
299 clear_bit(HIF_WAIT, &gh->gh_iflags);
300 smp_mb__after_clear_bit();
301 wake_up_bit(&gh->gh_iflags, HIF_WAIT);
302}
303
304/**
Steven Whitehoused5341a92010-07-23 14:05:51 +0100305 * do_error - Something unexpected has happened during a lock request
306 *
307 */
308
309static inline void do_error(struct gfs2_glock *gl, const int ret)
310{
311 struct gfs2_holder *gh, *tmp;
312
313 list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) {
314 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
315 continue;
316 if (ret & LM_OUT_ERROR)
317 gh->gh_error = -EIO;
318 else if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))
319 gh->gh_error = GLR_TRYFAILED;
320 else
321 continue;
322 list_del_init(&gh->gh_list);
323 trace_gfs2_glock_queue(gh, 0);
324 gfs2_holder_wake(gh);
325 }
326}
327
328/**
Steven Whitehouse6802e342008-05-21 17:03:22 +0100329 * do_promote - promote as many requests as possible on the current queue
330 * @gl: The glock
331 *
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000332 * Returns: 1 if there is a blocked holder at the head of the list, or 2
333 * if a type specific operation is underway.
Steven Whitehouse6802e342008-05-21 17:03:22 +0100334 */
335
336static int do_promote(struct gfs2_glock *gl)
Harvey Harrison55ba4742008-10-24 11:31:12 -0700337__releases(&gl->gl_spin)
338__acquires(&gl->gl_spin)
Steven Whitehouse6802e342008-05-21 17:03:22 +0100339{
340 const struct gfs2_glock_operations *glops = gl->gl_ops;
341 struct gfs2_holder *gh, *tmp;
342 int ret;
343
344restart:
345 list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) {
346 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
347 continue;
348 if (may_grant(gl, gh)) {
349 if (gh->gh_list.prev == &gl->gl_holders &&
350 glops->go_lock) {
351 spin_unlock(&gl->gl_spin);
352 /* FIXME: eliminate this eventually */
353 ret = glops->go_lock(gh);
354 spin_lock(&gl->gl_spin);
355 if (ret) {
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000356 if (ret == 1)
357 return 2;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100358 gh->gh_error = ret;
359 list_del_init(&gh->gh_list);
Steven Whitehouse63997772009-06-12 08:49:20 +0100360 trace_gfs2_glock_queue(gh, 0);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100361 gfs2_holder_wake(gh);
362 goto restart;
363 }
364 set_bit(HIF_HOLDER, &gh->gh_iflags);
Steven Whitehouse63997772009-06-12 08:49:20 +0100365 trace_gfs2_promote(gh, 1);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100366 gfs2_holder_wake(gh);
367 goto restart;
368 }
369 set_bit(HIF_HOLDER, &gh->gh_iflags);
Steven Whitehouse63997772009-06-12 08:49:20 +0100370 trace_gfs2_promote(gh, 0);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100371 gfs2_holder_wake(gh);
372 continue;
373 }
374 if (gh->gh_list.prev == &gl->gl_holders)
375 return 1;
Steven Whitehoused5341a92010-07-23 14:05:51 +0100376 do_error(gl, 0);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100377 break;
378 }
379 return 0;
380}
381
382/**
Steven Whitehouse6802e342008-05-21 17:03:22 +0100383 * find_first_waiter - find the first gh that's waiting for the glock
384 * @gl: the glock
385 */
386
387static inline struct gfs2_holder *find_first_waiter(const struct gfs2_glock *gl)
388{
389 struct gfs2_holder *gh;
390
391 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
392 if (!test_bit(HIF_HOLDER, &gh->gh_iflags))
393 return gh;
394 }
395 return NULL;
396}
397
398/**
399 * state_change - record that the glock is now in a different state
400 * @gl: the glock
401 * @new_state the new state
402 *
403 */
404
405static void state_change(struct gfs2_glock *gl, unsigned int new_state)
406{
407 int held1, held2;
408
409 held1 = (gl->gl_state != LM_ST_UNLOCKED);
410 held2 = (new_state != LM_ST_UNLOCKED);
411
412 if (held1 != held2) {
413 if (held2)
414 gfs2_glock_hold(gl);
415 else
Benjamin Marzinski8ff22a62009-07-10 18:04:24 -0500416 gfs2_glock_put_nolock(gl);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100417 }
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +0100418 if (held1 && held2 && list_empty(&gl->gl_holders))
419 clear_bit(GLF_QUEUED, &gl->gl_flags);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100420
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400421 if (new_state != gl->gl_target)
422 /* shorten our minimum hold time */
423 gl->gl_hold_time = max(gl->gl_hold_time - GL_GLOCK_HOLD_DECR,
424 GL_GLOCK_MIN_HOLD);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100425 gl->gl_state = new_state;
426 gl->gl_tchange = jiffies;
427}
428
429static void gfs2_demote_wake(struct gfs2_glock *gl)
430{
431 gl->gl_demote_state = LM_ST_EXCLUSIVE;
432 clear_bit(GLF_DEMOTE, &gl->gl_flags);
433 smp_mb__after_clear_bit();
434 wake_up_bit(&gl->gl_flags, GLF_DEMOTE);
435}
436
437/**
438 * finish_xmote - The DLM has replied to one of our lock requests
439 * @gl: The glock
440 * @ret: The status from the DLM
441 *
442 */
443
444static void finish_xmote(struct gfs2_glock *gl, unsigned int ret)
445{
446 const struct gfs2_glock_operations *glops = gl->gl_ops;
447 struct gfs2_holder *gh;
448 unsigned state = ret & LM_OUT_ST_MASK;
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000449 int rv;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500450
451 spin_lock(&gl->gl_spin);
Steven Whitehouse63997772009-06-12 08:49:20 +0100452 trace_gfs2_glock_state_change(gl, state);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100453 state_change(gl, state);
454 gh = find_first_waiter(gl);
455
456 /* Demote to UN request arrived during demote to SH or DF */
457 if (test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags) &&
458 state != LM_ST_UNLOCKED && gl->gl_demote_state == LM_ST_UNLOCKED)
459 gl->gl_target = LM_ST_UNLOCKED;
460
461 /* Check for state != intended state */
462 if (unlikely(state != gl->gl_target)) {
463 if (gh && !test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags)) {
464 /* move to back of queue and try next entry */
465 if (ret & LM_OUT_CANCELED) {
466 if ((gh->gh_flags & LM_FLAG_PRIORITY) == 0)
467 list_move_tail(&gh->gh_list, &gl->gl_holders);
468 gh = find_first_waiter(gl);
469 gl->gl_target = gh->gh_state;
470 goto retry;
471 }
472 /* Some error or failed "try lock" - report it */
473 if ((ret & LM_OUT_ERROR) ||
474 (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) {
475 gl->gl_target = gl->gl_state;
476 do_error(gl, ret);
477 goto out;
478 }
479 }
480 switch(state) {
481 /* Unlocked due to conversion deadlock, try again */
482 case LM_ST_UNLOCKED:
483retry:
484 do_xmote(gl, gh, gl->gl_target);
485 break;
486 /* Conversion fails, unlock and try again */
487 case LM_ST_SHARED:
488 case LM_ST_DEFERRED:
489 do_xmote(gl, gh, LM_ST_UNLOCKED);
490 break;
491 default: /* Everything else */
492 printk(KERN_ERR "GFS2: wanted %u got %u\n", gl->gl_target, state);
493 GLOCK_BUG_ON(gl, 1);
494 }
495 spin_unlock(&gl->gl_spin);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100496 return;
497 }
498
499 /* Fast path - we got what we asked for */
500 if (test_and_clear_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags))
501 gfs2_demote_wake(gl);
502 if (state != LM_ST_UNLOCKED) {
503 if (glops->go_xmote_bh) {
Steven Whitehouse6802e342008-05-21 17:03:22 +0100504 spin_unlock(&gl->gl_spin);
505 rv = glops->go_xmote_bh(gl, gh);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100506 spin_lock(&gl->gl_spin);
507 if (rv) {
508 do_error(gl, rv);
509 goto out;
510 }
511 }
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000512 rv = do_promote(gl);
513 if (rv == 2)
514 goto out_locked;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100515 }
516out:
517 clear_bit(GLF_LOCK, &gl->gl_flags);
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000518out_locked:
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500519 spin_unlock(&gl->gl_spin);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500520}
521
Steven Whitehouse6802e342008-05-21 17:03:22 +0100522/**
523 * do_xmote - Calls the DLM to change the state of a lock
524 * @gl: The lock state
525 * @gh: The holder (only for promotes)
526 * @target: The target lock state
527 *
528 */
529
530static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target)
Harvey Harrison55ba4742008-10-24 11:31:12 -0700531__releases(&gl->gl_spin)
532__acquires(&gl->gl_spin)
Steven Whitehouse6802e342008-05-21 17:03:22 +0100533{
534 const struct gfs2_glock_operations *glops = gl->gl_ops;
535 struct gfs2_sbd *sdp = gl->gl_sbd;
536 unsigned int lck_flags = gh ? gh->gh_flags : 0;
537 int ret;
538
539 lck_flags &= (LM_FLAG_TRY | LM_FLAG_TRY_1CB | LM_FLAG_NOEXP |
540 LM_FLAG_PRIORITY);
Steven Whitehouse921169c2010-11-29 12:50:38 +0000541 GLOCK_BUG_ON(gl, gl->gl_state == target);
542 GLOCK_BUG_ON(gl, gl->gl_state == gl->gl_target);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100543 if ((target == LM_ST_UNLOCKED || target == LM_ST_DEFERRED) &&
544 glops->go_inval) {
545 set_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags);
546 do_error(gl, 0); /* Fail queued try locks */
547 }
Steven Whitehouse47a25382010-11-30 15:49:31 +0000548 gl->gl_req = target;
Steven Whitehousea2457692012-01-20 10:38:36 +0000549 set_bit(GLF_BLOCKING, &gl->gl_flags);
550 if ((gl->gl_req == LM_ST_UNLOCKED) ||
551 (gl->gl_state == LM_ST_EXCLUSIVE) ||
552 (lck_flags & (LM_FLAG_TRY|LM_FLAG_TRY_1CB)))
553 clear_bit(GLF_BLOCKING, &gl->gl_flags);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100554 spin_unlock(&gl->gl_spin);
555 if (glops->go_xmote_th)
556 glops->go_xmote_th(gl);
557 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags))
558 glops->go_inval(gl, target == LM_ST_DEFERRED ? 0 : DIO_METADATA);
559 clear_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags);
560
561 gfs2_glock_hold(gl);
Steven Whitehouse921169c2010-11-29 12:50:38 +0000562 if (sdp->sd_lockstruct.ls_ops->lm_lock) {
563 /* lock_dlm */
564 ret = sdp->sd_lockstruct.ls_ops->lm_lock(gl, target, lck_flags);
565 GLOCK_BUG_ON(gl, ret);
566 } else { /* lock_nolock */
567 finish_xmote(gl, target);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100568 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
569 gfs2_glock_put(gl);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100570 }
Steven Whitehouse921169c2010-11-29 12:50:38 +0000571
Steven Whitehouse6802e342008-05-21 17:03:22 +0100572 spin_lock(&gl->gl_spin);
573}
574
575/**
576 * find_first_holder - find the first "holder" gh
577 * @gl: the glock
578 */
579
580static inline struct gfs2_holder *find_first_holder(const struct gfs2_glock *gl)
581{
582 struct gfs2_holder *gh;
583
584 if (!list_empty(&gl->gl_holders)) {
585 gh = list_entry(gl->gl_holders.next, struct gfs2_holder, gh_list);
586 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
587 return gh;
588 }
589 return NULL;
590}
591
592/**
593 * run_queue - do all outstanding tasks related to a glock
594 * @gl: The glock in question
595 * @nonblock: True if we must not block in run_queue
596 *
597 */
598
599static void run_queue(struct gfs2_glock *gl, const int nonblock)
Harvey Harrison55ba4742008-10-24 11:31:12 -0700600__releases(&gl->gl_spin)
601__acquires(&gl->gl_spin)
Steven Whitehouse6802e342008-05-21 17:03:22 +0100602{
603 struct gfs2_holder *gh = NULL;
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000604 int ret;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100605
606 if (test_and_set_bit(GLF_LOCK, &gl->gl_flags))
607 return;
608
609 GLOCK_BUG_ON(gl, test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags));
610
611 if (test_bit(GLF_DEMOTE, &gl->gl_flags) &&
612 gl->gl_demote_state != gl->gl_state) {
613 if (find_first_holder(gl))
Steven Whitehoused8348de2009-02-05 10:12:38 +0000614 goto out_unlock;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100615 if (nonblock)
616 goto out_sched;
617 set_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags);
Steven Whitehouse265d529c2008-07-07 10:02:36 +0100618 GLOCK_BUG_ON(gl, gl->gl_demote_state == LM_ST_EXCLUSIVE);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100619 gl->gl_target = gl->gl_demote_state;
620 } else {
621 if (test_bit(GLF_DEMOTE, &gl->gl_flags))
622 gfs2_demote_wake(gl);
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000623 ret = do_promote(gl);
624 if (ret == 0)
Steven Whitehoused8348de2009-02-05 10:12:38 +0000625 goto out_unlock;
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000626 if (ret == 2)
Steven Whitehousea228df62009-04-07 14:01:34 +0100627 goto out;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100628 gh = find_first_waiter(gl);
629 gl->gl_target = gh->gh_state;
630 if (!(gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)))
631 do_error(gl, 0); /* Fail queued try locks */
632 }
633 do_xmote(gl, gh, gl->gl_target);
Steven Whitehousea228df62009-04-07 14:01:34 +0100634out:
Steven Whitehouse6802e342008-05-21 17:03:22 +0100635 return;
636
637out_sched:
Steven Whitehouse7e71c552009-09-22 10:56:16 +0100638 clear_bit(GLF_LOCK, &gl->gl_flags);
639 smp_mb__after_clear_bit();
Steven Whitehouse6802e342008-05-21 17:03:22 +0100640 gfs2_glock_hold(gl);
641 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
Benjamin Marzinski8ff22a62009-07-10 18:04:24 -0500642 gfs2_glock_put_nolock(gl);
Steven Whitehouse7e71c552009-09-22 10:56:16 +0100643 return;
644
Steven Whitehoused8348de2009-02-05 10:12:38 +0000645out_unlock:
Steven Whitehouse6802e342008-05-21 17:03:22 +0100646 clear_bit(GLF_LOCK, &gl->gl_flags);
Steven Whitehouse7e71c552009-09-22 10:56:16 +0100647 smp_mb__after_clear_bit();
648 return;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100649}
650
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500651static void delete_work_func(struct work_struct *work)
652{
653 struct gfs2_glock *gl = container_of(work, struct gfs2_glock, gl_delete);
654 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse044b9412010-11-03 20:01:07 +0000655 struct gfs2_inode *ip;
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500656 struct inode *inode;
Steven Whitehouse044b9412010-11-03 20:01:07 +0000657 u64 no_addr = gl->gl_name.ln_number;
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500658
Steven Whitehouse044b9412010-11-03 20:01:07 +0000659 ip = gl->gl_object;
660 /* Note: Unsafe to dereference ip as we don't hold right refs/locks */
661
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500662 if (ip)
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100663 inode = gfs2_ilookup(sdp->sd_vfs, no_addr, 1);
Steven Whitehouse044b9412010-11-03 20:01:07 +0000664 else
665 inode = gfs2_lookup_by_inum(sdp, no_addr, NULL, GFS2_BLKST_UNLINKED);
666 if (inode && !IS_ERR(inode)) {
667 d_prune_aliases(inode);
668 iput(inode);
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500669 }
670 gfs2_glock_put(gl);
671}
672
Steven Whitehouse6802e342008-05-21 17:03:22 +0100673static void glock_work_func(struct work_struct *work)
674{
675 unsigned long delay = 0;
676 struct gfs2_glock *gl = container_of(work, struct gfs2_glock, gl_work.work);
Steven Whitehouse26bb7502009-11-27 10:31:11 +0000677 int drop_ref = 0;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100678
Steven Whitehouse26bb7502009-11-27 10:31:11 +0000679 if (test_and_clear_bit(GLF_REPLY_PENDING, &gl->gl_flags)) {
Steven Whitehouse6802e342008-05-21 17:03:22 +0100680 finish_xmote(gl, gl->gl_reply);
Steven Whitehouse26bb7502009-11-27 10:31:11 +0000681 drop_ref = 1;
682 }
Steven Whitehouse6802e342008-05-21 17:03:22 +0100683 spin_lock(&gl->gl_spin);
Bob Petersonf90e5b52011-05-24 10:44:42 -0400684 if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
Steven Whitehouse265d529c2008-07-07 10:02:36 +0100685 gl->gl_state != LM_ST_UNLOCKED &&
686 gl->gl_demote_state != LM_ST_EXCLUSIVE) {
Steven Whitehouse6802e342008-05-21 17:03:22 +0100687 unsigned long holdtime, now = jiffies;
Bob Petersonf90e5b52011-05-24 10:44:42 -0400688
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400689 holdtime = gl->gl_tchange + gl->gl_hold_time;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100690 if (time_before(now, holdtime))
691 delay = holdtime - now;
Bob Petersonf90e5b52011-05-24 10:44:42 -0400692
693 if (!delay) {
694 clear_bit(GLF_PENDING_DEMOTE, &gl->gl_flags);
695 set_bit(GLF_DEMOTE, &gl->gl_flags);
696 }
Steven Whitehouse6802e342008-05-21 17:03:22 +0100697 }
698 run_queue(gl, 0);
699 spin_unlock(&gl->gl_spin);
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400700 if (!delay)
Steven Whitehouse6802e342008-05-21 17:03:22 +0100701 gfs2_glock_put(gl);
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400702 else {
703 if (gl->gl_name.ln_type != LM_TYPE_INODE)
704 delay = 0;
705 if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
706 gfs2_glock_put(gl);
707 }
Steven Whitehouse26bb7502009-11-27 10:31:11 +0000708 if (drop_ref)
709 gfs2_glock_put(gl);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100710}
711
David Teiglandb3b94fa2006-01-16 16:50:04 +0000712/**
713 * gfs2_glock_get() - Get a glock, or create one if one doesn't exist
714 * @sdp: The GFS2 superblock
715 * @number: the lock number
716 * @glops: The glock_operations to use
717 * @create: If 0, don't create the glock if it doesn't exist
718 * @glp: the glock is returned here
719 *
720 * This does not lock a glock, just finds/creates structures for one.
721 *
722 * Returns: errno
723 */
724
Steven Whitehousecd915492006-09-04 12:49:07 -0400725int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number,
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400726 const struct gfs2_glock_operations *glops, int create,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000727 struct gfs2_glock **glp)
728{
Steven Whitehouse009d8512009-12-08 12:12:13 +0000729 struct super_block *s = sdp->sd_vfs;
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400730 struct lm_lockname name = { .ln_number = number, .ln_type = glops->go_type };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000731 struct gfs2_glock *gl, *tmp;
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400732 unsigned int hash = gl_hash(sdp, &name);
Steven Whitehouse009d8512009-12-08 12:12:13 +0000733 struct address_space *mapping;
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000734 struct kmem_cache *cachep;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000735
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000736 rcu_read_lock();
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400737 gl = search_bucket(hash, sdp, &name);
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000738 rcu_read_unlock();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000739
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000740 *glp = gl;
741 if (gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000742 return 0;
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000743 if (!create)
744 return -ENOENT;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000745
Steven Whitehouse009d8512009-12-08 12:12:13 +0000746 if (glops->go_flags & GLOF_ASPACE)
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000747 cachep = gfs2_glock_aspace_cachep;
Steven Whitehouse009d8512009-12-08 12:12:13 +0000748 else
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000749 cachep = gfs2_glock_cachep;
750 gl = kmem_cache_alloc(cachep, GFP_KERNEL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000751 if (!gl)
752 return -ENOMEM;
753
Steven Whitehouse8f052282010-01-29 15:21:27 +0000754 atomic_inc(&sdp->sd_glock_disposal);
Steven Whitehousea2457692012-01-20 10:38:36 +0000755 gl->gl_sbd = sdp;
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400756 gl->gl_flags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000757 gl->gl_name = name;
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400758 atomic_set(&gl->gl_ref, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000759 gl->gl_state = LM_ST_UNLOCKED;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100760 gl->gl_target = LM_ST_UNLOCKED;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500761 gl->gl_demote_state = LM_ST_EXCLUSIVE;
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400762 gl->gl_hash = hash;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000763 gl->gl_ops = glops;
Steven Whitehousea2457692012-01-20 10:38:36 +0000764 gl->gl_dstamp = ktime_set(0, 0);
765 preempt_disable();
766 /* We use the global stats to estimate the initial per-glock stats */
767 gl->gl_stats = this_cpu_ptr(sdp->sd_lkstats)->lkstats[glops->go_type];
768 preempt_enable();
769 gl->gl_stats.stats[GFS2_LKS_DCOUNT] = 0;
770 gl->gl_stats.stats[GFS2_LKS_QCOUNT] = 0;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000771 memset(&gl->gl_lksb, 0, sizeof(struct dlm_lksb));
Benjamin Marzinski90306c42012-05-29 23:01:09 -0500772 memset(gl->gl_lvb, 0, 32 * sizeof(char));
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000773 gl->gl_lksb.sb_lvbptr = gl->gl_lvb;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500774 gl->gl_tchange = jiffies;
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400775 gl->gl_object = NULL;
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400776 gl->gl_hold_time = GL_GLOCK_DFT_HOLD;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500777 INIT_DELAYED_WORK(&gl->gl_work, glock_work_func);
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500778 INIT_WORK(&gl->gl_delete, delete_work_func);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000779
Steven Whitehouse009d8512009-12-08 12:12:13 +0000780 mapping = gfs2_glock2aspace(gl);
781 if (mapping) {
782 mapping->a_ops = &gfs2_meta_aops;
783 mapping->host = s->s_bdev->bd_inode;
784 mapping->flags = 0;
785 mapping_set_gfp_mask(mapping, GFP_NOFS);
786 mapping->assoc_mapping = NULL;
787 mapping->backing_dev_info = s->s_bdi;
788 mapping->writeback_index = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000789 }
790
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000791 spin_lock_bucket(hash);
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400792 tmp = search_bucket(hash, sdp, &name);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000793 if (tmp) {
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000794 spin_unlock_bucket(hash);
795 kmem_cache_free(cachep, gl);
Steven Whitehousefc0e38d2011-03-09 10:58:04 +0000796 atomic_dec(&sdp->sd_glock_disposal);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000797 gl = tmp;
798 } else {
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000799 hlist_bl_add_head_rcu(&gl->gl_list, &gl_hash_table[hash]);
800 spin_unlock_bucket(hash);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000801 }
802
803 *glp = gl;
804
805 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000806}
807
808/**
809 * gfs2_holder_init - initialize a struct gfs2_holder in the default way
810 * @gl: the glock
811 * @state: the state we're requesting
812 * @flags: the modifier flags
813 * @gh: the holder structure
814 *
815 */
816
Steven Whitehouse190562b2006-04-20 16:57:23 -0400817void gfs2_holder_init(struct gfs2_glock *gl, unsigned int state, unsigned flags,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000818 struct gfs2_holder *gh)
819{
820 INIT_LIST_HEAD(&gh->gh_list);
821 gh->gh_gl = gl;
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500822 gh->gh_ip = (unsigned long)__builtin_return_address(0);
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -0800823 gh->gh_owner_pid = get_pid(task_pid(current));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000824 gh->gh_state = state;
825 gh->gh_flags = flags;
826 gh->gh_error = 0;
827 gh->gh_iflags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000828 gfs2_glock_hold(gl);
829}
830
831/**
832 * gfs2_holder_reinit - reinitialize a struct gfs2_holder so we can requeue it
833 * @state: the state we're requesting
834 * @flags: the modifier flags
835 * @gh: the holder structure
836 *
837 * Don't mess with the glock.
838 *
839 */
840
Steven Whitehouse190562b2006-04-20 16:57:23 -0400841void gfs2_holder_reinit(unsigned int state, unsigned flags, struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000842{
843 gh->gh_state = state;
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400844 gh->gh_flags = flags;
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000845 gh->gh_iflags = 0;
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500846 gh->gh_ip = (unsigned long)__builtin_return_address(0);
Bob Peterson1a0eae82010-04-14 11:58:16 -0400847 if (gh->gh_owner_pid)
848 put_pid(gh->gh_owner_pid);
849 gh->gh_owner_pid = get_pid(task_pid(current));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000850}
851
852/**
853 * gfs2_holder_uninit - uninitialize a holder structure (drop glock reference)
854 * @gh: the holder structure
855 *
856 */
857
858void gfs2_holder_uninit(struct gfs2_holder *gh)
859{
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -0800860 put_pid(gh->gh_owner_pid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000861 gfs2_glock_put(gh->gh_gl);
862 gh->gh_gl = NULL;
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500863 gh->gh_ip = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000864}
865
Steven Whitehousefe64d512009-05-19 10:01:18 +0100866/**
867 * gfs2_glock_holder_wait
868 * @word: unused
869 *
870 * This function and gfs2_glock_demote_wait both show up in the WCHAN
871 * field. Thus I've separated these otherwise identical functions in
872 * order to be more informative to the user.
873 */
874
875static int gfs2_glock_holder_wait(void *word)
Steven Whitehousefee852e2007-01-17 15:33:23 +0000876{
877 schedule();
878 return 0;
879}
880
Steven Whitehousefe64d512009-05-19 10:01:18 +0100881static int gfs2_glock_demote_wait(void *word)
882{
883 schedule();
884 return 0;
885}
886
Steven Whitehousefee852e2007-01-17 15:33:23 +0000887static void wait_on_holder(struct gfs2_holder *gh)
888{
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400889 unsigned long time1 = jiffies;
890
Steven Whitehousefee852e2007-01-17 15:33:23 +0000891 might_sleep();
Steven Whitehousefe64d512009-05-19 10:01:18 +0100892 wait_on_bit(&gh->gh_iflags, HIF_WAIT, gfs2_glock_holder_wait, TASK_UNINTERRUPTIBLE);
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400893 if (time_after(jiffies, time1 + HZ)) /* have we waited > a second? */
894 /* Lengthen the minimum hold time. */
895 gh->gh_gl->gl_hold_time = min(gh->gh_gl->gl_hold_time +
896 GL_GLOCK_HOLD_INCR,
897 GL_GLOCK_MAX_HOLD);
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100898}
899
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100900static void wait_on_demote(struct gfs2_glock *gl)
901{
902 might_sleep();
Steven Whitehousefe64d512009-05-19 10:01:18 +0100903 wait_on_bit(&gl->gl_flags, GLF_DEMOTE, gfs2_glock_demote_wait, TASK_UNINTERRUPTIBLE);
Steven Whitehousefee852e2007-01-17 15:33:23 +0000904}
905
David Teiglandb3b94fa2006-01-16 16:50:04 +0000906/**
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000907 * handle_callback - process a demote request
David Teiglandb3b94fa2006-01-16 16:50:04 +0000908 * @gl: the glock
909 * @state: the state the caller wants us to change to
910 *
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000911 * There are only two requests that we are going to see in actual
912 * practise: LM_ST_SHARED and LM_ST_UNLOCKED
David Teiglandb3b94fa2006-01-16 16:50:04 +0000913 */
914
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500915static void handle_callback(struct gfs2_glock *gl, unsigned int state,
Steven Whitehouse97cc1022008-11-20 13:39:47 +0000916 unsigned long delay)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000917{
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500918 int bit = delay ? GLF_PENDING_DEMOTE : GLF_DEMOTE;
919
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500920 set_bit(bit, &gl->gl_flags);
921 if (gl->gl_demote_state == LM_ST_EXCLUSIVE) {
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000922 gl->gl_demote_state = state;
923 gl->gl_demote_time = jiffies;
Josef Whiter26caee52007-07-23 10:02:40 +0100924 } else if (gl->gl_demote_state != LM_ST_UNLOCKED &&
925 gl->gl_demote_state != state) {
Steven Whitehouse6802e342008-05-21 17:03:22 +0100926 gl->gl_demote_state = LM_ST_UNLOCKED;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000927 }
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500928 if (gl->gl_ops->go_callback)
929 gl->gl_ops->go_callback(gl);
Steven Whitehouse63997772009-06-12 08:49:20 +0100930 trace_gfs2_demote_rq(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000931}
932
933/**
Steven Whitehouse6802e342008-05-21 17:03:22 +0100934 * gfs2_glock_wait - wait on a glock acquisition
David Teiglandb3b94fa2006-01-16 16:50:04 +0000935 * @gh: the glock holder
936 *
937 * Returns: 0 on success
938 */
939
Steven Whitehouse6802e342008-05-21 17:03:22 +0100940int gfs2_glock_wait(struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000941{
Steven Whitehousefee852e2007-01-17 15:33:23 +0000942 wait_on_holder(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000943 return gh->gh_error;
944}
945
Steven Whitehouse6802e342008-05-21 17:03:22 +0100946void gfs2_print_dbg(struct seq_file *seq, const char *fmt, ...)
Robert Peterson7c52b162007-03-16 10:26:37 +0000947{
Joe Perches5e690692010-11-09 16:35:20 -0800948 struct va_format vaf;
Robert Peterson7c52b162007-03-16 10:26:37 +0000949 va_list args;
950
951 va_start(args, fmt);
Joe Perches5e690692010-11-09 16:35:20 -0800952
Steven Whitehouse6802e342008-05-21 17:03:22 +0100953 if (seq) {
954 struct gfs2_glock_iter *gi = seq->private;
Robert Peterson7c52b162007-03-16 10:26:37 +0000955 vsprintf(gi->string, fmt, args);
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +0100956 seq_puts(seq, gi->string);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100957 } else {
Joe Perches5e690692010-11-09 16:35:20 -0800958 vaf.fmt = fmt;
959 vaf.va = &args;
960
961 printk(KERN_ERR " %pV", &vaf);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100962 }
Joe Perches5e690692010-11-09 16:35:20 -0800963
Robert Peterson7c52b162007-03-16 10:26:37 +0000964 va_end(args);
965}
966
David Teiglandb3b94fa2006-01-16 16:50:04 +0000967/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000968 * add_to_queue - Add a holder to the wait queue (but look for recursion)
969 * @gh: the holder structure to add
970 *
Steven Whitehouse6802e342008-05-21 17:03:22 +0100971 * Eventually we should move the recursive locking trap to a
972 * debugging option or something like that. This is the fast
973 * path and needs to have the minimum number of distractions.
974 *
David Teiglandb3b94fa2006-01-16 16:50:04 +0000975 */
976
Steven Whitehouse6802e342008-05-21 17:03:22 +0100977static inline void add_to_queue(struct gfs2_holder *gh)
Harvey Harrison55ba4742008-10-24 11:31:12 -0700978__releases(&gl->gl_spin)
979__acquires(&gl->gl_spin)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000980{
981 struct gfs2_glock *gl = gh->gh_gl;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100982 struct gfs2_sbd *sdp = gl->gl_sbd;
983 struct list_head *insert_pt = NULL;
984 struct gfs2_holder *gh2;
985 int try_lock = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000986
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -0800987 BUG_ON(gh->gh_owner_pid == NULL);
Steven Whitehousefee852e2007-01-17 15:33:23 +0000988 if (test_and_set_bit(HIF_WAIT, &gh->gh_iflags))
989 BUG();
Steven Whitehouse190562b2006-04-20 16:57:23 -0400990
Steven Whitehouse6802e342008-05-21 17:03:22 +0100991 if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) {
992 if (test_bit(GLF_LOCK, &gl->gl_flags))
993 try_lock = 1;
994 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags))
995 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000996 }
997
Steven Whitehouse6802e342008-05-21 17:03:22 +0100998 list_for_each_entry(gh2, &gl->gl_holders, gh_list) {
999 if (unlikely(gh2->gh_owner_pid == gh->gh_owner_pid &&
1000 (gh->gh_gl->gl_ops->go_type != LM_TYPE_FLOCK)))
1001 goto trap_recursive;
1002 if (try_lock &&
1003 !(gh2->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) &&
1004 !may_grant(gl, gh)) {
1005fail:
1006 gh->gh_error = GLR_TRYFAILED;
1007 gfs2_holder_wake(gh);
1008 return;
1009 }
1010 if (test_bit(HIF_HOLDER, &gh2->gh_iflags))
1011 continue;
1012 if (unlikely((gh->gh_flags & LM_FLAG_PRIORITY) && !insert_pt))
1013 insert_pt = &gh2->gh_list;
1014 }
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +01001015 set_bit(GLF_QUEUED, &gl->gl_flags);
Steven Whitehouseedae38a2011-01-31 09:38:12 +00001016 trace_gfs2_glock_queue(gh, 1);
Steven Whitehousea2457692012-01-20 10:38:36 +00001017 gfs2_glstats_inc(gl, GFS2_LKS_QCOUNT);
1018 gfs2_sbstats_inc(gl, GFS2_LKS_QCOUNT);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001019 if (likely(insert_pt == NULL)) {
1020 list_add_tail(&gh->gh_list, &gl->gl_holders);
1021 if (unlikely(gh->gh_flags & LM_FLAG_PRIORITY))
1022 goto do_cancel;
1023 return;
1024 }
1025 list_add_tail(&gh->gh_list, insert_pt);
1026do_cancel:
1027 gh = list_entry(gl->gl_holders.next, struct gfs2_holder, gh_list);
1028 if (!(gh->gh_flags & LM_FLAG_PRIORITY)) {
1029 spin_unlock(&gl->gl_spin);
Steven Whitehouse048bca22008-05-23 14:46:04 +01001030 if (sdp->sd_lockstruct.ls_ops->lm_cancel)
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001031 sdp->sd_lockstruct.ls_ops->lm_cancel(gl);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001032 spin_lock(&gl->gl_spin);
1033 }
1034 return;
1035
1036trap_recursive:
1037 print_symbol(KERN_ERR "original: %s\n", gh2->gh_ip);
1038 printk(KERN_ERR "pid: %d\n", pid_nr(gh2->gh_owner_pid));
1039 printk(KERN_ERR "lock type: %d req lock state : %d\n",
1040 gh2->gh_gl->gl_name.ln_type, gh2->gh_state);
1041 print_symbol(KERN_ERR "new: %s\n", gh->gh_ip);
1042 printk(KERN_ERR "pid: %d\n", pid_nr(gh->gh_owner_pid));
1043 printk(KERN_ERR "lock type: %d req lock state : %d\n",
1044 gh->gh_gl->gl_name.ln_type, gh->gh_state);
1045 __dump_glock(NULL, gl);
1046 BUG();
David Teiglandb3b94fa2006-01-16 16:50:04 +00001047}
1048
1049/**
1050 * gfs2_glock_nq - enqueue a struct gfs2_holder onto a glock (acquire a glock)
1051 * @gh: the holder structure
1052 *
1053 * if (gh->gh_flags & GL_ASYNC), this never returns an error
1054 *
1055 * Returns: 0, GLR_TRYFAILED, or errno on failure
1056 */
1057
1058int gfs2_glock_nq(struct gfs2_holder *gh)
1059{
1060 struct gfs2_glock *gl = gh->gh_gl;
1061 struct gfs2_sbd *sdp = gl->gl_sbd;
1062 int error = 0;
1063
Steven Whitehouse6802e342008-05-21 17:03:22 +01001064 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001065 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001066
Steven Whitehousef42ab082011-04-14 16:50:31 +01001067 if (test_bit(GLF_LRU, &gl->gl_flags))
1068 gfs2_glock_remove_from_lru(gl);
1069
David Teiglandb3b94fa2006-01-16 16:50:04 +00001070 spin_lock(&gl->gl_spin);
1071 add_to_queue(gh);
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001072 if ((LM_FLAG_NOEXP & gh->gh_flags) &&
1073 test_and_clear_bit(GLF_FROZEN, &gl->gl_flags))
1074 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001075 run_queue(gl, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001076 spin_unlock(&gl->gl_spin);
1077
Steven Whitehouse6802e342008-05-21 17:03:22 +01001078 if (!(gh->gh_flags & GL_ASYNC))
1079 error = gfs2_glock_wait(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001080
David Teiglandb3b94fa2006-01-16 16:50:04 +00001081 return error;
1082}
1083
1084/**
1085 * gfs2_glock_poll - poll to see if an async request has been completed
1086 * @gh: the holder
1087 *
1088 * Returns: 1 if the request is ready to be gfs2_glock_wait()ed on
1089 */
1090
1091int gfs2_glock_poll(struct gfs2_holder *gh)
1092{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001093 return test_bit(HIF_WAIT, &gh->gh_iflags) ? 0 : 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001094}
1095
1096/**
1097 * gfs2_glock_dq - dequeue a struct gfs2_holder from a glock (release a glock)
1098 * @gh: the glock holder
1099 *
1100 */
1101
1102void gfs2_glock_dq(struct gfs2_holder *gh)
1103{
1104 struct gfs2_glock *gl = gh->gh_gl;
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001105 const struct gfs2_glock_operations *glops = gl->gl_ops;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001106 unsigned delay = 0;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001107 int fast_path = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001108
Steven Whitehouse6802e342008-05-21 17:03:22 +01001109 spin_lock(&gl->gl_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001110 if (gh->gh_flags & GL_NOCACHE)
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001111 handle_callback(gl, LM_ST_UNLOCKED, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001112
David Teiglandb3b94fa2006-01-16 16:50:04 +00001113 list_del_init(&gh->gh_list);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001114 if (find_first_holder(gl) == NULL) {
Steven Whitehouse3042a2c2007-11-02 08:39:34 +00001115 if (glops->go_unlock) {
Steven Whitehouse6802e342008-05-21 17:03:22 +01001116 GLOCK_BUG_ON(gl, test_and_set_bit(GLF_LOCK, &gl->gl_flags));
Steven Whitehouse3042a2c2007-11-02 08:39:34 +00001117 spin_unlock(&gl->gl_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001118 glops->go_unlock(gh);
Steven Whitehouse3042a2c2007-11-02 08:39:34 +00001119 spin_lock(&gl->gl_spin);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001120 clear_bit(GLF_LOCK, &gl->gl_flags);
Steven Whitehouse3042a2c2007-11-02 08:39:34 +00001121 }
Steven Whitehouse6802e342008-05-21 17:03:22 +01001122 if (list_empty(&gl->gl_holders) &&
1123 !test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
1124 !test_bit(GLF_DEMOTE, &gl->gl_flags))
1125 fast_path = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001126 }
Steven Whitehousef42ab082011-04-14 16:50:31 +01001127 if (!test_bit(GLF_LFLUSH, &gl->gl_flags))
1128 __gfs2_glock_schedule_for_reclaim(gl);
Steven Whitehouse63997772009-06-12 08:49:20 +01001129 trace_gfs2_glock_queue(gh, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001130 spin_unlock(&gl->gl_spin);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001131 if (likely(fast_path))
1132 return;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001133
1134 gfs2_glock_hold(gl);
1135 if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001136 !test_bit(GLF_DEMOTE, &gl->gl_flags) &&
1137 gl->gl_name.ln_type == LM_TYPE_INODE)
1138 delay = gl->gl_hold_time;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001139 if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
1140 gfs2_glock_put(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001141}
1142
Abhijith Dasd93cfa92007-06-11 08:22:32 +01001143void gfs2_glock_dq_wait(struct gfs2_holder *gh)
1144{
1145 struct gfs2_glock *gl = gh->gh_gl;
1146 gfs2_glock_dq(gh);
1147 wait_on_demote(gl);
1148}
1149
David Teiglandb3b94fa2006-01-16 16:50:04 +00001150/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001151 * gfs2_glock_dq_uninit - dequeue a holder from a glock and initialize it
1152 * @gh: the holder structure
1153 *
1154 */
1155
1156void gfs2_glock_dq_uninit(struct gfs2_holder *gh)
1157{
1158 gfs2_glock_dq(gh);
1159 gfs2_holder_uninit(gh);
1160}
1161
1162/**
1163 * gfs2_glock_nq_num - acquire a glock based on lock number
1164 * @sdp: the filesystem
1165 * @number: the lock number
1166 * @glops: the glock operations for the type of glock
1167 * @state: the state to acquire the glock in
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001168 * @flags: modifier flags for the acquisition
David Teiglandb3b94fa2006-01-16 16:50:04 +00001169 * @gh: the struct gfs2_holder
1170 *
1171 * Returns: errno
1172 */
1173
Steven Whitehousecd915492006-09-04 12:49:07 -04001174int gfs2_glock_nq_num(struct gfs2_sbd *sdp, u64 number,
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001175 const struct gfs2_glock_operations *glops,
1176 unsigned int state, int flags, struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001177{
1178 struct gfs2_glock *gl;
1179 int error;
1180
1181 error = gfs2_glock_get(sdp, number, glops, CREATE, &gl);
1182 if (!error) {
1183 error = gfs2_glock_nq_init(gl, state, flags, gh);
1184 gfs2_glock_put(gl);
1185 }
1186
1187 return error;
1188}
1189
1190/**
1191 * glock_compare - Compare two struct gfs2_glock structures for sorting
1192 * @arg_a: the first structure
1193 * @arg_b: the second structure
1194 *
1195 */
1196
1197static int glock_compare(const void *arg_a, const void *arg_b)
1198{
Steven Whitehousea5e08a92006-09-09 17:07:05 -04001199 const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1200 const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1201 const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1202 const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001203
1204 if (a->ln_number > b->ln_number)
Steven Whitehousea5e08a92006-09-09 17:07:05 -04001205 return 1;
1206 if (a->ln_number < b->ln_number)
1207 return -1;
Steven Whitehouse1c0f4872007-01-22 12:10:39 -05001208 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 -04001209 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001210}
1211
1212/**
1213 * nq_m_sync - synchonously acquire more than one glock in deadlock free order
1214 * @num_gh: the number of structures
1215 * @ghs: an array of struct gfs2_holder structures
1216 *
1217 * Returns: 0 on success (all glocks acquired),
1218 * errno on failure (no glocks acquired)
1219 */
1220
1221static int nq_m_sync(unsigned int num_gh, struct gfs2_holder *ghs,
1222 struct gfs2_holder **p)
1223{
1224 unsigned int x;
1225 int error = 0;
1226
1227 for (x = 0; x < num_gh; x++)
1228 p[x] = &ghs[x];
1229
1230 sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare, NULL);
1231
1232 for (x = 0; x < num_gh; x++) {
1233 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1234
1235 error = gfs2_glock_nq(p[x]);
1236 if (error) {
1237 while (x--)
1238 gfs2_glock_dq(p[x]);
1239 break;
1240 }
1241 }
1242
1243 return error;
1244}
1245
1246/**
1247 * gfs2_glock_nq_m - acquire multiple glocks
1248 * @num_gh: the number of structures
1249 * @ghs: an array of struct gfs2_holder structures
1250 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001251 *
1252 * Returns: 0 on success (all glocks acquired),
1253 * errno on failure (no glocks acquired)
1254 */
1255
1256int gfs2_glock_nq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1257{
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001258 struct gfs2_holder *tmp[4];
1259 struct gfs2_holder **pph = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001260 int error = 0;
1261
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001262 switch(num_gh) {
1263 case 0:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001264 return 0;
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001265 case 1:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001266 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1267 return gfs2_glock_nq(ghs);
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001268 default:
1269 if (num_gh <= 4)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001270 break;
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001271 pph = kmalloc(num_gh * sizeof(struct gfs2_holder *), GFP_NOFS);
1272 if (!pph)
1273 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001274 }
1275
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001276 error = nq_m_sync(num_gh, ghs, pph);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001277
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001278 if (pph != tmp)
1279 kfree(pph);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001280
1281 return error;
1282}
1283
1284/**
1285 * gfs2_glock_dq_m - release multiple glocks
1286 * @num_gh: the number of structures
1287 * @ghs: an array of struct gfs2_holder structures
1288 *
1289 */
1290
1291void gfs2_glock_dq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1292{
Bob Petersonfa1bbde2011-03-10 11:41:57 -05001293 while (num_gh--)
1294 gfs2_glock_dq(&ghs[num_gh]);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001295}
1296
1297/**
1298 * gfs2_glock_dq_uninit_m - release multiple glocks
1299 * @num_gh: the number of structures
1300 * @ghs: an array of struct gfs2_holder structures
1301 *
1302 */
1303
1304void gfs2_glock_dq_uninit_m(unsigned int num_gh, struct gfs2_holder *ghs)
1305{
Bob Petersonfa1bbde2011-03-10 11:41:57 -05001306 while (num_gh--)
1307 gfs2_glock_dq_uninit(&ghs[num_gh]);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001308}
1309
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001310void gfs2_glock_cb(struct gfs2_glock *gl, unsigned int state)
Steven Whitehouseda755fd2008-01-30 15:34:04 +00001311{
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001312 unsigned long delay = 0;
1313 unsigned long holdtime;
1314 unsigned long now = jiffies;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001315
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001316 gfs2_glock_hold(gl);
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001317 holdtime = gl->gl_tchange + gl->gl_hold_time;
1318 if (test_bit(GLF_QUEUED, &gl->gl_flags) &&
1319 gl->gl_name.ln_type == LM_TYPE_INODE) {
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +01001320 if (time_before(now, holdtime))
1321 delay = holdtime - now;
1322 if (test_bit(GLF_REPLY_PENDING, &gl->gl_flags))
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001323 delay = gl->gl_hold_time;
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +01001324 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001325
Steven Whitehouse6802e342008-05-21 17:03:22 +01001326 spin_lock(&gl->gl_spin);
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001327 handle_callback(gl, state, delay);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001328 spin_unlock(&gl->gl_spin);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001329 if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
1330 gfs2_glock_put(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001331}
1332
1333/**
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001334 * gfs2_should_freeze - Figure out if glock should be frozen
1335 * @gl: The glock in question
1336 *
1337 * Glocks are not frozen if (a) the result of the dlm operation is
1338 * an error, (b) the locking operation was an unlock operation or
1339 * (c) if there is a "noexp" flagged request anywhere in the queue
1340 *
1341 * Returns: 1 if freezing should occur, 0 otherwise
1342 */
1343
1344static int gfs2_should_freeze(const struct gfs2_glock *gl)
1345{
1346 const struct gfs2_holder *gh;
1347
1348 if (gl->gl_reply & ~LM_OUT_ST_MASK)
1349 return 0;
1350 if (gl->gl_target == LM_ST_UNLOCKED)
1351 return 0;
1352
1353 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
1354 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
1355 continue;
1356 if (LM_FLAG_NOEXP & gh->gh_flags)
1357 return 0;
1358 }
1359
1360 return 1;
1361}
1362
1363/**
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001364 * gfs2_glock_complete - Callback used by locking
1365 * @gl: Pointer to the glock
1366 * @ret: The return value from the dlm
David Teiglandb3b94fa2006-01-16 16:50:04 +00001367 *
Steven Whitehouse47a25382010-11-30 15:49:31 +00001368 * The gl_reply field is under the gl_spin lock so that it is ok
1369 * to use a bitfield shared with other glock state fields.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001370 */
1371
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001372void gfs2_glock_complete(struct gfs2_glock *gl, int ret)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001373{
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001374 struct lm_lockstruct *ls = &gl->gl_sbd->sd_lockstruct;
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001375
Steven Whitehouse47a25382010-11-30 15:49:31 +00001376 spin_lock(&gl->gl_spin);
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001377 gl->gl_reply = ret;
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001378
David Teiglande0c2a9a2012-01-09 17:18:05 -05001379 if (unlikely(test_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags))) {
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001380 if (gfs2_should_freeze(gl)) {
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001381 set_bit(GLF_FROZEN, &gl->gl_flags);
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001382 spin_unlock(&gl->gl_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001383 return;
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001384 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001385 }
Steven Whitehouse47a25382010-11-30 15:49:31 +00001386
1387 spin_unlock(&gl->gl_spin);
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001388 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
Steven Whitehouse47a25382010-11-30 15:49:31 +00001389 smp_wmb();
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001390 gfs2_glock_hold(gl);
1391 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1392 gfs2_glock_put(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001393}
1394
David Teiglandb3b94fa2006-01-16 16:50:04 +00001395
Ying Han1495f232011-05-24 17:12:27 -07001396static int gfs2_shrink_glock_memory(struct shrinker *shrink,
1397 struct shrink_control *sc)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001398{
1399 struct gfs2_glock *gl;
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001400 int may_demote;
1401 int nr_skipped = 0;
Ying Han1495f232011-05-24 17:12:27 -07001402 int nr = sc->nr_to_scan;
1403 gfp_t gfp_mask = sc->gfp_mask;
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001404 LIST_HEAD(skipped);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001405
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001406 if (nr == 0)
1407 goto out;
1408
1409 if (!(gfp_mask & __GFP_FS))
1410 return -1;
1411
1412 spin_lock(&lru_lock);
1413 while(nr && !list_empty(&lru_list)) {
1414 gl = list_entry(lru_list.next, struct gfs2_glock, gl_lru);
1415 list_del_init(&gl->gl_lru);
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001416 clear_bit(GLF_LRU, &gl->gl_flags);
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001417 atomic_dec(&lru_count);
1418
1419 /* Test for being demotable */
1420 if (!test_and_set_bit(GLF_LOCK, &gl->gl_flags)) {
1421 gfs2_glock_hold(gl);
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001422 spin_unlock(&lru_lock);
1423 spin_lock(&gl->gl_spin);
1424 may_demote = demote_ok(gl);
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001425 if (may_demote) {
1426 handle_callback(gl, LM_ST_UNLOCKED, 0);
1427 nr--;
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001428 }
Steven Whitehouse7e71c552009-09-22 10:56:16 +01001429 clear_bit(GLF_LOCK, &gl->gl_flags);
1430 smp_mb__after_clear_bit();
Steven Whitehouse2163b1e2009-06-25 16:30:26 +01001431 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05001432 gfs2_glock_put_nolock(gl);
1433 spin_unlock(&gl->gl_spin);
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001434 spin_lock(&lru_lock);
Steven Whitehouse2163b1e2009-06-25 16:30:26 +01001435 continue;
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001436 }
Steven Whitehouse2163b1e2009-06-25 16:30:26 +01001437 nr_skipped++;
1438 list_add(&gl->gl_lru, &skipped);
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001439 set_bit(GLF_LRU, &gl->gl_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001440 }
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001441 list_splice(&skipped, &lru_list);
1442 atomic_add(nr_skipped, &lru_count);
1443 spin_unlock(&lru_lock);
1444out:
1445 return (atomic_read(&lru_count) / 100) * sysctl_vfs_cache_pressure;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001446}
1447
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001448static struct shrinker glock_shrinker = {
1449 .shrink = gfs2_shrink_glock_memory,
1450 .seeks = DEFAULT_SEEKS,
1451};
1452
David Teiglandb3b94fa2006-01-16 16:50:04 +00001453/**
1454 * examine_bucket - Call a function for glock in a hash bucket
1455 * @examiner: the function
1456 * @sdp: the filesystem
1457 * @bucket: the bucket
1458 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001459 */
1460
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001461static void examine_bucket(glock_examiner examiner, const struct gfs2_sbd *sdp,
Steven Whitehouse37b2fa62006-09-08 13:35:56 -04001462 unsigned int hash)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001463{
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001464 struct gfs2_glock *gl;
1465 struct hlist_bl_head *head = &gl_hash_table[hash];
1466 struct hlist_bl_node *pos;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001467
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001468 rcu_read_lock();
1469 hlist_bl_for_each_entry_rcu(gl, pos, head, gl_list) {
1470 if ((gl->gl_sbd == sdp) && atomic_read(&gl->gl_ref))
Steven Whitehouse24264432006-09-11 21:40:30 -04001471 examiner(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001472 }
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001473 rcu_read_unlock();
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001474 cond_resched();
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001475}
1476
1477static void glock_hash_walk(glock_examiner examiner, const struct gfs2_sbd *sdp)
1478{
1479 unsigned x;
1480
1481 for (x = 0; x < GFS2_GL_HASH_SIZE; x++)
1482 examine_bucket(examiner, sdp, x);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001483}
1484
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001485
1486/**
1487 * thaw_glock - thaw out a glock which has an unprocessed reply waiting
1488 * @gl: The glock to thaw
1489 *
1490 * N.B. When we freeze a glock, we leave a ref to the glock outstanding,
1491 * so this has to result in the ref count being dropped by one.
1492 */
1493
1494static void thaw_glock(struct gfs2_glock *gl)
1495{
1496 if (!test_and_clear_bit(GLF_FROZEN, &gl->gl_flags))
1497 return;
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001498 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
1499 gfs2_glock_hold(gl);
1500 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1501 gfs2_glock_put(gl);
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001502}
1503
David Teiglandb3b94fa2006-01-16 16:50:04 +00001504/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001505 * clear_glock - look at a glock and see if we can free it from glock cache
1506 * @gl: the glock to look at
1507 *
1508 */
1509
1510static void clear_glock(struct gfs2_glock *gl)
1511{
Steven Whitehousef42ab082011-04-14 16:50:31 +01001512 gfs2_glock_remove_from_lru(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001513
Steven Whitehouse6802e342008-05-21 17:03:22 +01001514 spin_lock(&gl->gl_spin);
Steven Whitehousec741c452010-09-29 14:20:52 +01001515 if (gl->gl_state != LM_ST_UNLOCKED)
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001516 handle_callback(gl, LM_ST_UNLOCKED, 0);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001517 spin_unlock(&gl->gl_spin);
1518 gfs2_glock_hold(gl);
1519 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1520 gfs2_glock_put(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001521}
1522
1523/**
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001524 * gfs2_glock_thaw - Thaw any frozen glocks
1525 * @sdp: The super block
1526 *
1527 */
1528
1529void gfs2_glock_thaw(struct gfs2_sbd *sdp)
1530{
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001531 glock_hash_walk(thaw_glock, sdp);
1532}
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001533
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001534static int dump_glock(struct seq_file *seq, struct gfs2_glock *gl)
1535{
1536 int ret;
1537 spin_lock(&gl->gl_spin);
1538 ret = __dump_glock(seq, gl);
1539 spin_unlock(&gl->gl_spin);
1540 return ret;
1541}
1542
1543static void dump_glock_func(struct gfs2_glock *gl)
1544{
1545 dump_glock(NULL, gl);
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001546}
1547
1548/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001549 * gfs2_gl_hash_clear - Empty out the glock hash table
1550 * @sdp: the filesystem
1551 * @wait: wait until it's all gone
1552 *
Steven Whitehouse1bdad602008-06-03 14:09:53 +01001553 * Called when unmounting the filesystem.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001554 */
1555
Steven Whitehousefefc03b2008-12-19 15:32:06 +00001556void gfs2_gl_hash_clear(struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001557{
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001558 glock_hash_walk(clear_glock, sdp);
Steven Whitehouse8f052282010-01-29 15:21:27 +00001559 flush_workqueue(glock_workqueue);
1560 wait_event(sdp->sd_glock_wait, atomic_read(&sdp->sd_glock_disposal) == 0);
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001561 glock_hash_walk(dump_glock_func, sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001562}
1563
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001564void gfs2_glock_finish_truncate(struct gfs2_inode *ip)
1565{
1566 struct gfs2_glock *gl = ip->i_gl;
1567 int ret;
1568
1569 ret = gfs2_truncatei_resume(ip);
1570 gfs2_assert_withdraw(gl->gl_sbd, ret == 0);
1571
1572 spin_lock(&gl->gl_spin);
1573 clear_bit(GLF_LOCK, &gl->gl_flags);
1574 run_queue(gl, 1);
1575 spin_unlock(&gl->gl_spin);
1576}
1577
Steven Whitehouse6802e342008-05-21 17:03:22 +01001578static const char *state2str(unsigned state)
Robert Peterson04b933f2007-03-23 17:05:15 -05001579{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001580 switch(state) {
1581 case LM_ST_UNLOCKED:
1582 return "UN";
1583 case LM_ST_SHARED:
1584 return "SH";
1585 case LM_ST_DEFERRED:
1586 return "DF";
1587 case LM_ST_EXCLUSIVE:
1588 return "EX";
1589 }
1590 return "??";
1591}
Robert Peterson04b933f2007-03-23 17:05:15 -05001592
Steven Whitehouse6802e342008-05-21 17:03:22 +01001593static const char *hflags2str(char *buf, unsigned flags, unsigned long iflags)
1594{
1595 char *p = buf;
1596 if (flags & LM_FLAG_TRY)
1597 *p++ = 't';
1598 if (flags & LM_FLAG_TRY_1CB)
1599 *p++ = 'T';
1600 if (flags & LM_FLAG_NOEXP)
1601 *p++ = 'e';
1602 if (flags & LM_FLAG_ANY)
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001603 *p++ = 'A';
Steven Whitehouse6802e342008-05-21 17:03:22 +01001604 if (flags & LM_FLAG_PRIORITY)
1605 *p++ = 'p';
1606 if (flags & GL_ASYNC)
1607 *p++ = 'a';
1608 if (flags & GL_EXACT)
1609 *p++ = 'E';
Steven Whitehouse6802e342008-05-21 17:03:22 +01001610 if (flags & GL_NOCACHE)
1611 *p++ = 'c';
1612 if (test_bit(HIF_HOLDER, &iflags))
1613 *p++ = 'H';
1614 if (test_bit(HIF_WAIT, &iflags))
1615 *p++ = 'W';
1616 if (test_bit(HIF_FIRST, &iflags))
1617 *p++ = 'F';
1618 *p = 0;
1619 return buf;
Robert Peterson04b933f2007-03-23 17:05:15 -05001620}
1621
David Teiglandb3b94fa2006-01-16 16:50:04 +00001622/**
1623 * dump_holder - print information about a glock holder
Steven Whitehouse6802e342008-05-21 17:03:22 +01001624 * @seq: the seq_file struct
David Teiglandb3b94fa2006-01-16 16:50:04 +00001625 * @gh: the glock holder
1626 *
1627 * Returns: 0 on success, -ENOBUFS when we run out of space
1628 */
1629
Steven Whitehouse6802e342008-05-21 17:03:22 +01001630static int dump_holder(struct seq_file *seq, const struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001631{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001632 struct task_struct *gh_owner = NULL;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001633 char flags_buf[32];
David Teiglandb3b94fa2006-01-16 16:50:04 +00001634
Steven Whitehouse6802e342008-05-21 17:03:22 +01001635 if (gh->gh_owner_pid)
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -08001636 gh_owner = pid_task(gh->gh_owner_pid, PIDTYPE_PID);
Joe Perchescc181522010-11-05 16:12:36 -07001637 gfs2_print_dbg(seq, " H: s:%s f:%s e:%d p:%ld [%s] %pS\n",
1638 state2str(gh->gh_state),
1639 hflags2str(flags_buf, gh->gh_flags, gh->gh_iflags),
1640 gh->gh_error,
1641 gh->gh_owner_pid ? (long)pid_nr(gh->gh_owner_pid) : -1,
1642 gh_owner ? gh_owner->comm : "(ended)",
1643 (void *)gh->gh_ip);
Robert Peterson7c52b162007-03-16 10:26:37 +00001644 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001645}
1646
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001647static const char *gflags2str(char *buf, const struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001648{
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001649 const unsigned long *gflags = &gl->gl_flags;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001650 char *p = buf;
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001651
Steven Whitehouse6802e342008-05-21 17:03:22 +01001652 if (test_bit(GLF_LOCK, gflags))
1653 *p++ = 'l';
Steven Whitehouse6802e342008-05-21 17:03:22 +01001654 if (test_bit(GLF_DEMOTE, gflags))
1655 *p++ = 'D';
1656 if (test_bit(GLF_PENDING_DEMOTE, gflags))
1657 *p++ = 'd';
1658 if (test_bit(GLF_DEMOTE_IN_PROGRESS, gflags))
1659 *p++ = 'p';
1660 if (test_bit(GLF_DIRTY, gflags))
1661 *p++ = 'y';
1662 if (test_bit(GLF_LFLUSH, gflags))
1663 *p++ = 'f';
1664 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, gflags))
1665 *p++ = 'i';
1666 if (test_bit(GLF_REPLY_PENDING, gflags))
1667 *p++ = 'r';
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001668 if (test_bit(GLF_INITIAL, gflags))
Steven Whitehoused8348de2009-02-05 10:12:38 +00001669 *p++ = 'I';
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001670 if (test_bit(GLF_FROZEN, gflags))
1671 *p++ = 'F';
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +01001672 if (test_bit(GLF_QUEUED, gflags))
1673 *p++ = 'q';
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001674 if (test_bit(GLF_LRU, gflags))
1675 *p++ = 'L';
1676 if (gl->gl_object)
1677 *p++ = 'o';
Steven Whitehousea2457692012-01-20 10:38:36 +00001678 if (test_bit(GLF_BLOCKING, gflags))
1679 *p++ = 'b';
Steven Whitehouse6802e342008-05-21 17:03:22 +01001680 *p = 0;
1681 return buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001682}
1683
1684/**
Steven Whitehouse6802e342008-05-21 17:03:22 +01001685 * __dump_glock - print information about a glock
1686 * @seq: The seq_file struct
David Teiglandb3b94fa2006-01-16 16:50:04 +00001687 * @gl: the glock
Steven Whitehouse6802e342008-05-21 17:03:22 +01001688 *
1689 * The file format is as follows:
1690 * One line per object, capital letters are used to indicate objects
1691 * G = glock, I = Inode, R = rgrp, H = holder. Glocks are not indented,
1692 * other objects are indented by a single space and follow the glock to
1693 * which they are related. Fields are indicated by lower case letters
1694 * followed by a colon and the field value, except for strings which are in
1695 * [] so that its possible to see if they are composed of spaces for
1696 * example. The field's are n = number (id of the object), f = flags,
1697 * t = type, s = state, r = refcount, e = error, p = pid.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001698 *
1699 * Returns: 0 on success, -ENOBUFS when we run out of space
1700 */
1701
Steven Whitehouse6802e342008-05-21 17:03:22 +01001702static int __dump_glock(struct seq_file *seq, const struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001703{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001704 const struct gfs2_glock_operations *glops = gl->gl_ops;
1705 unsigned long long dtime;
1706 const struct gfs2_holder *gh;
1707 char gflags_buf[32];
1708 int error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001709
Steven Whitehouse6802e342008-05-21 17:03:22 +01001710 dtime = jiffies - gl->gl_demote_time;
1711 dtime *= 1000000/HZ; /* demote time in uSec */
1712 if (!test_bit(GLF_DEMOTE, &gl->gl_flags))
1713 dtime = 0;
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001714 gfs2_print_dbg(seq, "G: s:%s n:%u/%llx f:%s t:%s d:%s/%llu a:%d v:%d r:%d m:%ld\n",
Steven Whitehouse6802e342008-05-21 17:03:22 +01001715 state2str(gl->gl_state),
1716 gl->gl_name.ln_type,
1717 (unsigned long long)gl->gl_name.ln_number,
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001718 gflags2str(gflags_buf, gl),
Steven Whitehouse6802e342008-05-21 17:03:22 +01001719 state2str(gl->gl_target),
1720 state2str(gl->gl_demote_state), dtime,
Steven Whitehouse6802e342008-05-21 17:03:22 +01001721 atomic_read(&gl->gl_ail_count),
Steven Whitehousef42ab082011-04-14 16:50:31 +01001722 atomic_read(&gl->gl_revokes),
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001723 atomic_read(&gl->gl_ref), gl->gl_hold_time);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001724
David Teiglandb3b94fa2006-01-16 16:50:04 +00001725 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
Steven Whitehouse6802e342008-05-21 17:03:22 +01001726 error = dump_holder(seq, gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001727 if (error)
1728 goto out;
1729 }
Steven Whitehouse6802e342008-05-21 17:03:22 +01001730 if (gl->gl_state != LM_ST_UNLOCKED && glops->go_dump)
1731 error = glops->go_dump(seq, gl);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001732out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001733 return error;
1734}
1735
Steven Whitehousea2457692012-01-20 10:38:36 +00001736static int gfs2_glstats_seq_show(struct seq_file *seq, void *iter_ptr)
1737{
1738 struct gfs2_glock *gl = iter_ptr;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001739
Steven Whitehousea2457692012-01-20 10:38:36 +00001740 seq_printf(seq, "G: n:%u/%llx rtt:%lld/%lld rttb:%lld/%lld irt:%lld/%lld dcnt: %lld qcnt: %lld\n",
1741 gl->gl_name.ln_type,
1742 (unsigned long long)gl->gl_name.ln_number,
1743 (long long)gl->gl_stats.stats[GFS2_LKS_SRTT],
1744 (long long)gl->gl_stats.stats[GFS2_LKS_SRTTVAR],
1745 (long long)gl->gl_stats.stats[GFS2_LKS_SRTTB],
1746 (long long)gl->gl_stats.stats[GFS2_LKS_SRTTVARB],
1747 (long long)gl->gl_stats.stats[GFS2_LKS_SIRT],
1748 (long long)gl->gl_stats.stats[GFS2_LKS_SIRTVAR],
1749 (long long)gl->gl_stats.stats[GFS2_LKS_DCOUNT],
1750 (long long)gl->gl_stats.stats[GFS2_LKS_QCOUNT]);
1751 return 0;
1752}
David Teiglandb3b94fa2006-01-16 16:50:04 +00001753
Steven Whitehousea2457692012-01-20 10:38:36 +00001754static const char *gfs2_gltype[] = {
1755 "type",
1756 "reserved",
1757 "nondisk",
1758 "inode",
1759 "rgrp",
1760 "meta",
1761 "iopen",
1762 "flock",
1763 "plock",
1764 "quota",
1765 "journal",
1766};
1767
1768static const char *gfs2_stype[] = {
1769 [GFS2_LKS_SRTT] = "srtt",
1770 [GFS2_LKS_SRTTVAR] = "srttvar",
1771 [GFS2_LKS_SRTTB] = "srttb",
1772 [GFS2_LKS_SRTTVARB] = "srttvarb",
1773 [GFS2_LKS_SIRT] = "sirt",
1774 [GFS2_LKS_SIRTVAR] = "sirtvar",
1775 [GFS2_LKS_DCOUNT] = "dlm",
1776 [GFS2_LKS_QCOUNT] = "queue",
1777};
1778
1779#define GFS2_NR_SBSTATS (ARRAY_SIZE(gfs2_gltype) * ARRAY_SIZE(gfs2_stype))
1780
1781static int gfs2_sbstats_seq_show(struct seq_file *seq, void *iter_ptr)
1782{
1783 struct gfs2_glock_iter *gi = seq->private;
1784 struct gfs2_sbd *sdp = gi->sdp;
1785 unsigned index = gi->hash >> 3;
1786 unsigned subindex = gi->hash & 0x07;
1787 s64 value;
1788 int i;
1789
1790 if (index == 0 && subindex != 0)
1791 return 0;
1792
1793 seq_printf(seq, "%-10s %8s:", gfs2_gltype[index],
1794 (index == 0) ? "cpu": gfs2_stype[subindex]);
1795
1796 for_each_possible_cpu(i) {
1797 const struct gfs2_pcpu_lkstats *lkstats = per_cpu_ptr(sdp->sd_lkstats, i);
1798 if (index == 0) {
1799 value = i;
1800 } else {
1801 value = lkstats->lkstats[index - 1].stats[subindex];
1802 }
1803 seq_printf(seq, " %15lld", (long long)value);
1804 }
1805 seq_putc(seq, '\n');
1806 return 0;
1807}
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001808
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001809int __init gfs2_glock_init(void)
1810{
1811 unsigned i;
1812 for(i = 0; i < GFS2_GL_HASH_SIZE; i++) {
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001813 INIT_HLIST_BL_HEAD(&gl_hash_table[i]);
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001814 }
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001815
Steven Whitehoused2115772010-11-03 19:58:53 +00001816 glock_workqueue = alloc_workqueue("glock_workqueue", WQ_MEM_RECLAIM |
Tejun Heo58a69cb2011-02-16 09:25:31 +01001817 WQ_HIGHPRI | WQ_FREEZABLE, 0);
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001818 if (IS_ERR(glock_workqueue))
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001819 return PTR_ERR(glock_workqueue);
Steven Whitehoused2115772010-11-03 19:58:53 +00001820 gfs2_delete_workqueue = alloc_workqueue("delete_workqueue",
Tejun Heo58a69cb2011-02-16 09:25:31 +01001821 WQ_MEM_RECLAIM | WQ_FREEZABLE,
Steven Whitehoused2115772010-11-03 19:58:53 +00001822 0);
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05001823 if (IS_ERR(gfs2_delete_workqueue)) {
1824 destroy_workqueue(glock_workqueue);
1825 return PTR_ERR(gfs2_delete_workqueue);
1826 }
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001827
1828 register_shrinker(&glock_shrinker);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001829
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001830 return 0;
1831}
1832
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001833void gfs2_glock_exit(void)
1834{
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001835 unregister_shrinker(&glock_shrinker);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001836 destroy_workqueue(glock_workqueue);
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05001837 destroy_workqueue(gfs2_delete_workqueue);
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001838}
1839
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001840static inline struct gfs2_glock *glock_hash_chain(unsigned hash)
1841{
1842 return hlist_bl_entry(hlist_bl_first_rcu(&gl_hash_table[hash]),
1843 struct gfs2_glock, gl_list);
1844}
1845
1846static inline struct gfs2_glock *glock_hash_next(struct gfs2_glock *gl)
1847{
Steven Whitehouse7e32d022011-03-15 08:32:14 +00001848 return hlist_bl_entry(rcu_dereference(gl->gl_list.next),
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001849 struct gfs2_glock, gl_list);
1850}
1851
Steven Whitehouse6802e342008-05-21 17:03:22 +01001852static int gfs2_glock_iter_next(struct gfs2_glock_iter *gi)
Robert Peterson7c52b162007-03-16 10:26:37 +00001853{
Steven Whitehouse7b08fc62007-07-24 13:53:36 +01001854 struct gfs2_glock *gl;
1855
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001856 do {
1857 gl = gi->gl;
1858 if (gl) {
1859 gi->gl = glock_hash_next(gl);
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01001860 gi->nhash++;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001861 } else {
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01001862 if (gi->hash >= GFS2_GL_HASH_SIZE) {
1863 rcu_read_unlock();
1864 return 1;
1865 }
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001866 gi->gl = glock_hash_chain(gi->hash);
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01001867 gi->nhash = 0;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001868 }
1869 while (gi->gl == NULL) {
1870 gi->hash++;
1871 if (gi->hash >= GFS2_GL_HASH_SIZE) {
1872 rcu_read_unlock();
1873 return 1;
1874 }
1875 gi->gl = glock_hash_chain(gi->hash);
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01001876 gi->nhash = 0;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001877 }
1878 /* Skip entries for other sb and dead entries */
1879 } while (gi->sdp != gi->gl->gl_sbd || atomic_read(&gi->gl->gl_ref) == 0);
Abhijith Dasa947e032007-08-21 09:57:29 -05001880
Robert Peterson7c52b162007-03-16 10:26:37 +00001881 return 0;
1882}
1883
Steven Whitehouse6802e342008-05-21 17:03:22 +01001884static void *gfs2_glock_seq_start(struct seq_file *seq, loff_t *pos)
Robert Peterson7c52b162007-03-16 10:26:37 +00001885{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001886 struct gfs2_glock_iter *gi = seq->private;
Robert Peterson7c52b162007-03-16 10:26:37 +00001887 loff_t n = *pos;
1888
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01001889 if (gi->last_pos <= *pos)
1890 n = gi->nhash + (*pos - gi->last_pos);
1891 else
1892 gi->hash = 0;
1893
1894 gi->nhash = 0;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001895 rcu_read_lock();
Robert Peterson7c52b162007-03-16 10:26:37 +00001896
Steven Whitehouse6802e342008-05-21 17:03:22 +01001897 do {
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001898 if (gfs2_glock_iter_next(gi))
Robert Peterson7c52b162007-03-16 10:26:37 +00001899 return NULL;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001900 } while (n--);
Robert Peterson7c52b162007-03-16 10:26:37 +00001901
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01001902 gi->last_pos = *pos;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001903 return gi->gl;
Robert Peterson7c52b162007-03-16 10:26:37 +00001904}
1905
Steven Whitehouse6802e342008-05-21 17:03:22 +01001906static void *gfs2_glock_seq_next(struct seq_file *seq, void *iter_ptr,
Robert Peterson7c52b162007-03-16 10:26:37 +00001907 loff_t *pos)
1908{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001909 struct gfs2_glock_iter *gi = seq->private;
Robert Peterson7c52b162007-03-16 10:26:37 +00001910
1911 (*pos)++;
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01001912 gi->last_pos = *pos;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001913 if (gfs2_glock_iter_next(gi))
Robert Peterson7c52b162007-03-16 10:26:37 +00001914 return NULL;
Robert Peterson7c52b162007-03-16 10:26:37 +00001915
Steven Whitehouse6802e342008-05-21 17:03:22 +01001916 return gi->gl;
Robert Peterson7c52b162007-03-16 10:26:37 +00001917}
1918
Steven Whitehouse6802e342008-05-21 17:03:22 +01001919static void gfs2_glock_seq_stop(struct seq_file *seq, void *iter_ptr)
Robert Peterson7c52b162007-03-16 10:26:37 +00001920{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001921 struct gfs2_glock_iter *gi = seq->private;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001922
1923 if (gi->gl)
1924 rcu_read_unlock();
1925 gi->gl = NULL;
Robert Peterson7c52b162007-03-16 10:26:37 +00001926}
1927
Steven Whitehouse6802e342008-05-21 17:03:22 +01001928static int gfs2_glock_seq_show(struct seq_file *seq, void *iter_ptr)
Robert Peterson7c52b162007-03-16 10:26:37 +00001929{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001930 return dump_glock(seq, iter_ptr);
Robert Peterson7c52b162007-03-16 10:26:37 +00001931}
1932
Steven Whitehousea2457692012-01-20 10:38:36 +00001933static void *gfs2_sbstats_seq_start(struct seq_file *seq, loff_t *pos)
1934{
1935 struct gfs2_glock_iter *gi = seq->private;
1936
1937 gi->hash = *pos;
1938 if (*pos >= GFS2_NR_SBSTATS)
1939 return NULL;
1940 preempt_disable();
1941 return SEQ_START_TOKEN;
1942}
1943
1944static void *gfs2_sbstats_seq_next(struct seq_file *seq, void *iter_ptr,
1945 loff_t *pos)
1946{
1947 struct gfs2_glock_iter *gi = seq->private;
1948 (*pos)++;
1949 gi->hash++;
1950 if (gi->hash >= GFS2_NR_SBSTATS) {
1951 preempt_enable();
1952 return NULL;
1953 }
1954 return SEQ_START_TOKEN;
1955}
1956
1957static void gfs2_sbstats_seq_stop(struct seq_file *seq, void *iter_ptr)
1958{
1959 preempt_enable();
1960}
1961
Denis Cheng4ef29002007-07-31 18:31:11 +08001962static const struct seq_operations gfs2_glock_seq_ops = {
Robert Peterson7c52b162007-03-16 10:26:37 +00001963 .start = gfs2_glock_seq_start,
1964 .next = gfs2_glock_seq_next,
1965 .stop = gfs2_glock_seq_stop,
1966 .show = gfs2_glock_seq_show,
1967};
1968
Steven Whitehousea2457692012-01-20 10:38:36 +00001969static const struct seq_operations gfs2_glstats_seq_ops = {
1970 .start = gfs2_glock_seq_start,
1971 .next = gfs2_glock_seq_next,
1972 .stop = gfs2_glock_seq_stop,
1973 .show = gfs2_glstats_seq_show,
1974};
1975
1976static const struct seq_operations gfs2_sbstats_seq_ops = {
1977 .start = gfs2_sbstats_seq_start,
1978 .next = gfs2_sbstats_seq_next,
1979 .stop = gfs2_sbstats_seq_stop,
1980 .show = gfs2_sbstats_seq_show,
1981};
1982
1983static int gfs2_glocks_open(struct inode *inode, struct file *file)
Robert Peterson7c52b162007-03-16 10:26:37 +00001984{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001985 int ret = seq_open_private(file, &gfs2_glock_seq_ops,
1986 sizeof(struct gfs2_glock_iter));
1987 if (ret == 0) {
1988 struct seq_file *seq = file->private_data;
1989 struct gfs2_glock_iter *gi = seq->private;
1990 gi->sdp = inode->i_private;
Steven Whitehousedf5d2f52012-06-07 13:30:16 +01001991 seq->buf = kmalloc(8*PAGE_SIZE, GFP_KERNEL | __GFP_NOWARN);
1992 if (seq->buf)
1993 seq->size = 8*PAGE_SIZE;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001994 }
1995 return ret;
Robert Peterson7c52b162007-03-16 10:26:37 +00001996}
1997
Steven Whitehousea2457692012-01-20 10:38:36 +00001998static int gfs2_glstats_open(struct inode *inode, struct file *file)
1999{
2000 int ret = seq_open_private(file, &gfs2_glstats_seq_ops,
2001 sizeof(struct gfs2_glock_iter));
2002 if (ret == 0) {
2003 struct seq_file *seq = file->private_data;
2004 struct gfs2_glock_iter *gi = seq->private;
2005 gi->sdp = inode->i_private;
Steven Whitehousedf5d2f52012-06-07 13:30:16 +01002006 seq->buf = kmalloc(8*PAGE_SIZE, GFP_KERNEL | __GFP_NOWARN);
2007 if (seq->buf)
2008 seq->size = 8*PAGE_SIZE;
Steven Whitehousea2457692012-01-20 10:38:36 +00002009 }
2010 return ret;
2011}
2012
2013static int gfs2_sbstats_open(struct inode *inode, struct file *file)
2014{
2015 int ret = seq_open_private(file, &gfs2_sbstats_seq_ops,
2016 sizeof(struct gfs2_glock_iter));
2017 if (ret == 0) {
2018 struct seq_file *seq = file->private_data;
2019 struct gfs2_glock_iter *gi = seq->private;
2020 gi->sdp = inode->i_private;
2021 }
2022 return ret;
2023}
2024
2025static const struct file_operations gfs2_glocks_fops = {
Robert Peterson7c52b162007-03-16 10:26:37 +00002026 .owner = THIS_MODULE,
Steven Whitehousea2457692012-01-20 10:38:36 +00002027 .open = gfs2_glocks_open,
2028 .read = seq_read,
2029 .llseek = seq_lseek,
2030 .release = seq_release_private,
2031};
2032
2033static const struct file_operations gfs2_glstats_fops = {
2034 .owner = THIS_MODULE,
2035 .open = gfs2_glstats_open,
2036 .read = seq_read,
2037 .llseek = seq_lseek,
2038 .release = seq_release_private,
2039};
2040
2041static const struct file_operations gfs2_sbstats_fops = {
2042 .owner = THIS_MODULE,
2043 .open = gfs2_sbstats_open,
Robert Peterson7c52b162007-03-16 10:26:37 +00002044 .read = seq_read,
2045 .llseek = seq_lseek,
Steven Whitehouse6802e342008-05-21 17:03:22 +01002046 .release = seq_release_private,
Robert Peterson7c52b162007-03-16 10:26:37 +00002047};
2048
2049int gfs2_create_debugfs_file(struct gfs2_sbd *sdp)
2050{
Robert Peterson5f882092007-04-18 11:41:11 -05002051 sdp->debugfs_dir = debugfs_create_dir(sdp->sd_table_name, gfs2_root);
2052 if (!sdp->debugfs_dir)
2053 return -ENOMEM;
2054 sdp->debugfs_dentry_glocks = debugfs_create_file("glocks",
2055 S_IFREG | S_IRUGO,
2056 sdp->debugfs_dir, sdp,
Steven Whitehousea2457692012-01-20 10:38:36 +00002057 &gfs2_glocks_fops);
Robert Peterson5f882092007-04-18 11:41:11 -05002058 if (!sdp->debugfs_dentry_glocks)
Steven Whitehousea2457692012-01-20 10:38:36 +00002059 goto fail;
2060
2061 sdp->debugfs_dentry_glstats = debugfs_create_file("glstats",
2062 S_IFREG | S_IRUGO,
2063 sdp->debugfs_dir, sdp,
2064 &gfs2_glstats_fops);
2065 if (!sdp->debugfs_dentry_glstats)
2066 goto fail;
2067
2068 sdp->debugfs_dentry_sbstats = debugfs_create_file("sbstats",
2069 S_IFREG | S_IRUGO,
2070 sdp->debugfs_dir, sdp,
2071 &gfs2_sbstats_fops);
2072 if (!sdp->debugfs_dentry_sbstats)
2073 goto fail;
Robert Peterson7c52b162007-03-16 10:26:37 +00002074
2075 return 0;
Steven Whitehousea2457692012-01-20 10:38:36 +00002076fail:
2077 gfs2_delete_debugfs_file(sdp);
2078 return -ENOMEM;
Robert Peterson7c52b162007-03-16 10:26:37 +00002079}
2080
2081void gfs2_delete_debugfs_file(struct gfs2_sbd *sdp)
2082{
Steven Whitehousea2457692012-01-20 10:38:36 +00002083 if (sdp->debugfs_dir) {
Robert Peterson5f882092007-04-18 11:41:11 -05002084 if (sdp->debugfs_dentry_glocks) {
2085 debugfs_remove(sdp->debugfs_dentry_glocks);
2086 sdp->debugfs_dentry_glocks = NULL;
2087 }
Steven Whitehousea2457692012-01-20 10:38:36 +00002088 if (sdp->debugfs_dentry_glstats) {
2089 debugfs_remove(sdp->debugfs_dentry_glstats);
2090 sdp->debugfs_dentry_glstats = NULL;
2091 }
2092 if (sdp->debugfs_dentry_sbstats) {
2093 debugfs_remove(sdp->debugfs_dentry_sbstats);
2094 sdp->debugfs_dentry_sbstats = NULL;
2095 }
Robert Peterson5f882092007-04-18 11:41:11 -05002096 debugfs_remove(sdp->debugfs_dir);
2097 sdp->debugfs_dir = NULL;
2098 }
Robert Peterson7c52b162007-03-16 10:26:37 +00002099}
2100
2101int gfs2_register_debugfs(void)
2102{
2103 gfs2_root = debugfs_create_dir("gfs2", NULL);
2104 return gfs2_root ? 0 : -ENOMEM;
2105}
2106
2107void gfs2_unregister_debugfs(void)
2108{
2109 debugfs_remove(gfs2_root);
Robert Peterson5f882092007-04-18 11:41:11 -05002110 gfs2_root = NULL;
Robert Peterson7c52b162007-03-16 10:26:37 +00002111}