blob: 5c8790960735ed03047d390cd530974bbf4aa5fc [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 */
Robert Peterson7c52b162007-03-16 10:26:37 +000054};
55
David Teiglandb3b94fa2006-01-16 16:50:04 +000056typedef void (*glock_examiner) (struct gfs2_glock * gl);
57
Steven Whitehouse6802e342008-05-21 17:03:22 +010058static int __dump_glock(struct seq_file *seq, const struct gfs2_glock *gl);
59#define GLOCK_BUG_ON(gl,x) do { if (unlikely(x)) { __dump_glock(NULL, gl); BUG(); } } while(0)
60static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -050061
Robert Peterson7c52b162007-03-16 10:26:37 +000062static struct dentry *gfs2_root;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -050063static struct workqueue_struct *glock_workqueue;
Benjamin Marzinskib94a1702009-07-23 18:52:34 -050064struct workqueue_struct *gfs2_delete_workqueue;
Steven Whitehouse97cc10252008-11-20 13:39:47 +000065static LIST_HEAD(lru_list);
66static atomic_t lru_count = ATOMIC_INIT(0);
Julia Lawalleb8374e2008-12-25 15:35:27 +010067static DEFINE_SPINLOCK(lru_lock);
Adrian Bunk08bc2db2006-04-28 10:59:12 -040068
Steven Whitehouseb6397892006-09-12 10:10:01 -040069#define GFS2_GL_HASH_SHIFT 15
Steven Whitehouse087efdd2006-09-09 16:59:11 -040070#define GFS2_GL_HASH_SIZE (1 << GFS2_GL_HASH_SHIFT)
71#define GFS2_GL_HASH_MASK (GFS2_GL_HASH_SIZE - 1)
72
Steven Whitehousebc015cb2011-01-19 09:30:01 +000073static struct hlist_bl_head gl_hash_table[GFS2_GL_HASH_SIZE];
Robert Peterson04b933f2007-03-23 17:05:15 -050074static struct dentry *gfs2_root;
Steven Whitehouse087efdd2006-09-09 16:59:11 -040075
David Teiglandb3b94fa2006-01-16 16:50:04 +000076/**
David Teiglandb3b94fa2006-01-16 16:50:04 +000077 * gl_hash() - Turn glock number into hash bucket number
78 * @lock: The glock number
79 *
80 * Returns: The number of the corresponding hash bucket
81 */
82
Steven Whitehouseb8547852006-09-07 13:12:27 -040083static unsigned int gl_hash(const struct gfs2_sbd *sdp,
84 const struct lm_lockname *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +000085{
86 unsigned int h;
87
Steven Whitehousecd915492006-09-04 12:49:07 -040088 h = jhash(&name->ln_number, sizeof(u64), 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +000089 h = jhash(&name->ln_type, sizeof(unsigned int), h);
Steven Whitehouseb8547852006-09-07 13:12:27 -040090 h = jhash(&sdp, sizeof(struct gfs2_sbd *), h);
David Teiglandb3b94fa2006-01-16 16:50:04 +000091 h &= GFS2_GL_HASH_MASK;
92
93 return h;
94}
95
Steven Whitehousebc015cb2011-01-19 09:30:01 +000096static inline void spin_lock_bucket(unsigned int hash)
David Teiglandb3b94fa2006-01-16 16:50:04 +000097{
Christoph Hellwig1879fd62011-04-25 14:01:36 -040098 hlist_bl_lock(&gl_hash_table[hash]);
Steven Whitehousebc015cb2011-01-19 09:30:01 +000099}
David Teiglandb3b94fa2006-01-16 16:50:04 +0000100
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000101static inline void spin_unlock_bucket(unsigned int hash)
102{
Christoph Hellwig1879fd62011-04-25 14:01:36 -0400103 hlist_bl_unlock(&gl_hash_table[hash]);
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000104}
105
Steven Whitehousefc0e38d2011-03-09 10:58:04 +0000106static void gfs2_glock_dealloc(struct rcu_head *rcu)
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000107{
108 struct gfs2_glock *gl = container_of(rcu, struct gfs2_glock, gl_rcu);
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000109
110 if (gl->gl_ops->go_flags & GLOF_ASPACE)
111 kmem_cache_free(gfs2_glock_aspace_cachep, gl);
112 else
113 kmem_cache_free(gfs2_glock_cachep, gl);
Steven Whitehousefc0e38d2011-03-09 10:58:04 +0000114}
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000115
Steven Whitehousefc0e38d2011-03-09 10:58:04 +0000116void gfs2_glock_free(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000117{
118 struct gfs2_sbd *sdp = gl->gl_sbd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000119
Steven Whitehousefc0e38d2011-03-09 10:58:04 +0000120 call_rcu(&gl->gl_rcu, gfs2_glock_dealloc);
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000121 if (atomic_dec_and_test(&sdp->sd_glock_disposal))
122 wake_up(&sdp->sd_glock_wait);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000123}
124
125/**
126 * gfs2_glock_hold() - increment reference count on glock
127 * @gl: The glock to hold
128 *
129 */
130
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500131void gfs2_glock_hold(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000132{
Steven Whitehoused8348de2009-02-05 10:12:38 +0000133 GLOCK_BUG_ON(gl, atomic_read(&gl->gl_ref) == 0);
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400134 atomic_inc(&gl->gl_ref);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000135}
136
137/**
Benjamin Marzinski8ff22a62009-07-10 18:04:24 -0500138 * demote_ok - Check to see if it's ok to unlock a glock
139 * @gl: the glock
140 *
141 * Returns: 1 if it's ok
142 */
143
144static int demote_ok(const struct gfs2_glock *gl)
145{
146 const struct gfs2_glock_operations *glops = gl->gl_ops;
147
148 if (gl->gl_state == LM_ST_UNLOCKED)
149 return 0;
Steven Whitehousef42ab082011-04-14 16:50:31 +0100150 if (!list_empty(&gl->gl_holders))
Benjamin Marzinski8ff22a62009-07-10 18:04:24 -0500151 return 0;
152 if (glops->go_demote_ok)
153 return glops->go_demote_ok(gl);
154 return 1;
155}
156
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000157
Steven Whitehouse29687a22011-03-30 16:33:25 +0100158void gfs2_glock_add_to_lru(struct gfs2_glock *gl)
159{
160 spin_lock(&lru_lock);
161
162 if (!list_empty(&gl->gl_lru))
163 list_del_init(&gl->gl_lru);
164 else
165 atomic_inc(&lru_count);
166
167 list_add_tail(&gl->gl_lru, &lru_list);
Steven Whitehouse627c10b2011-04-14 14:09:52 +0100168 set_bit(GLF_LRU, &gl->gl_flags);
Steven Whitehouse29687a22011-03-30 16:33:25 +0100169 spin_unlock(&lru_lock);
170}
171
Steven Whitehouse4043b882012-01-16 15:46:21 +0000172static void __gfs2_glock_remove_from_lru(struct gfs2_glock *gl)
Steven Whitehousef42ab082011-04-14 16:50:31 +0100173{
Steven Whitehousef42ab082011-04-14 16:50:31 +0100174 if (!list_empty(&gl->gl_lru)) {
175 list_del_init(&gl->gl_lru);
176 atomic_dec(&lru_count);
177 clear_bit(GLF_LRU, &gl->gl_flags);
178 }
Steven Whitehouse4043b882012-01-16 15:46:21 +0000179}
180
181static void gfs2_glock_remove_from_lru(struct gfs2_glock *gl)
182{
183 spin_lock(&lru_lock);
184 __gfs2_glock_remove_from_lru(gl);
Steven Whitehousef42ab082011-04-14 16:50:31 +0100185 spin_unlock(&lru_lock);
186}
187
Benjamin Marzinski8ff22a62009-07-10 18:04:24 -0500188/**
Benjamin Marzinski8ff22a62009-07-10 18:04:24 -0500189 * gfs2_glock_put_nolock() - Decrement reference count on glock
190 * @gl: The glock to put
191 *
192 * This function should only be used if the caller has its own reference
193 * to the glock, in addition to the one it is dropping.
194 */
195
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500196void gfs2_glock_put_nolock(struct gfs2_glock *gl)
Benjamin Marzinski8ff22a62009-07-10 18:04:24 -0500197{
198 if (atomic_dec_and_test(&gl->gl_ref))
199 GLOCK_BUG_ON(gl, 1);
Benjamin Marzinski8ff22a62009-07-10 18:04:24 -0500200}
201
202/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000203 * gfs2_glock_put() - Decrement reference count on glock
204 * @gl: The glock to put
205 *
206 */
207
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000208void gfs2_glock_put(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000209{
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000210 struct gfs2_sbd *sdp = gl->gl_sbd;
211 struct address_space *mapping = gfs2_glock2aspace(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000212
Steven Whitehouse4043b882012-01-16 15:46:21 +0000213 if (atomic_dec_and_lock(&gl->gl_ref, &lru_lock)) {
214 __gfs2_glock_remove_from_lru(gl);
215 spin_unlock(&lru_lock);
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000216 spin_lock_bucket(gl->gl_hash);
217 hlist_bl_del_rcu(&gl->gl_list);
218 spin_unlock_bucket(gl->gl_hash);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100219 GLOCK_BUG_ON(gl, !list_empty(&gl->gl_holders));
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000220 GLOCK_BUG_ON(gl, mapping && mapping->nrpages);
221 trace_gfs2_glock_put(gl);
222 sdp->sd_lockstruct.ls_ops->lm_put_lock(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000223 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000224}
225
226/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000227 * search_bucket() - Find struct gfs2_glock by lock number
228 * @bucket: the bucket to search
229 * @name: The lock name
230 *
231 * Returns: NULL, or the struct gfs2_glock with the requested number
232 */
233
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400234static struct gfs2_glock *search_bucket(unsigned int hash,
Steven Whitehouse899be4d2006-08-30 12:50:28 -0400235 const struct gfs2_sbd *sdp,
Steven Whitehoused6a53722006-08-30 11:16:23 -0400236 const struct lm_lockname *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000237{
238 struct gfs2_glock *gl;
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000239 struct hlist_bl_node *h;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000240
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000241 hlist_bl_for_each_entry_rcu(gl, h, &gl_hash_table[hash], gl_list) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000242 if (!lm_name_equal(&gl->gl_name, name))
243 continue;
Steven Whitehouse899be4d2006-08-30 12:50:28 -0400244 if (gl->gl_sbd != sdp)
245 continue;
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000246 if (atomic_inc_not_zero(&gl->gl_ref))
247 return gl;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000248 }
249
250 return NULL;
251}
252
253/**
Steven Whitehouse6802e342008-05-21 17:03:22 +0100254 * may_grant - check if its ok to grant a new lock
255 * @gl: The glock
256 * @gh: The lock request which we wish to grant
257 *
258 * Returns: true if its ok to grant the lock
259 */
260
261static inline int may_grant(const struct gfs2_glock *gl, const struct gfs2_holder *gh)
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500262{
Steven Whitehouse6802e342008-05-21 17:03:22 +0100263 const struct gfs2_holder *gh_head = list_entry(gl->gl_holders.next, const struct gfs2_holder, gh_list);
264 if ((gh->gh_state == LM_ST_EXCLUSIVE ||
265 gh_head->gh_state == LM_ST_EXCLUSIVE) && gh != gh_head)
266 return 0;
267 if (gl->gl_state == gh->gh_state)
268 return 1;
269 if (gh->gh_flags & GL_EXACT)
270 return 0;
Steven Whitehouse209806a2008-07-07 10:07:28 +0100271 if (gl->gl_state == LM_ST_EXCLUSIVE) {
272 if (gh->gh_state == LM_ST_SHARED && gh_head->gh_state == LM_ST_SHARED)
273 return 1;
274 if (gh->gh_state == LM_ST_DEFERRED && gh_head->gh_state == LM_ST_DEFERRED)
275 return 1;
276 }
Steven Whitehouse6802e342008-05-21 17:03:22 +0100277 if (gl->gl_state != LM_ST_UNLOCKED && (gh->gh_flags & LM_FLAG_ANY))
278 return 1;
279 return 0;
280}
281
282static void gfs2_holder_wake(struct gfs2_holder *gh)
283{
284 clear_bit(HIF_WAIT, &gh->gh_iflags);
285 smp_mb__after_clear_bit();
286 wake_up_bit(&gh->gh_iflags, HIF_WAIT);
287}
288
289/**
Steven Whitehoused5341a92010-07-23 14:05:51 +0100290 * do_error - Something unexpected has happened during a lock request
291 *
292 */
293
294static inline void do_error(struct gfs2_glock *gl, const int ret)
295{
296 struct gfs2_holder *gh, *tmp;
297
298 list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) {
299 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
300 continue;
301 if (ret & LM_OUT_ERROR)
302 gh->gh_error = -EIO;
303 else if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))
304 gh->gh_error = GLR_TRYFAILED;
305 else
306 continue;
307 list_del_init(&gh->gh_list);
308 trace_gfs2_glock_queue(gh, 0);
309 gfs2_holder_wake(gh);
310 }
311}
312
313/**
Steven Whitehouse6802e342008-05-21 17:03:22 +0100314 * do_promote - promote as many requests as possible on the current queue
315 * @gl: The glock
316 *
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000317 * Returns: 1 if there is a blocked holder at the head of the list, or 2
318 * if a type specific operation is underway.
Steven Whitehouse6802e342008-05-21 17:03:22 +0100319 */
320
321static int do_promote(struct gfs2_glock *gl)
Harvey Harrison55ba4742008-10-24 11:31:12 -0700322__releases(&gl->gl_spin)
323__acquires(&gl->gl_spin)
Steven Whitehouse6802e342008-05-21 17:03:22 +0100324{
325 const struct gfs2_glock_operations *glops = gl->gl_ops;
326 struct gfs2_holder *gh, *tmp;
327 int ret;
328
329restart:
330 list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) {
331 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
332 continue;
333 if (may_grant(gl, gh)) {
334 if (gh->gh_list.prev == &gl->gl_holders &&
335 glops->go_lock) {
336 spin_unlock(&gl->gl_spin);
337 /* FIXME: eliminate this eventually */
338 ret = glops->go_lock(gh);
339 spin_lock(&gl->gl_spin);
340 if (ret) {
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000341 if (ret == 1)
342 return 2;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100343 gh->gh_error = ret;
344 list_del_init(&gh->gh_list);
Steven Whitehouse63997772009-06-12 08:49:20 +0100345 trace_gfs2_glock_queue(gh, 0);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100346 gfs2_holder_wake(gh);
347 goto restart;
348 }
349 set_bit(HIF_HOLDER, &gh->gh_iflags);
Steven Whitehouse63997772009-06-12 08:49:20 +0100350 trace_gfs2_promote(gh, 1);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100351 gfs2_holder_wake(gh);
352 goto restart;
353 }
354 set_bit(HIF_HOLDER, &gh->gh_iflags);
Steven Whitehouse63997772009-06-12 08:49:20 +0100355 trace_gfs2_promote(gh, 0);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100356 gfs2_holder_wake(gh);
357 continue;
358 }
359 if (gh->gh_list.prev == &gl->gl_holders)
360 return 1;
Steven Whitehoused5341a92010-07-23 14:05:51 +0100361 do_error(gl, 0);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100362 break;
363 }
364 return 0;
365}
366
367/**
Steven Whitehouse6802e342008-05-21 17:03:22 +0100368 * find_first_waiter - find the first gh that's waiting for the glock
369 * @gl: the glock
370 */
371
372static inline struct gfs2_holder *find_first_waiter(const struct gfs2_glock *gl)
373{
374 struct gfs2_holder *gh;
375
376 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
377 if (!test_bit(HIF_HOLDER, &gh->gh_iflags))
378 return gh;
379 }
380 return NULL;
381}
382
383/**
384 * state_change - record that the glock is now in a different state
385 * @gl: the glock
386 * @new_state the new state
387 *
388 */
389
390static void state_change(struct gfs2_glock *gl, unsigned int new_state)
391{
392 int held1, held2;
393
394 held1 = (gl->gl_state != LM_ST_UNLOCKED);
395 held2 = (new_state != LM_ST_UNLOCKED);
396
397 if (held1 != held2) {
398 if (held2)
399 gfs2_glock_hold(gl);
400 else
Benjamin Marzinski8ff22a62009-07-10 18:04:24 -0500401 gfs2_glock_put_nolock(gl);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100402 }
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +0100403 if (held1 && held2 && list_empty(&gl->gl_holders))
404 clear_bit(GLF_QUEUED, &gl->gl_flags);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100405
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400406 if (new_state != gl->gl_target)
407 /* shorten our minimum hold time */
408 gl->gl_hold_time = max(gl->gl_hold_time - GL_GLOCK_HOLD_DECR,
409 GL_GLOCK_MIN_HOLD);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100410 gl->gl_state = new_state;
411 gl->gl_tchange = jiffies;
412}
413
414static void gfs2_demote_wake(struct gfs2_glock *gl)
415{
416 gl->gl_demote_state = LM_ST_EXCLUSIVE;
417 clear_bit(GLF_DEMOTE, &gl->gl_flags);
418 smp_mb__after_clear_bit();
419 wake_up_bit(&gl->gl_flags, GLF_DEMOTE);
420}
421
422/**
423 * finish_xmote - The DLM has replied to one of our lock requests
424 * @gl: The glock
425 * @ret: The status from the DLM
426 *
427 */
428
429static void finish_xmote(struct gfs2_glock *gl, unsigned int ret)
430{
431 const struct gfs2_glock_operations *glops = gl->gl_ops;
432 struct gfs2_holder *gh;
433 unsigned state = ret & LM_OUT_ST_MASK;
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000434 int rv;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500435
436 spin_lock(&gl->gl_spin);
Steven Whitehouse63997772009-06-12 08:49:20 +0100437 trace_gfs2_glock_state_change(gl, state);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100438 state_change(gl, state);
439 gh = find_first_waiter(gl);
440
441 /* Demote to UN request arrived during demote to SH or DF */
442 if (test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags) &&
443 state != LM_ST_UNLOCKED && gl->gl_demote_state == LM_ST_UNLOCKED)
444 gl->gl_target = LM_ST_UNLOCKED;
445
446 /* Check for state != intended state */
447 if (unlikely(state != gl->gl_target)) {
448 if (gh && !test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags)) {
449 /* move to back of queue and try next entry */
450 if (ret & LM_OUT_CANCELED) {
451 if ((gh->gh_flags & LM_FLAG_PRIORITY) == 0)
452 list_move_tail(&gh->gh_list, &gl->gl_holders);
453 gh = find_first_waiter(gl);
454 gl->gl_target = gh->gh_state;
455 goto retry;
456 }
457 /* Some error or failed "try lock" - report it */
458 if ((ret & LM_OUT_ERROR) ||
459 (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) {
460 gl->gl_target = gl->gl_state;
461 do_error(gl, ret);
462 goto out;
463 }
464 }
465 switch(state) {
466 /* Unlocked due to conversion deadlock, try again */
467 case LM_ST_UNLOCKED:
468retry:
469 do_xmote(gl, gh, gl->gl_target);
470 break;
471 /* Conversion fails, unlock and try again */
472 case LM_ST_SHARED:
473 case LM_ST_DEFERRED:
474 do_xmote(gl, gh, LM_ST_UNLOCKED);
475 break;
476 default: /* Everything else */
477 printk(KERN_ERR "GFS2: wanted %u got %u\n", gl->gl_target, state);
478 GLOCK_BUG_ON(gl, 1);
479 }
480 spin_unlock(&gl->gl_spin);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100481 return;
482 }
483
484 /* Fast path - we got what we asked for */
485 if (test_and_clear_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags))
486 gfs2_demote_wake(gl);
487 if (state != LM_ST_UNLOCKED) {
488 if (glops->go_xmote_bh) {
Steven Whitehouse6802e342008-05-21 17:03:22 +0100489 spin_unlock(&gl->gl_spin);
490 rv = glops->go_xmote_bh(gl, gh);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100491 spin_lock(&gl->gl_spin);
492 if (rv) {
493 do_error(gl, rv);
494 goto out;
495 }
496 }
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000497 rv = do_promote(gl);
498 if (rv == 2)
499 goto out_locked;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100500 }
501out:
502 clear_bit(GLF_LOCK, &gl->gl_flags);
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000503out_locked:
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500504 spin_unlock(&gl->gl_spin);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500505}
506
Steven Whitehouse6802e342008-05-21 17:03:22 +0100507/**
508 * do_xmote - Calls the DLM to change the state of a lock
509 * @gl: The lock state
510 * @gh: The holder (only for promotes)
511 * @target: The target lock state
512 *
513 */
514
515static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target)
Harvey Harrison55ba4742008-10-24 11:31:12 -0700516__releases(&gl->gl_spin)
517__acquires(&gl->gl_spin)
Steven Whitehouse6802e342008-05-21 17:03:22 +0100518{
519 const struct gfs2_glock_operations *glops = gl->gl_ops;
520 struct gfs2_sbd *sdp = gl->gl_sbd;
521 unsigned int lck_flags = gh ? gh->gh_flags : 0;
522 int ret;
523
524 lck_flags &= (LM_FLAG_TRY | LM_FLAG_TRY_1CB | LM_FLAG_NOEXP |
525 LM_FLAG_PRIORITY);
Steven Whitehouse921169c2010-11-29 12:50:38 +0000526 GLOCK_BUG_ON(gl, gl->gl_state == target);
527 GLOCK_BUG_ON(gl, gl->gl_state == gl->gl_target);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100528 if ((target == LM_ST_UNLOCKED || target == LM_ST_DEFERRED) &&
529 glops->go_inval) {
530 set_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags);
531 do_error(gl, 0); /* Fail queued try locks */
532 }
Steven Whitehouse47a25382010-11-30 15:49:31 +0000533 gl->gl_req = target;
Steven Whitehousea2457692012-01-20 10:38:36 +0000534 set_bit(GLF_BLOCKING, &gl->gl_flags);
535 if ((gl->gl_req == LM_ST_UNLOCKED) ||
536 (gl->gl_state == LM_ST_EXCLUSIVE) ||
537 (lck_flags & (LM_FLAG_TRY|LM_FLAG_TRY_1CB)))
538 clear_bit(GLF_BLOCKING, &gl->gl_flags);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100539 spin_unlock(&gl->gl_spin);
540 if (glops->go_xmote_th)
541 glops->go_xmote_th(gl);
542 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags))
543 glops->go_inval(gl, target == LM_ST_DEFERRED ? 0 : DIO_METADATA);
544 clear_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags);
545
546 gfs2_glock_hold(gl);
Steven Whitehouse921169c2010-11-29 12:50:38 +0000547 if (sdp->sd_lockstruct.ls_ops->lm_lock) {
548 /* lock_dlm */
549 ret = sdp->sd_lockstruct.ls_ops->lm_lock(gl, target, lck_flags);
550 GLOCK_BUG_ON(gl, ret);
551 } else { /* lock_nolock */
552 finish_xmote(gl, target);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100553 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
554 gfs2_glock_put(gl);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100555 }
Steven Whitehouse921169c2010-11-29 12:50:38 +0000556
Steven Whitehouse6802e342008-05-21 17:03:22 +0100557 spin_lock(&gl->gl_spin);
558}
559
560/**
561 * find_first_holder - find the first "holder" gh
562 * @gl: the glock
563 */
564
565static inline struct gfs2_holder *find_first_holder(const struct gfs2_glock *gl)
566{
567 struct gfs2_holder *gh;
568
569 if (!list_empty(&gl->gl_holders)) {
570 gh = list_entry(gl->gl_holders.next, struct gfs2_holder, gh_list);
571 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
572 return gh;
573 }
574 return NULL;
575}
576
577/**
578 * run_queue - do all outstanding tasks related to a glock
579 * @gl: The glock in question
580 * @nonblock: True if we must not block in run_queue
581 *
582 */
583
584static void run_queue(struct gfs2_glock *gl, const int nonblock)
Harvey Harrison55ba4742008-10-24 11:31:12 -0700585__releases(&gl->gl_spin)
586__acquires(&gl->gl_spin)
Steven Whitehouse6802e342008-05-21 17:03:22 +0100587{
588 struct gfs2_holder *gh = NULL;
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000589 int ret;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100590
591 if (test_and_set_bit(GLF_LOCK, &gl->gl_flags))
592 return;
593
594 GLOCK_BUG_ON(gl, test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags));
595
596 if (test_bit(GLF_DEMOTE, &gl->gl_flags) &&
597 gl->gl_demote_state != gl->gl_state) {
598 if (find_first_holder(gl))
Steven Whitehoused8348de2009-02-05 10:12:38 +0000599 goto out_unlock;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100600 if (nonblock)
601 goto out_sched;
602 set_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags);
Steven Whitehouse265d529c2008-07-07 10:02:36 +0100603 GLOCK_BUG_ON(gl, gl->gl_demote_state == LM_ST_EXCLUSIVE);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100604 gl->gl_target = gl->gl_demote_state;
605 } else {
606 if (test_bit(GLF_DEMOTE, &gl->gl_flags))
607 gfs2_demote_wake(gl);
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000608 ret = do_promote(gl);
609 if (ret == 0)
Steven Whitehoused8348de2009-02-05 10:12:38 +0000610 goto out_unlock;
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000611 if (ret == 2)
Steven Whitehousea228df62009-04-07 14:01:34 +0100612 goto out;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100613 gh = find_first_waiter(gl);
614 gl->gl_target = gh->gh_state;
615 if (!(gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)))
616 do_error(gl, 0); /* Fail queued try locks */
617 }
618 do_xmote(gl, gh, gl->gl_target);
Steven Whitehousea228df62009-04-07 14:01:34 +0100619out:
Steven Whitehouse6802e342008-05-21 17:03:22 +0100620 return;
621
622out_sched:
Steven Whitehouse7e71c552009-09-22 10:56:16 +0100623 clear_bit(GLF_LOCK, &gl->gl_flags);
624 smp_mb__after_clear_bit();
Steven Whitehouse6802e342008-05-21 17:03:22 +0100625 gfs2_glock_hold(gl);
626 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
Benjamin Marzinski8ff22a62009-07-10 18:04:24 -0500627 gfs2_glock_put_nolock(gl);
Steven Whitehouse7e71c552009-09-22 10:56:16 +0100628 return;
629
Steven Whitehoused8348de2009-02-05 10:12:38 +0000630out_unlock:
Steven Whitehouse6802e342008-05-21 17:03:22 +0100631 clear_bit(GLF_LOCK, &gl->gl_flags);
Steven Whitehouse7e71c552009-09-22 10:56:16 +0100632 smp_mb__after_clear_bit();
633 return;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100634}
635
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500636static void delete_work_func(struct work_struct *work)
637{
638 struct gfs2_glock *gl = container_of(work, struct gfs2_glock, gl_delete);
639 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse044b9412010-11-03 20:01:07 +0000640 struct gfs2_inode *ip;
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500641 struct inode *inode;
Steven Whitehouse044b9412010-11-03 20:01:07 +0000642 u64 no_addr = gl->gl_name.ln_number;
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500643
Steven Whitehouse044b9412010-11-03 20:01:07 +0000644 ip = gl->gl_object;
645 /* Note: Unsafe to dereference ip as we don't hold right refs/locks */
646
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500647 if (ip)
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100648 inode = gfs2_ilookup(sdp->sd_vfs, no_addr, 1);
Steven Whitehouse044b9412010-11-03 20:01:07 +0000649 else
650 inode = gfs2_lookup_by_inum(sdp, no_addr, NULL, GFS2_BLKST_UNLINKED);
651 if (inode && !IS_ERR(inode)) {
652 d_prune_aliases(inode);
653 iput(inode);
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500654 }
655 gfs2_glock_put(gl);
656}
657
Steven Whitehouse6802e342008-05-21 17:03:22 +0100658static void glock_work_func(struct work_struct *work)
659{
660 unsigned long delay = 0;
661 struct gfs2_glock *gl = container_of(work, struct gfs2_glock, gl_work.work);
Steven Whitehouse26bb7502009-11-27 10:31:11 +0000662 int drop_ref = 0;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100663
Steven Whitehouse26bb7502009-11-27 10:31:11 +0000664 if (test_and_clear_bit(GLF_REPLY_PENDING, &gl->gl_flags)) {
Steven Whitehouse6802e342008-05-21 17:03:22 +0100665 finish_xmote(gl, gl->gl_reply);
Steven Whitehouse26bb7502009-11-27 10:31:11 +0000666 drop_ref = 1;
667 }
Steven Whitehouse6802e342008-05-21 17:03:22 +0100668 spin_lock(&gl->gl_spin);
Bob Petersonf90e5b52011-05-24 10:44:42 -0400669 if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
Steven Whitehouse265d529c2008-07-07 10:02:36 +0100670 gl->gl_state != LM_ST_UNLOCKED &&
671 gl->gl_demote_state != LM_ST_EXCLUSIVE) {
Steven Whitehouse6802e342008-05-21 17:03:22 +0100672 unsigned long holdtime, now = jiffies;
Bob Petersonf90e5b52011-05-24 10:44:42 -0400673
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400674 holdtime = gl->gl_tchange + gl->gl_hold_time;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100675 if (time_before(now, holdtime))
676 delay = holdtime - now;
Bob Petersonf90e5b52011-05-24 10:44:42 -0400677
678 if (!delay) {
679 clear_bit(GLF_PENDING_DEMOTE, &gl->gl_flags);
680 set_bit(GLF_DEMOTE, &gl->gl_flags);
681 }
Steven Whitehouse6802e342008-05-21 17:03:22 +0100682 }
683 run_queue(gl, 0);
684 spin_unlock(&gl->gl_spin);
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400685 if (!delay)
Steven Whitehouse6802e342008-05-21 17:03:22 +0100686 gfs2_glock_put(gl);
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400687 else {
688 if (gl->gl_name.ln_type != LM_TYPE_INODE)
689 delay = 0;
690 if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
691 gfs2_glock_put(gl);
692 }
Steven Whitehouse26bb7502009-11-27 10:31:11 +0000693 if (drop_ref)
694 gfs2_glock_put(gl);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100695}
696
David Teiglandb3b94fa2006-01-16 16:50:04 +0000697/**
698 * gfs2_glock_get() - Get a glock, or create one if one doesn't exist
699 * @sdp: The GFS2 superblock
700 * @number: the lock number
701 * @glops: The glock_operations to use
702 * @create: If 0, don't create the glock if it doesn't exist
703 * @glp: the glock is returned here
704 *
705 * This does not lock a glock, just finds/creates structures for one.
706 *
707 * Returns: errno
708 */
709
Steven Whitehousecd915492006-09-04 12:49:07 -0400710int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number,
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400711 const struct gfs2_glock_operations *glops, int create,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000712 struct gfs2_glock **glp)
713{
Steven Whitehouse009d8512009-12-08 12:12:13 +0000714 struct super_block *s = sdp->sd_vfs;
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400715 struct lm_lockname name = { .ln_number = number, .ln_type = glops->go_type };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000716 struct gfs2_glock *gl, *tmp;
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400717 unsigned int hash = gl_hash(sdp, &name);
Steven Whitehouse009d8512009-12-08 12:12:13 +0000718 struct address_space *mapping;
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000719 struct kmem_cache *cachep;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000720
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000721 rcu_read_lock();
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400722 gl = search_bucket(hash, sdp, &name);
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000723 rcu_read_unlock();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000724
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000725 *glp = gl;
726 if (gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000727 return 0;
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000728 if (!create)
729 return -ENOENT;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000730
Steven Whitehouse009d8512009-12-08 12:12:13 +0000731 if (glops->go_flags & GLOF_ASPACE)
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000732 cachep = gfs2_glock_aspace_cachep;
Steven Whitehouse009d8512009-12-08 12:12:13 +0000733 else
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000734 cachep = gfs2_glock_cachep;
735 gl = kmem_cache_alloc(cachep, GFP_KERNEL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000736 if (!gl)
737 return -ENOMEM;
738
Steven Whitehouse8f052282010-01-29 15:21:27 +0000739 atomic_inc(&sdp->sd_glock_disposal);
Steven Whitehousea2457692012-01-20 10:38:36 +0000740 gl->gl_sbd = sdp;
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400741 gl->gl_flags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000742 gl->gl_name = name;
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400743 atomic_set(&gl->gl_ref, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000744 gl->gl_state = LM_ST_UNLOCKED;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100745 gl->gl_target = LM_ST_UNLOCKED;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500746 gl->gl_demote_state = LM_ST_EXCLUSIVE;
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400747 gl->gl_hash = hash;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000748 gl->gl_ops = glops;
Steven Whitehousea2457692012-01-20 10:38:36 +0000749 gl->gl_dstamp = ktime_set(0, 0);
750 preempt_disable();
751 /* We use the global stats to estimate the initial per-glock stats */
752 gl->gl_stats = this_cpu_ptr(sdp->sd_lkstats)->lkstats[glops->go_type];
753 preempt_enable();
754 gl->gl_stats.stats[GFS2_LKS_DCOUNT] = 0;
755 gl->gl_stats.stats[GFS2_LKS_QCOUNT] = 0;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000756 memset(&gl->gl_lksb, 0, sizeof(struct dlm_lksb));
Benjamin Marzinski90306c42012-05-29 23:01:09 -0500757 memset(gl->gl_lvb, 0, 32 * sizeof(char));
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000758 gl->gl_lksb.sb_lvbptr = gl->gl_lvb;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500759 gl->gl_tchange = jiffies;
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400760 gl->gl_object = NULL;
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400761 gl->gl_hold_time = GL_GLOCK_DFT_HOLD;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500762 INIT_DELAYED_WORK(&gl->gl_work, glock_work_func);
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500763 INIT_WORK(&gl->gl_delete, delete_work_func);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000764
Steven Whitehouse009d8512009-12-08 12:12:13 +0000765 mapping = gfs2_glock2aspace(gl);
766 if (mapping) {
767 mapping->a_ops = &gfs2_meta_aops;
768 mapping->host = s->s_bdev->bd_inode;
769 mapping->flags = 0;
770 mapping_set_gfp_mask(mapping, GFP_NOFS);
771 mapping->assoc_mapping = NULL;
772 mapping->backing_dev_info = s->s_bdi;
773 mapping->writeback_index = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000774 }
775
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000776 spin_lock_bucket(hash);
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400777 tmp = search_bucket(hash, sdp, &name);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000778 if (tmp) {
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000779 spin_unlock_bucket(hash);
780 kmem_cache_free(cachep, gl);
Steven Whitehousefc0e38d2011-03-09 10:58:04 +0000781 atomic_dec(&sdp->sd_glock_disposal);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000782 gl = tmp;
783 } else {
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000784 hlist_bl_add_head_rcu(&gl->gl_list, &gl_hash_table[hash]);
785 spin_unlock_bucket(hash);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000786 }
787
788 *glp = gl;
789
790 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000791}
792
793/**
794 * gfs2_holder_init - initialize a struct gfs2_holder in the default way
795 * @gl: the glock
796 * @state: the state we're requesting
797 * @flags: the modifier flags
798 * @gh: the holder structure
799 *
800 */
801
Steven Whitehouse190562b2006-04-20 16:57:23 -0400802void gfs2_holder_init(struct gfs2_glock *gl, unsigned int state, unsigned flags,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000803 struct gfs2_holder *gh)
804{
805 INIT_LIST_HEAD(&gh->gh_list);
806 gh->gh_gl = gl;
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500807 gh->gh_ip = (unsigned long)__builtin_return_address(0);
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -0800808 gh->gh_owner_pid = get_pid(task_pid(current));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000809 gh->gh_state = state;
810 gh->gh_flags = flags;
811 gh->gh_error = 0;
812 gh->gh_iflags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000813 gfs2_glock_hold(gl);
814}
815
816/**
817 * gfs2_holder_reinit - reinitialize a struct gfs2_holder so we can requeue it
818 * @state: the state we're requesting
819 * @flags: the modifier flags
820 * @gh: the holder structure
821 *
822 * Don't mess with the glock.
823 *
824 */
825
Steven Whitehouse190562b2006-04-20 16:57:23 -0400826void gfs2_holder_reinit(unsigned int state, unsigned flags, struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000827{
828 gh->gh_state = state;
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400829 gh->gh_flags = flags;
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000830 gh->gh_iflags = 0;
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500831 gh->gh_ip = (unsigned long)__builtin_return_address(0);
Bob Peterson1a0eae82010-04-14 11:58:16 -0400832 if (gh->gh_owner_pid)
833 put_pid(gh->gh_owner_pid);
834 gh->gh_owner_pid = get_pid(task_pid(current));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000835}
836
837/**
838 * gfs2_holder_uninit - uninitialize a holder structure (drop glock reference)
839 * @gh: the holder structure
840 *
841 */
842
843void gfs2_holder_uninit(struct gfs2_holder *gh)
844{
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -0800845 put_pid(gh->gh_owner_pid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000846 gfs2_glock_put(gh->gh_gl);
847 gh->gh_gl = NULL;
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500848 gh->gh_ip = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000849}
850
Steven Whitehousefe64d512009-05-19 10:01:18 +0100851/**
852 * gfs2_glock_holder_wait
853 * @word: unused
854 *
855 * This function and gfs2_glock_demote_wait both show up in the WCHAN
856 * field. Thus I've separated these otherwise identical functions in
857 * order to be more informative to the user.
858 */
859
860static int gfs2_glock_holder_wait(void *word)
Steven Whitehousefee852e2007-01-17 15:33:23 +0000861{
862 schedule();
863 return 0;
864}
865
Steven Whitehousefe64d512009-05-19 10:01:18 +0100866static int gfs2_glock_demote_wait(void *word)
867{
868 schedule();
869 return 0;
870}
871
Bob Peterson07a79042012-08-09 12:48:44 -0500872/**
873 * gfs2_glock_wait - wait on a glock acquisition
874 * @gh: the glock holder
875 *
876 * Returns: 0 on success
877 */
878
879int gfs2_glock_wait(struct gfs2_holder *gh)
Steven Whitehousefee852e2007-01-17 15:33:23 +0000880{
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400881 unsigned long time1 = jiffies;
882
Steven Whitehousefee852e2007-01-17 15:33:23 +0000883 might_sleep();
Steven Whitehousefe64d512009-05-19 10:01:18 +0100884 wait_on_bit(&gh->gh_iflags, HIF_WAIT, gfs2_glock_holder_wait, TASK_UNINTERRUPTIBLE);
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400885 if (time_after(jiffies, time1 + HZ)) /* have we waited > a second? */
886 /* Lengthen the minimum hold time. */
887 gh->gh_gl->gl_hold_time = min(gh->gh_gl->gl_hold_time +
888 GL_GLOCK_HOLD_INCR,
889 GL_GLOCK_MAX_HOLD);
Bob Peterson07a79042012-08-09 12:48:44 -0500890 return gh->gh_error;
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100891}
892
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100893static void wait_on_demote(struct gfs2_glock *gl)
894{
895 might_sleep();
Steven Whitehousefe64d512009-05-19 10:01:18 +0100896 wait_on_bit(&gl->gl_flags, GLF_DEMOTE, gfs2_glock_demote_wait, TASK_UNINTERRUPTIBLE);
Steven Whitehousefee852e2007-01-17 15:33:23 +0000897}
898
David Teiglandb3b94fa2006-01-16 16:50:04 +0000899/**
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000900 * handle_callback - process a demote request
David Teiglandb3b94fa2006-01-16 16:50:04 +0000901 * @gl: the glock
902 * @state: the state the caller wants us to change to
903 *
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000904 * There are only two requests that we are going to see in actual
905 * practise: LM_ST_SHARED and LM_ST_UNLOCKED
David Teiglandb3b94fa2006-01-16 16:50:04 +0000906 */
907
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500908static void handle_callback(struct gfs2_glock *gl, unsigned int state,
Steven Whitehouse97cc10252008-11-20 13:39:47 +0000909 unsigned long delay)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000910{
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500911 int bit = delay ? GLF_PENDING_DEMOTE : GLF_DEMOTE;
912
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500913 set_bit(bit, &gl->gl_flags);
914 if (gl->gl_demote_state == LM_ST_EXCLUSIVE) {
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000915 gl->gl_demote_state = state;
916 gl->gl_demote_time = jiffies;
Josef Whiter26caee52007-07-23 10:02:40 +0100917 } else if (gl->gl_demote_state != LM_ST_UNLOCKED &&
918 gl->gl_demote_state != state) {
Steven Whitehouse6802e342008-05-21 17:03:22 +0100919 gl->gl_demote_state = LM_ST_UNLOCKED;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000920 }
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500921 if (gl->gl_ops->go_callback)
922 gl->gl_ops->go_callback(gl);
Steven Whitehouse63997772009-06-12 08:49:20 +0100923 trace_gfs2_demote_rq(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000924}
925
Steven Whitehouse6802e342008-05-21 17:03:22 +0100926void gfs2_print_dbg(struct seq_file *seq, const char *fmt, ...)
Robert Peterson7c52b162007-03-16 10:26:37 +0000927{
Joe Perches5e690692010-11-09 16:35:20 -0800928 struct va_format vaf;
Robert Peterson7c52b162007-03-16 10:26:37 +0000929 va_list args;
930
931 va_start(args, fmt);
Joe Perches5e690692010-11-09 16:35:20 -0800932
Steven Whitehouse6802e342008-05-21 17:03:22 +0100933 if (seq) {
Steven Whitehouse1bb49302012-06-11 13:26:50 +0100934 seq_vprintf(seq, fmt, args);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100935 } else {
Joe Perches5e690692010-11-09 16:35:20 -0800936 vaf.fmt = fmt;
937 vaf.va = &args;
938
939 printk(KERN_ERR " %pV", &vaf);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100940 }
Joe Perches5e690692010-11-09 16:35:20 -0800941
Robert Peterson7c52b162007-03-16 10:26:37 +0000942 va_end(args);
943}
944
David Teiglandb3b94fa2006-01-16 16:50:04 +0000945/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000946 * add_to_queue - Add a holder to the wait queue (but look for recursion)
947 * @gh: the holder structure to add
948 *
Steven Whitehouse6802e342008-05-21 17:03:22 +0100949 * Eventually we should move the recursive locking trap to a
950 * debugging option or something like that. This is the fast
951 * path and needs to have the minimum number of distractions.
952 *
David Teiglandb3b94fa2006-01-16 16:50:04 +0000953 */
954
Steven Whitehouse6802e342008-05-21 17:03:22 +0100955static inline void add_to_queue(struct gfs2_holder *gh)
Harvey Harrison55ba4742008-10-24 11:31:12 -0700956__releases(&gl->gl_spin)
957__acquires(&gl->gl_spin)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000958{
959 struct gfs2_glock *gl = gh->gh_gl;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100960 struct gfs2_sbd *sdp = gl->gl_sbd;
961 struct list_head *insert_pt = NULL;
962 struct gfs2_holder *gh2;
963 int try_lock = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000964
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -0800965 BUG_ON(gh->gh_owner_pid == NULL);
Steven Whitehousefee852e2007-01-17 15:33:23 +0000966 if (test_and_set_bit(HIF_WAIT, &gh->gh_iflags))
967 BUG();
Steven Whitehouse190562b2006-04-20 16:57:23 -0400968
Steven Whitehouse6802e342008-05-21 17:03:22 +0100969 if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) {
970 if (test_bit(GLF_LOCK, &gl->gl_flags))
971 try_lock = 1;
972 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags))
973 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000974 }
975
Steven Whitehouse6802e342008-05-21 17:03:22 +0100976 list_for_each_entry(gh2, &gl->gl_holders, gh_list) {
977 if (unlikely(gh2->gh_owner_pid == gh->gh_owner_pid &&
978 (gh->gh_gl->gl_ops->go_type != LM_TYPE_FLOCK)))
979 goto trap_recursive;
980 if (try_lock &&
981 !(gh2->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) &&
982 !may_grant(gl, gh)) {
983fail:
984 gh->gh_error = GLR_TRYFAILED;
985 gfs2_holder_wake(gh);
986 return;
987 }
988 if (test_bit(HIF_HOLDER, &gh2->gh_iflags))
989 continue;
990 if (unlikely((gh->gh_flags & LM_FLAG_PRIORITY) && !insert_pt))
991 insert_pt = &gh2->gh_list;
992 }
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +0100993 set_bit(GLF_QUEUED, &gl->gl_flags);
Steven Whitehouseedae38a2011-01-31 09:38:12 +0000994 trace_gfs2_glock_queue(gh, 1);
Steven Whitehousea2457692012-01-20 10:38:36 +0000995 gfs2_glstats_inc(gl, GFS2_LKS_QCOUNT);
996 gfs2_sbstats_inc(gl, GFS2_LKS_QCOUNT);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100997 if (likely(insert_pt == NULL)) {
998 list_add_tail(&gh->gh_list, &gl->gl_holders);
999 if (unlikely(gh->gh_flags & LM_FLAG_PRIORITY))
1000 goto do_cancel;
1001 return;
1002 }
1003 list_add_tail(&gh->gh_list, insert_pt);
1004do_cancel:
1005 gh = list_entry(gl->gl_holders.next, struct gfs2_holder, gh_list);
1006 if (!(gh->gh_flags & LM_FLAG_PRIORITY)) {
1007 spin_unlock(&gl->gl_spin);
Steven Whitehouse048bca22008-05-23 14:46:04 +01001008 if (sdp->sd_lockstruct.ls_ops->lm_cancel)
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001009 sdp->sd_lockstruct.ls_ops->lm_cancel(gl);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001010 spin_lock(&gl->gl_spin);
1011 }
1012 return;
1013
1014trap_recursive:
1015 print_symbol(KERN_ERR "original: %s\n", gh2->gh_ip);
1016 printk(KERN_ERR "pid: %d\n", pid_nr(gh2->gh_owner_pid));
1017 printk(KERN_ERR "lock type: %d req lock state : %d\n",
1018 gh2->gh_gl->gl_name.ln_type, gh2->gh_state);
1019 print_symbol(KERN_ERR "new: %s\n", gh->gh_ip);
1020 printk(KERN_ERR "pid: %d\n", pid_nr(gh->gh_owner_pid));
1021 printk(KERN_ERR "lock type: %d req lock state : %d\n",
1022 gh->gh_gl->gl_name.ln_type, gh->gh_state);
1023 __dump_glock(NULL, gl);
1024 BUG();
David Teiglandb3b94fa2006-01-16 16:50:04 +00001025}
1026
1027/**
1028 * gfs2_glock_nq - enqueue a struct gfs2_holder onto a glock (acquire a glock)
1029 * @gh: the holder structure
1030 *
1031 * if (gh->gh_flags & GL_ASYNC), this never returns an error
1032 *
1033 * Returns: 0, GLR_TRYFAILED, or errno on failure
1034 */
1035
1036int gfs2_glock_nq(struct gfs2_holder *gh)
1037{
1038 struct gfs2_glock *gl = gh->gh_gl;
1039 struct gfs2_sbd *sdp = gl->gl_sbd;
1040 int error = 0;
1041
Steven Whitehouse6802e342008-05-21 17:03:22 +01001042 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001043 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001044
Steven Whitehousef42ab082011-04-14 16:50:31 +01001045 if (test_bit(GLF_LRU, &gl->gl_flags))
1046 gfs2_glock_remove_from_lru(gl);
1047
David Teiglandb3b94fa2006-01-16 16:50:04 +00001048 spin_lock(&gl->gl_spin);
1049 add_to_queue(gh);
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001050 if ((LM_FLAG_NOEXP & gh->gh_flags) &&
1051 test_and_clear_bit(GLF_FROZEN, &gl->gl_flags))
1052 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001053 run_queue(gl, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001054 spin_unlock(&gl->gl_spin);
1055
Steven Whitehouse6802e342008-05-21 17:03:22 +01001056 if (!(gh->gh_flags & GL_ASYNC))
1057 error = gfs2_glock_wait(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001058
David Teiglandb3b94fa2006-01-16 16:50:04 +00001059 return error;
1060}
1061
1062/**
1063 * gfs2_glock_poll - poll to see if an async request has been completed
1064 * @gh: the holder
1065 *
1066 * Returns: 1 if the request is ready to be gfs2_glock_wait()ed on
1067 */
1068
1069int gfs2_glock_poll(struct gfs2_holder *gh)
1070{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001071 return test_bit(HIF_WAIT, &gh->gh_iflags) ? 0 : 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001072}
1073
1074/**
1075 * gfs2_glock_dq - dequeue a struct gfs2_holder from a glock (release a glock)
1076 * @gh: the glock holder
1077 *
1078 */
1079
1080void gfs2_glock_dq(struct gfs2_holder *gh)
1081{
1082 struct gfs2_glock *gl = gh->gh_gl;
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001083 const struct gfs2_glock_operations *glops = gl->gl_ops;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001084 unsigned delay = 0;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001085 int fast_path = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001086
Steven Whitehouse6802e342008-05-21 17:03:22 +01001087 spin_lock(&gl->gl_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001088 if (gh->gh_flags & GL_NOCACHE)
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001089 handle_callback(gl, LM_ST_UNLOCKED, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001090
David Teiglandb3b94fa2006-01-16 16:50:04 +00001091 list_del_init(&gh->gh_list);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001092 if (find_first_holder(gl) == NULL) {
Steven Whitehouse3042a2c2007-11-02 08:39:34 +00001093 if (glops->go_unlock) {
Steven Whitehouse6802e342008-05-21 17:03:22 +01001094 GLOCK_BUG_ON(gl, test_and_set_bit(GLF_LOCK, &gl->gl_flags));
Steven Whitehouse3042a2c2007-11-02 08:39:34 +00001095 spin_unlock(&gl->gl_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001096 glops->go_unlock(gh);
Steven Whitehouse3042a2c2007-11-02 08:39:34 +00001097 spin_lock(&gl->gl_spin);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001098 clear_bit(GLF_LOCK, &gl->gl_flags);
Steven Whitehouse3042a2c2007-11-02 08:39:34 +00001099 }
Steven Whitehouse6802e342008-05-21 17:03:22 +01001100 if (list_empty(&gl->gl_holders) &&
1101 !test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
1102 !test_bit(GLF_DEMOTE, &gl->gl_flags))
1103 fast_path = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001104 }
Bob Peterson4abb6ad2012-08-09 12:48:43 -05001105 if (!test_bit(GLF_LFLUSH, &gl->gl_flags) && demote_ok(gl))
1106 gfs2_glock_add_to_lru(gl);
1107
Steven Whitehouse63997772009-06-12 08:49:20 +01001108 trace_gfs2_glock_queue(gh, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001109 spin_unlock(&gl->gl_spin);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001110 if (likely(fast_path))
1111 return;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001112
1113 gfs2_glock_hold(gl);
1114 if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001115 !test_bit(GLF_DEMOTE, &gl->gl_flags) &&
1116 gl->gl_name.ln_type == LM_TYPE_INODE)
1117 delay = gl->gl_hold_time;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001118 if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
1119 gfs2_glock_put(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001120}
1121
Abhijith Dasd93cfa92007-06-11 08:22:32 +01001122void gfs2_glock_dq_wait(struct gfs2_holder *gh)
1123{
1124 struct gfs2_glock *gl = gh->gh_gl;
1125 gfs2_glock_dq(gh);
1126 wait_on_demote(gl);
1127}
1128
David Teiglandb3b94fa2006-01-16 16:50:04 +00001129/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001130 * gfs2_glock_dq_uninit - dequeue a holder from a glock and initialize it
1131 * @gh: the holder structure
1132 *
1133 */
1134
1135void gfs2_glock_dq_uninit(struct gfs2_holder *gh)
1136{
1137 gfs2_glock_dq(gh);
1138 gfs2_holder_uninit(gh);
1139}
1140
1141/**
1142 * gfs2_glock_nq_num - acquire a glock based on lock number
1143 * @sdp: the filesystem
1144 * @number: the lock number
1145 * @glops: the glock operations for the type of glock
1146 * @state: the state to acquire the glock in
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001147 * @flags: modifier flags for the acquisition
David Teiglandb3b94fa2006-01-16 16:50:04 +00001148 * @gh: the struct gfs2_holder
1149 *
1150 * Returns: errno
1151 */
1152
Steven Whitehousecd915492006-09-04 12:49:07 -04001153int gfs2_glock_nq_num(struct gfs2_sbd *sdp, u64 number,
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001154 const struct gfs2_glock_operations *glops,
1155 unsigned int state, int flags, struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001156{
1157 struct gfs2_glock *gl;
1158 int error;
1159
1160 error = gfs2_glock_get(sdp, number, glops, CREATE, &gl);
1161 if (!error) {
1162 error = gfs2_glock_nq_init(gl, state, flags, gh);
1163 gfs2_glock_put(gl);
1164 }
1165
1166 return error;
1167}
1168
1169/**
1170 * glock_compare - Compare two struct gfs2_glock structures for sorting
1171 * @arg_a: the first structure
1172 * @arg_b: the second structure
1173 *
1174 */
1175
1176static int glock_compare(const void *arg_a, const void *arg_b)
1177{
Steven Whitehousea5e08a92006-09-09 17:07:05 -04001178 const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1179 const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1180 const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1181 const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001182
1183 if (a->ln_number > b->ln_number)
Steven Whitehousea5e08a92006-09-09 17:07:05 -04001184 return 1;
1185 if (a->ln_number < b->ln_number)
1186 return -1;
Steven Whitehouse1c0f4872007-01-22 12:10:39 -05001187 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 -04001188 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001189}
1190
1191/**
1192 * nq_m_sync - synchonously acquire more than one glock in deadlock free order
1193 * @num_gh: the number of structures
1194 * @ghs: an array of struct gfs2_holder structures
1195 *
1196 * Returns: 0 on success (all glocks acquired),
1197 * errno on failure (no glocks acquired)
1198 */
1199
1200static int nq_m_sync(unsigned int num_gh, struct gfs2_holder *ghs,
1201 struct gfs2_holder **p)
1202{
1203 unsigned int x;
1204 int error = 0;
1205
1206 for (x = 0; x < num_gh; x++)
1207 p[x] = &ghs[x];
1208
1209 sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare, NULL);
1210
1211 for (x = 0; x < num_gh; x++) {
1212 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1213
1214 error = gfs2_glock_nq(p[x]);
1215 if (error) {
1216 while (x--)
1217 gfs2_glock_dq(p[x]);
1218 break;
1219 }
1220 }
1221
1222 return error;
1223}
1224
1225/**
1226 * gfs2_glock_nq_m - acquire multiple glocks
1227 * @num_gh: the number of structures
1228 * @ghs: an array of struct gfs2_holder structures
1229 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001230 *
1231 * Returns: 0 on success (all glocks acquired),
1232 * errno on failure (no glocks acquired)
1233 */
1234
1235int gfs2_glock_nq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1236{
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001237 struct gfs2_holder *tmp[4];
1238 struct gfs2_holder **pph = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001239 int error = 0;
1240
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001241 switch(num_gh) {
1242 case 0:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001243 return 0;
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001244 case 1:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001245 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1246 return gfs2_glock_nq(ghs);
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001247 default:
1248 if (num_gh <= 4)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001249 break;
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001250 pph = kmalloc(num_gh * sizeof(struct gfs2_holder *), GFP_NOFS);
1251 if (!pph)
1252 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001253 }
1254
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001255 error = nq_m_sync(num_gh, ghs, pph);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001256
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001257 if (pph != tmp)
1258 kfree(pph);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001259
1260 return error;
1261}
1262
1263/**
1264 * gfs2_glock_dq_m - release multiple glocks
1265 * @num_gh: the number of structures
1266 * @ghs: an array of struct gfs2_holder structures
1267 *
1268 */
1269
1270void gfs2_glock_dq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1271{
Bob Petersonfa1bbde2011-03-10 11:41:57 -05001272 while (num_gh--)
1273 gfs2_glock_dq(&ghs[num_gh]);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001274}
1275
1276/**
1277 * gfs2_glock_dq_uninit_m - release multiple glocks
1278 * @num_gh: the number of structures
1279 * @ghs: an array of struct gfs2_holder structures
1280 *
1281 */
1282
1283void gfs2_glock_dq_uninit_m(unsigned int num_gh, struct gfs2_holder *ghs)
1284{
Bob Petersonfa1bbde2011-03-10 11:41:57 -05001285 while (num_gh--)
1286 gfs2_glock_dq_uninit(&ghs[num_gh]);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001287}
1288
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001289void gfs2_glock_cb(struct gfs2_glock *gl, unsigned int state)
Steven Whitehouseda755fd2008-01-30 15:34:04 +00001290{
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001291 unsigned long delay = 0;
1292 unsigned long holdtime;
1293 unsigned long now = jiffies;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001294
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001295 gfs2_glock_hold(gl);
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001296 holdtime = gl->gl_tchange + gl->gl_hold_time;
1297 if (test_bit(GLF_QUEUED, &gl->gl_flags) &&
1298 gl->gl_name.ln_type == LM_TYPE_INODE) {
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +01001299 if (time_before(now, holdtime))
1300 delay = holdtime - now;
1301 if (test_bit(GLF_REPLY_PENDING, &gl->gl_flags))
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001302 delay = gl->gl_hold_time;
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +01001303 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001304
Steven Whitehouse6802e342008-05-21 17:03:22 +01001305 spin_lock(&gl->gl_spin);
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001306 handle_callback(gl, state, delay);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001307 spin_unlock(&gl->gl_spin);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001308 if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
1309 gfs2_glock_put(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001310}
1311
1312/**
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001313 * gfs2_should_freeze - Figure out if glock should be frozen
1314 * @gl: The glock in question
1315 *
1316 * Glocks are not frozen if (a) the result of the dlm operation is
1317 * an error, (b) the locking operation was an unlock operation or
1318 * (c) if there is a "noexp" flagged request anywhere in the queue
1319 *
1320 * Returns: 1 if freezing should occur, 0 otherwise
1321 */
1322
1323static int gfs2_should_freeze(const struct gfs2_glock *gl)
1324{
1325 const struct gfs2_holder *gh;
1326
1327 if (gl->gl_reply & ~LM_OUT_ST_MASK)
1328 return 0;
1329 if (gl->gl_target == LM_ST_UNLOCKED)
1330 return 0;
1331
1332 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
1333 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
1334 continue;
1335 if (LM_FLAG_NOEXP & gh->gh_flags)
1336 return 0;
1337 }
1338
1339 return 1;
1340}
1341
1342/**
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001343 * gfs2_glock_complete - Callback used by locking
1344 * @gl: Pointer to the glock
1345 * @ret: The return value from the dlm
David Teiglandb3b94fa2006-01-16 16:50:04 +00001346 *
Steven Whitehouse47a25382010-11-30 15:49:31 +00001347 * The gl_reply field is under the gl_spin lock so that it is ok
1348 * to use a bitfield shared with other glock state fields.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001349 */
1350
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001351void gfs2_glock_complete(struct gfs2_glock *gl, int ret)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001352{
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001353 struct lm_lockstruct *ls = &gl->gl_sbd->sd_lockstruct;
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001354
Steven Whitehouse47a25382010-11-30 15:49:31 +00001355 spin_lock(&gl->gl_spin);
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001356 gl->gl_reply = ret;
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001357
David Teiglande0c2a9a2012-01-09 17:18:05 -05001358 if (unlikely(test_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags))) {
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001359 if (gfs2_should_freeze(gl)) {
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001360 set_bit(GLF_FROZEN, &gl->gl_flags);
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001361 spin_unlock(&gl->gl_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001362 return;
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001363 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001364 }
Steven Whitehouse47a25382010-11-30 15:49:31 +00001365
1366 spin_unlock(&gl->gl_spin);
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001367 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
Steven Whitehouse47a25382010-11-30 15:49:31 +00001368 smp_wmb();
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001369 gfs2_glock_hold(gl);
1370 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1371 gfs2_glock_put(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001372}
1373
David Teiglandb3b94fa2006-01-16 16:50:04 +00001374
Ying Han1495f232011-05-24 17:12:27 -07001375static int gfs2_shrink_glock_memory(struct shrinker *shrink,
1376 struct shrink_control *sc)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001377{
1378 struct gfs2_glock *gl;
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001379 int may_demote;
1380 int nr_skipped = 0;
Ying Han1495f232011-05-24 17:12:27 -07001381 int nr = sc->nr_to_scan;
1382 gfp_t gfp_mask = sc->gfp_mask;
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001383 LIST_HEAD(skipped);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001384
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001385 if (nr == 0)
1386 goto out;
1387
1388 if (!(gfp_mask & __GFP_FS))
1389 return -1;
1390
1391 spin_lock(&lru_lock);
1392 while(nr && !list_empty(&lru_list)) {
1393 gl = list_entry(lru_list.next, struct gfs2_glock, gl_lru);
1394 list_del_init(&gl->gl_lru);
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001395 clear_bit(GLF_LRU, &gl->gl_flags);
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001396 atomic_dec(&lru_count);
1397
1398 /* Test for being demotable */
1399 if (!test_and_set_bit(GLF_LOCK, &gl->gl_flags)) {
1400 gfs2_glock_hold(gl);
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001401 spin_unlock(&lru_lock);
1402 spin_lock(&gl->gl_spin);
1403 may_demote = demote_ok(gl);
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001404 if (may_demote) {
1405 handle_callback(gl, LM_ST_UNLOCKED, 0);
1406 nr--;
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001407 }
Steven Whitehouse7e71c552009-09-22 10:56:16 +01001408 clear_bit(GLF_LOCK, &gl->gl_flags);
1409 smp_mb__after_clear_bit();
Steven Whitehouse2163b1e2009-06-25 16:30:26 +01001410 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05001411 gfs2_glock_put_nolock(gl);
1412 spin_unlock(&gl->gl_spin);
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001413 spin_lock(&lru_lock);
Steven Whitehouse2163b1e2009-06-25 16:30:26 +01001414 continue;
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001415 }
Steven Whitehouse2163b1e2009-06-25 16:30:26 +01001416 nr_skipped++;
1417 list_add(&gl->gl_lru, &skipped);
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001418 set_bit(GLF_LRU, &gl->gl_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001419 }
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001420 list_splice(&skipped, &lru_list);
1421 atomic_add(nr_skipped, &lru_count);
1422 spin_unlock(&lru_lock);
1423out:
1424 return (atomic_read(&lru_count) / 100) * sysctl_vfs_cache_pressure;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001425}
1426
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001427static struct shrinker glock_shrinker = {
1428 .shrink = gfs2_shrink_glock_memory,
1429 .seeks = DEFAULT_SEEKS,
1430};
1431
David Teiglandb3b94fa2006-01-16 16:50:04 +00001432/**
1433 * examine_bucket - Call a function for glock in a hash bucket
1434 * @examiner: the function
1435 * @sdp: the filesystem
1436 * @bucket: the bucket
1437 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001438 */
1439
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001440static void examine_bucket(glock_examiner examiner, const struct gfs2_sbd *sdp,
Steven Whitehouse37b2fa62006-09-08 13:35:56 -04001441 unsigned int hash)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001442{
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001443 struct gfs2_glock *gl;
1444 struct hlist_bl_head *head = &gl_hash_table[hash];
1445 struct hlist_bl_node *pos;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001446
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001447 rcu_read_lock();
1448 hlist_bl_for_each_entry_rcu(gl, pos, head, gl_list) {
1449 if ((gl->gl_sbd == sdp) && atomic_read(&gl->gl_ref))
Steven Whitehouse24264432006-09-11 21:40:30 -04001450 examiner(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001451 }
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001452 rcu_read_unlock();
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001453 cond_resched();
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001454}
1455
1456static void glock_hash_walk(glock_examiner examiner, const struct gfs2_sbd *sdp)
1457{
1458 unsigned x;
1459
1460 for (x = 0; x < GFS2_GL_HASH_SIZE; x++)
1461 examine_bucket(examiner, sdp, x);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001462}
1463
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001464
1465/**
1466 * thaw_glock - thaw out a glock which has an unprocessed reply waiting
1467 * @gl: The glock to thaw
1468 *
1469 * N.B. When we freeze a glock, we leave a ref to the glock outstanding,
1470 * so this has to result in the ref count being dropped by one.
1471 */
1472
1473static void thaw_glock(struct gfs2_glock *gl)
1474{
1475 if (!test_and_clear_bit(GLF_FROZEN, &gl->gl_flags))
1476 return;
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001477 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
1478 gfs2_glock_hold(gl);
1479 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1480 gfs2_glock_put(gl);
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001481}
1482
David Teiglandb3b94fa2006-01-16 16:50:04 +00001483/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001484 * clear_glock - look at a glock and see if we can free it from glock cache
1485 * @gl: the glock to look at
1486 *
1487 */
1488
1489static void clear_glock(struct gfs2_glock *gl)
1490{
Steven Whitehousef42ab082011-04-14 16:50:31 +01001491 gfs2_glock_remove_from_lru(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001492
Steven Whitehouse6802e342008-05-21 17:03:22 +01001493 spin_lock(&gl->gl_spin);
Steven Whitehousec741c452010-09-29 14:20:52 +01001494 if (gl->gl_state != LM_ST_UNLOCKED)
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001495 handle_callback(gl, LM_ST_UNLOCKED, 0);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001496 spin_unlock(&gl->gl_spin);
1497 gfs2_glock_hold(gl);
1498 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1499 gfs2_glock_put(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001500}
1501
1502/**
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001503 * gfs2_glock_thaw - Thaw any frozen glocks
1504 * @sdp: The super block
1505 *
1506 */
1507
1508void gfs2_glock_thaw(struct gfs2_sbd *sdp)
1509{
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001510 glock_hash_walk(thaw_glock, sdp);
1511}
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001512
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001513static int dump_glock(struct seq_file *seq, struct gfs2_glock *gl)
1514{
1515 int ret;
1516 spin_lock(&gl->gl_spin);
1517 ret = __dump_glock(seq, gl);
1518 spin_unlock(&gl->gl_spin);
1519 return ret;
1520}
1521
1522static void dump_glock_func(struct gfs2_glock *gl)
1523{
1524 dump_glock(NULL, gl);
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001525}
1526
1527/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001528 * gfs2_gl_hash_clear - Empty out the glock hash table
1529 * @sdp: the filesystem
1530 * @wait: wait until it's all gone
1531 *
Steven Whitehouse1bdad602008-06-03 14:09:53 +01001532 * Called when unmounting the filesystem.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001533 */
1534
Steven Whitehousefefc03b2008-12-19 15:32:06 +00001535void gfs2_gl_hash_clear(struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001536{
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001537 glock_hash_walk(clear_glock, sdp);
Steven Whitehouse8f052282010-01-29 15:21:27 +00001538 flush_workqueue(glock_workqueue);
1539 wait_event(sdp->sd_glock_wait, atomic_read(&sdp->sd_glock_disposal) == 0);
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001540 glock_hash_walk(dump_glock_func, sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001541}
1542
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001543void gfs2_glock_finish_truncate(struct gfs2_inode *ip)
1544{
1545 struct gfs2_glock *gl = ip->i_gl;
1546 int ret;
1547
1548 ret = gfs2_truncatei_resume(ip);
1549 gfs2_assert_withdraw(gl->gl_sbd, ret == 0);
1550
1551 spin_lock(&gl->gl_spin);
1552 clear_bit(GLF_LOCK, &gl->gl_flags);
1553 run_queue(gl, 1);
1554 spin_unlock(&gl->gl_spin);
1555}
1556
Steven Whitehouse6802e342008-05-21 17:03:22 +01001557static const char *state2str(unsigned state)
Robert Peterson04b933f2007-03-23 17:05:15 -05001558{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001559 switch(state) {
1560 case LM_ST_UNLOCKED:
1561 return "UN";
1562 case LM_ST_SHARED:
1563 return "SH";
1564 case LM_ST_DEFERRED:
1565 return "DF";
1566 case LM_ST_EXCLUSIVE:
1567 return "EX";
1568 }
1569 return "??";
1570}
Robert Peterson04b933f2007-03-23 17:05:15 -05001571
Steven Whitehouse6802e342008-05-21 17:03:22 +01001572static const char *hflags2str(char *buf, unsigned flags, unsigned long iflags)
1573{
1574 char *p = buf;
1575 if (flags & LM_FLAG_TRY)
1576 *p++ = 't';
1577 if (flags & LM_FLAG_TRY_1CB)
1578 *p++ = 'T';
1579 if (flags & LM_FLAG_NOEXP)
1580 *p++ = 'e';
1581 if (flags & LM_FLAG_ANY)
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001582 *p++ = 'A';
Steven Whitehouse6802e342008-05-21 17:03:22 +01001583 if (flags & LM_FLAG_PRIORITY)
1584 *p++ = 'p';
1585 if (flags & GL_ASYNC)
1586 *p++ = 'a';
1587 if (flags & GL_EXACT)
1588 *p++ = 'E';
Steven Whitehouse6802e342008-05-21 17:03:22 +01001589 if (flags & GL_NOCACHE)
1590 *p++ = 'c';
1591 if (test_bit(HIF_HOLDER, &iflags))
1592 *p++ = 'H';
1593 if (test_bit(HIF_WAIT, &iflags))
1594 *p++ = 'W';
1595 if (test_bit(HIF_FIRST, &iflags))
1596 *p++ = 'F';
1597 *p = 0;
1598 return buf;
Robert Peterson04b933f2007-03-23 17:05:15 -05001599}
1600
David Teiglandb3b94fa2006-01-16 16:50:04 +00001601/**
1602 * dump_holder - print information about a glock holder
Steven Whitehouse6802e342008-05-21 17:03:22 +01001603 * @seq: the seq_file struct
David Teiglandb3b94fa2006-01-16 16:50:04 +00001604 * @gh: the glock holder
1605 *
1606 * Returns: 0 on success, -ENOBUFS when we run out of space
1607 */
1608
Steven Whitehouse6802e342008-05-21 17:03:22 +01001609static int dump_holder(struct seq_file *seq, const struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001610{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001611 struct task_struct *gh_owner = NULL;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001612 char flags_buf[32];
David Teiglandb3b94fa2006-01-16 16:50:04 +00001613
Steven Whitehouse6802e342008-05-21 17:03:22 +01001614 if (gh->gh_owner_pid)
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -08001615 gh_owner = pid_task(gh->gh_owner_pid, PIDTYPE_PID);
Joe Perchescc181522010-11-05 16:12:36 -07001616 gfs2_print_dbg(seq, " H: s:%s f:%s e:%d p:%ld [%s] %pS\n",
1617 state2str(gh->gh_state),
1618 hflags2str(flags_buf, gh->gh_flags, gh->gh_iflags),
1619 gh->gh_error,
1620 gh->gh_owner_pid ? (long)pid_nr(gh->gh_owner_pid) : -1,
1621 gh_owner ? gh_owner->comm : "(ended)",
1622 (void *)gh->gh_ip);
Robert Peterson7c52b162007-03-16 10:26:37 +00001623 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001624}
1625
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001626static const char *gflags2str(char *buf, const struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001627{
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001628 const unsigned long *gflags = &gl->gl_flags;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001629 char *p = buf;
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001630
Steven Whitehouse6802e342008-05-21 17:03:22 +01001631 if (test_bit(GLF_LOCK, gflags))
1632 *p++ = 'l';
Steven Whitehouse6802e342008-05-21 17:03:22 +01001633 if (test_bit(GLF_DEMOTE, gflags))
1634 *p++ = 'D';
1635 if (test_bit(GLF_PENDING_DEMOTE, gflags))
1636 *p++ = 'd';
1637 if (test_bit(GLF_DEMOTE_IN_PROGRESS, gflags))
1638 *p++ = 'p';
1639 if (test_bit(GLF_DIRTY, gflags))
1640 *p++ = 'y';
1641 if (test_bit(GLF_LFLUSH, gflags))
1642 *p++ = 'f';
1643 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, gflags))
1644 *p++ = 'i';
1645 if (test_bit(GLF_REPLY_PENDING, gflags))
1646 *p++ = 'r';
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001647 if (test_bit(GLF_INITIAL, gflags))
Steven Whitehoused8348de2009-02-05 10:12:38 +00001648 *p++ = 'I';
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001649 if (test_bit(GLF_FROZEN, gflags))
1650 *p++ = 'F';
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +01001651 if (test_bit(GLF_QUEUED, gflags))
1652 *p++ = 'q';
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001653 if (test_bit(GLF_LRU, gflags))
1654 *p++ = 'L';
1655 if (gl->gl_object)
1656 *p++ = 'o';
Steven Whitehousea2457692012-01-20 10:38:36 +00001657 if (test_bit(GLF_BLOCKING, gflags))
1658 *p++ = 'b';
Steven Whitehouse6802e342008-05-21 17:03:22 +01001659 *p = 0;
1660 return buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001661}
1662
1663/**
Steven Whitehouse6802e342008-05-21 17:03:22 +01001664 * __dump_glock - print information about a glock
1665 * @seq: The seq_file struct
David Teiglandb3b94fa2006-01-16 16:50:04 +00001666 * @gl: the glock
Steven Whitehouse6802e342008-05-21 17:03:22 +01001667 *
1668 * The file format is as follows:
1669 * One line per object, capital letters are used to indicate objects
1670 * G = glock, I = Inode, R = rgrp, H = holder. Glocks are not indented,
1671 * other objects are indented by a single space and follow the glock to
1672 * which they are related. Fields are indicated by lower case letters
1673 * followed by a colon and the field value, except for strings which are in
1674 * [] so that its possible to see if they are composed of spaces for
1675 * example. The field's are n = number (id of the object), f = flags,
1676 * t = type, s = state, r = refcount, e = error, p = pid.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001677 *
1678 * Returns: 0 on success, -ENOBUFS when we run out of space
1679 */
1680
Steven Whitehouse6802e342008-05-21 17:03:22 +01001681static int __dump_glock(struct seq_file *seq, const struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001682{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001683 const struct gfs2_glock_operations *glops = gl->gl_ops;
1684 unsigned long long dtime;
1685 const struct gfs2_holder *gh;
1686 char gflags_buf[32];
1687 int error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001688
Steven Whitehouse6802e342008-05-21 17:03:22 +01001689 dtime = jiffies - gl->gl_demote_time;
1690 dtime *= 1000000/HZ; /* demote time in uSec */
1691 if (!test_bit(GLF_DEMOTE, &gl->gl_flags))
1692 dtime = 0;
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001693 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 +01001694 state2str(gl->gl_state),
1695 gl->gl_name.ln_type,
1696 (unsigned long long)gl->gl_name.ln_number,
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001697 gflags2str(gflags_buf, gl),
Steven Whitehouse6802e342008-05-21 17:03:22 +01001698 state2str(gl->gl_target),
1699 state2str(gl->gl_demote_state), dtime,
Steven Whitehouse6802e342008-05-21 17:03:22 +01001700 atomic_read(&gl->gl_ail_count),
Steven Whitehousef42ab082011-04-14 16:50:31 +01001701 atomic_read(&gl->gl_revokes),
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001702 atomic_read(&gl->gl_ref), gl->gl_hold_time);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001703
David Teiglandb3b94fa2006-01-16 16:50:04 +00001704 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
Steven Whitehouse6802e342008-05-21 17:03:22 +01001705 error = dump_holder(seq, gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001706 if (error)
1707 goto out;
1708 }
Steven Whitehouse6802e342008-05-21 17:03:22 +01001709 if (gl->gl_state != LM_ST_UNLOCKED && glops->go_dump)
1710 error = glops->go_dump(seq, gl);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001711out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001712 return error;
1713}
1714
Steven Whitehousea2457692012-01-20 10:38:36 +00001715static int gfs2_glstats_seq_show(struct seq_file *seq, void *iter_ptr)
1716{
1717 struct gfs2_glock *gl = iter_ptr;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001718
Steven Whitehousea2457692012-01-20 10:38:36 +00001719 seq_printf(seq, "G: n:%u/%llx rtt:%lld/%lld rttb:%lld/%lld irt:%lld/%lld dcnt: %lld qcnt: %lld\n",
1720 gl->gl_name.ln_type,
1721 (unsigned long long)gl->gl_name.ln_number,
1722 (long long)gl->gl_stats.stats[GFS2_LKS_SRTT],
1723 (long long)gl->gl_stats.stats[GFS2_LKS_SRTTVAR],
1724 (long long)gl->gl_stats.stats[GFS2_LKS_SRTTB],
1725 (long long)gl->gl_stats.stats[GFS2_LKS_SRTTVARB],
1726 (long long)gl->gl_stats.stats[GFS2_LKS_SIRT],
1727 (long long)gl->gl_stats.stats[GFS2_LKS_SIRTVAR],
1728 (long long)gl->gl_stats.stats[GFS2_LKS_DCOUNT],
1729 (long long)gl->gl_stats.stats[GFS2_LKS_QCOUNT]);
1730 return 0;
1731}
David Teiglandb3b94fa2006-01-16 16:50:04 +00001732
Steven Whitehousea2457692012-01-20 10:38:36 +00001733static const char *gfs2_gltype[] = {
1734 "type",
1735 "reserved",
1736 "nondisk",
1737 "inode",
1738 "rgrp",
1739 "meta",
1740 "iopen",
1741 "flock",
1742 "plock",
1743 "quota",
1744 "journal",
1745};
1746
1747static const char *gfs2_stype[] = {
1748 [GFS2_LKS_SRTT] = "srtt",
1749 [GFS2_LKS_SRTTVAR] = "srttvar",
1750 [GFS2_LKS_SRTTB] = "srttb",
1751 [GFS2_LKS_SRTTVARB] = "srttvarb",
1752 [GFS2_LKS_SIRT] = "sirt",
1753 [GFS2_LKS_SIRTVAR] = "sirtvar",
1754 [GFS2_LKS_DCOUNT] = "dlm",
1755 [GFS2_LKS_QCOUNT] = "queue",
1756};
1757
1758#define GFS2_NR_SBSTATS (ARRAY_SIZE(gfs2_gltype) * ARRAY_SIZE(gfs2_stype))
1759
1760static int gfs2_sbstats_seq_show(struct seq_file *seq, void *iter_ptr)
1761{
1762 struct gfs2_glock_iter *gi = seq->private;
1763 struct gfs2_sbd *sdp = gi->sdp;
1764 unsigned index = gi->hash >> 3;
1765 unsigned subindex = gi->hash & 0x07;
1766 s64 value;
1767 int i;
1768
1769 if (index == 0 && subindex != 0)
1770 return 0;
1771
1772 seq_printf(seq, "%-10s %8s:", gfs2_gltype[index],
1773 (index == 0) ? "cpu": gfs2_stype[subindex]);
1774
1775 for_each_possible_cpu(i) {
1776 const struct gfs2_pcpu_lkstats *lkstats = per_cpu_ptr(sdp->sd_lkstats, i);
1777 if (index == 0) {
1778 value = i;
1779 } else {
1780 value = lkstats->lkstats[index - 1].stats[subindex];
1781 }
1782 seq_printf(seq, " %15lld", (long long)value);
1783 }
1784 seq_putc(seq, '\n');
1785 return 0;
1786}
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001787
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001788int __init gfs2_glock_init(void)
1789{
1790 unsigned i;
1791 for(i = 0; i < GFS2_GL_HASH_SIZE; i++) {
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001792 INIT_HLIST_BL_HEAD(&gl_hash_table[i]);
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001793 }
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001794
Steven Whitehoused2115772010-11-03 19:58:53 +00001795 glock_workqueue = alloc_workqueue("glock_workqueue", WQ_MEM_RECLAIM |
Tejun Heo58a69cb2011-02-16 09:25:31 +01001796 WQ_HIGHPRI | WQ_FREEZABLE, 0);
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001797 if (IS_ERR(glock_workqueue))
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001798 return PTR_ERR(glock_workqueue);
Steven Whitehoused2115772010-11-03 19:58:53 +00001799 gfs2_delete_workqueue = alloc_workqueue("delete_workqueue",
Tejun Heo58a69cb2011-02-16 09:25:31 +01001800 WQ_MEM_RECLAIM | WQ_FREEZABLE,
Steven Whitehoused2115772010-11-03 19:58:53 +00001801 0);
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05001802 if (IS_ERR(gfs2_delete_workqueue)) {
1803 destroy_workqueue(glock_workqueue);
1804 return PTR_ERR(gfs2_delete_workqueue);
1805 }
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001806
1807 register_shrinker(&glock_shrinker);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001808
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001809 return 0;
1810}
1811
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001812void gfs2_glock_exit(void)
1813{
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001814 unregister_shrinker(&glock_shrinker);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001815 destroy_workqueue(glock_workqueue);
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05001816 destroy_workqueue(gfs2_delete_workqueue);
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001817}
1818
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001819static inline struct gfs2_glock *glock_hash_chain(unsigned hash)
1820{
1821 return hlist_bl_entry(hlist_bl_first_rcu(&gl_hash_table[hash]),
1822 struct gfs2_glock, gl_list);
1823}
1824
1825static inline struct gfs2_glock *glock_hash_next(struct gfs2_glock *gl)
1826{
Steven Whitehouse7e32d022011-03-15 08:32:14 +00001827 return hlist_bl_entry(rcu_dereference(gl->gl_list.next),
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001828 struct gfs2_glock, gl_list);
1829}
1830
Steven Whitehouse6802e342008-05-21 17:03:22 +01001831static int gfs2_glock_iter_next(struct gfs2_glock_iter *gi)
Robert Peterson7c52b162007-03-16 10:26:37 +00001832{
Steven Whitehouse7b08fc62007-07-24 13:53:36 +01001833 struct gfs2_glock *gl;
1834
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001835 do {
1836 gl = gi->gl;
1837 if (gl) {
1838 gi->gl = glock_hash_next(gl);
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01001839 gi->nhash++;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001840 } else {
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01001841 if (gi->hash >= GFS2_GL_HASH_SIZE) {
1842 rcu_read_unlock();
1843 return 1;
1844 }
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001845 gi->gl = glock_hash_chain(gi->hash);
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01001846 gi->nhash = 0;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001847 }
1848 while (gi->gl == NULL) {
1849 gi->hash++;
1850 if (gi->hash >= GFS2_GL_HASH_SIZE) {
1851 rcu_read_unlock();
1852 return 1;
1853 }
1854 gi->gl = glock_hash_chain(gi->hash);
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01001855 gi->nhash = 0;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001856 }
1857 /* Skip entries for other sb and dead entries */
1858 } while (gi->sdp != gi->gl->gl_sbd || atomic_read(&gi->gl->gl_ref) == 0);
Abhijith Dasa947e032007-08-21 09:57:29 -05001859
Robert Peterson7c52b162007-03-16 10:26:37 +00001860 return 0;
1861}
1862
Steven Whitehouse6802e342008-05-21 17:03:22 +01001863static void *gfs2_glock_seq_start(struct seq_file *seq, loff_t *pos)
Robert Peterson7c52b162007-03-16 10:26:37 +00001864{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001865 struct gfs2_glock_iter *gi = seq->private;
Robert Peterson7c52b162007-03-16 10:26:37 +00001866 loff_t n = *pos;
1867
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01001868 if (gi->last_pos <= *pos)
1869 n = gi->nhash + (*pos - gi->last_pos);
1870 else
1871 gi->hash = 0;
1872
1873 gi->nhash = 0;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001874 rcu_read_lock();
Robert Peterson7c52b162007-03-16 10:26:37 +00001875
Steven Whitehouse6802e342008-05-21 17:03:22 +01001876 do {
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001877 if (gfs2_glock_iter_next(gi))
Robert Peterson7c52b162007-03-16 10:26:37 +00001878 return NULL;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001879 } while (n--);
Robert Peterson7c52b162007-03-16 10:26:37 +00001880
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01001881 gi->last_pos = *pos;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001882 return gi->gl;
Robert Peterson7c52b162007-03-16 10:26:37 +00001883}
1884
Steven Whitehouse6802e342008-05-21 17:03:22 +01001885static void *gfs2_glock_seq_next(struct seq_file *seq, void *iter_ptr,
Robert Peterson7c52b162007-03-16 10:26:37 +00001886 loff_t *pos)
1887{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001888 struct gfs2_glock_iter *gi = seq->private;
Robert Peterson7c52b162007-03-16 10:26:37 +00001889
1890 (*pos)++;
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01001891 gi->last_pos = *pos;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001892 if (gfs2_glock_iter_next(gi))
Robert Peterson7c52b162007-03-16 10:26:37 +00001893 return NULL;
Robert Peterson7c52b162007-03-16 10:26:37 +00001894
Steven Whitehouse6802e342008-05-21 17:03:22 +01001895 return gi->gl;
Robert Peterson7c52b162007-03-16 10:26:37 +00001896}
1897
Steven Whitehouse6802e342008-05-21 17:03:22 +01001898static void gfs2_glock_seq_stop(struct seq_file *seq, void *iter_ptr)
Robert Peterson7c52b162007-03-16 10:26:37 +00001899{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001900 struct gfs2_glock_iter *gi = seq->private;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001901
1902 if (gi->gl)
1903 rcu_read_unlock();
1904 gi->gl = NULL;
Robert Peterson7c52b162007-03-16 10:26:37 +00001905}
1906
Steven Whitehouse6802e342008-05-21 17:03:22 +01001907static int gfs2_glock_seq_show(struct seq_file *seq, void *iter_ptr)
Robert Peterson7c52b162007-03-16 10:26:37 +00001908{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001909 return dump_glock(seq, iter_ptr);
Robert Peterson7c52b162007-03-16 10:26:37 +00001910}
1911
Steven Whitehousea2457692012-01-20 10:38:36 +00001912static void *gfs2_sbstats_seq_start(struct seq_file *seq, loff_t *pos)
1913{
1914 struct gfs2_glock_iter *gi = seq->private;
1915
1916 gi->hash = *pos;
1917 if (*pos >= GFS2_NR_SBSTATS)
1918 return NULL;
1919 preempt_disable();
1920 return SEQ_START_TOKEN;
1921}
1922
1923static void *gfs2_sbstats_seq_next(struct seq_file *seq, void *iter_ptr,
1924 loff_t *pos)
1925{
1926 struct gfs2_glock_iter *gi = seq->private;
1927 (*pos)++;
1928 gi->hash++;
1929 if (gi->hash >= GFS2_NR_SBSTATS) {
1930 preempt_enable();
1931 return NULL;
1932 }
1933 return SEQ_START_TOKEN;
1934}
1935
1936static void gfs2_sbstats_seq_stop(struct seq_file *seq, void *iter_ptr)
1937{
1938 preempt_enable();
1939}
1940
Denis Cheng4ef29002007-07-31 18:31:11 +08001941static const struct seq_operations gfs2_glock_seq_ops = {
Robert Peterson7c52b162007-03-16 10:26:37 +00001942 .start = gfs2_glock_seq_start,
1943 .next = gfs2_glock_seq_next,
1944 .stop = gfs2_glock_seq_stop,
1945 .show = gfs2_glock_seq_show,
1946};
1947
Steven Whitehousea2457692012-01-20 10:38:36 +00001948static const struct seq_operations gfs2_glstats_seq_ops = {
1949 .start = gfs2_glock_seq_start,
1950 .next = gfs2_glock_seq_next,
1951 .stop = gfs2_glock_seq_stop,
1952 .show = gfs2_glstats_seq_show,
1953};
1954
1955static const struct seq_operations gfs2_sbstats_seq_ops = {
1956 .start = gfs2_sbstats_seq_start,
1957 .next = gfs2_sbstats_seq_next,
1958 .stop = gfs2_sbstats_seq_stop,
1959 .show = gfs2_sbstats_seq_show,
1960};
1961
Steven Whitehouse0fe2f1e2012-06-11 13:49:47 +01001962#define GFS2_SEQ_GOODSIZE min(PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER, 65536UL)
1963
Steven Whitehousea2457692012-01-20 10:38:36 +00001964static int gfs2_glocks_open(struct inode *inode, struct file *file)
Robert Peterson7c52b162007-03-16 10:26:37 +00001965{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001966 int ret = seq_open_private(file, &gfs2_glock_seq_ops,
1967 sizeof(struct gfs2_glock_iter));
1968 if (ret == 0) {
1969 struct seq_file *seq = file->private_data;
1970 struct gfs2_glock_iter *gi = seq->private;
1971 gi->sdp = inode->i_private;
Steven Whitehouse0fe2f1e2012-06-11 13:49:47 +01001972 seq->buf = kmalloc(GFS2_SEQ_GOODSIZE, GFP_KERNEL | __GFP_NOWARN);
Steven Whitehousedf5d2f52012-06-07 13:30:16 +01001973 if (seq->buf)
Steven Whitehouse0fe2f1e2012-06-11 13:49:47 +01001974 seq->size = GFS2_SEQ_GOODSIZE;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001975 }
1976 return ret;
Robert Peterson7c52b162007-03-16 10:26:37 +00001977}
1978
Steven Whitehousea2457692012-01-20 10:38:36 +00001979static int gfs2_glstats_open(struct inode *inode, struct file *file)
1980{
1981 int ret = seq_open_private(file, &gfs2_glstats_seq_ops,
1982 sizeof(struct gfs2_glock_iter));
1983 if (ret == 0) {
1984 struct seq_file *seq = file->private_data;
1985 struct gfs2_glock_iter *gi = seq->private;
1986 gi->sdp = inode->i_private;
Steven Whitehouse0fe2f1e2012-06-11 13:49:47 +01001987 seq->buf = kmalloc(GFS2_SEQ_GOODSIZE, GFP_KERNEL | __GFP_NOWARN);
Steven Whitehousedf5d2f52012-06-07 13:30:16 +01001988 if (seq->buf)
Steven Whitehouse0fe2f1e2012-06-11 13:49:47 +01001989 seq->size = GFS2_SEQ_GOODSIZE;
Steven Whitehousea2457692012-01-20 10:38:36 +00001990 }
1991 return ret;
1992}
1993
1994static int gfs2_sbstats_open(struct inode *inode, struct file *file)
1995{
1996 int ret = seq_open_private(file, &gfs2_sbstats_seq_ops,
1997 sizeof(struct gfs2_glock_iter));
1998 if (ret == 0) {
1999 struct seq_file *seq = file->private_data;
2000 struct gfs2_glock_iter *gi = seq->private;
2001 gi->sdp = inode->i_private;
2002 }
2003 return ret;
2004}
2005
2006static const struct file_operations gfs2_glocks_fops = {
Robert Peterson7c52b162007-03-16 10:26:37 +00002007 .owner = THIS_MODULE,
Steven Whitehousea2457692012-01-20 10:38:36 +00002008 .open = gfs2_glocks_open,
2009 .read = seq_read,
2010 .llseek = seq_lseek,
2011 .release = seq_release_private,
2012};
2013
2014static const struct file_operations gfs2_glstats_fops = {
2015 .owner = THIS_MODULE,
2016 .open = gfs2_glstats_open,
2017 .read = seq_read,
2018 .llseek = seq_lseek,
2019 .release = seq_release_private,
2020};
2021
2022static const struct file_operations gfs2_sbstats_fops = {
2023 .owner = THIS_MODULE,
2024 .open = gfs2_sbstats_open,
Robert Peterson7c52b162007-03-16 10:26:37 +00002025 .read = seq_read,
2026 .llseek = seq_lseek,
Steven Whitehouse6802e342008-05-21 17:03:22 +01002027 .release = seq_release_private,
Robert Peterson7c52b162007-03-16 10:26:37 +00002028};
2029
2030int gfs2_create_debugfs_file(struct gfs2_sbd *sdp)
2031{
Robert Peterson5f882092007-04-18 11:41:11 -05002032 sdp->debugfs_dir = debugfs_create_dir(sdp->sd_table_name, gfs2_root);
2033 if (!sdp->debugfs_dir)
2034 return -ENOMEM;
2035 sdp->debugfs_dentry_glocks = debugfs_create_file("glocks",
2036 S_IFREG | S_IRUGO,
2037 sdp->debugfs_dir, sdp,
Steven Whitehousea2457692012-01-20 10:38:36 +00002038 &gfs2_glocks_fops);
Robert Peterson5f882092007-04-18 11:41:11 -05002039 if (!sdp->debugfs_dentry_glocks)
Steven Whitehousea2457692012-01-20 10:38:36 +00002040 goto fail;
2041
2042 sdp->debugfs_dentry_glstats = debugfs_create_file("glstats",
2043 S_IFREG | S_IRUGO,
2044 sdp->debugfs_dir, sdp,
2045 &gfs2_glstats_fops);
2046 if (!sdp->debugfs_dentry_glstats)
2047 goto fail;
2048
2049 sdp->debugfs_dentry_sbstats = debugfs_create_file("sbstats",
2050 S_IFREG | S_IRUGO,
2051 sdp->debugfs_dir, sdp,
2052 &gfs2_sbstats_fops);
2053 if (!sdp->debugfs_dentry_sbstats)
2054 goto fail;
Robert Peterson7c52b162007-03-16 10:26:37 +00002055
2056 return 0;
Steven Whitehousea2457692012-01-20 10:38:36 +00002057fail:
2058 gfs2_delete_debugfs_file(sdp);
2059 return -ENOMEM;
Robert Peterson7c52b162007-03-16 10:26:37 +00002060}
2061
2062void gfs2_delete_debugfs_file(struct gfs2_sbd *sdp)
2063{
Steven Whitehousea2457692012-01-20 10:38:36 +00002064 if (sdp->debugfs_dir) {
Robert Peterson5f882092007-04-18 11:41:11 -05002065 if (sdp->debugfs_dentry_glocks) {
2066 debugfs_remove(sdp->debugfs_dentry_glocks);
2067 sdp->debugfs_dentry_glocks = NULL;
2068 }
Steven Whitehousea2457692012-01-20 10:38:36 +00002069 if (sdp->debugfs_dentry_glstats) {
2070 debugfs_remove(sdp->debugfs_dentry_glstats);
2071 sdp->debugfs_dentry_glstats = NULL;
2072 }
2073 if (sdp->debugfs_dentry_sbstats) {
2074 debugfs_remove(sdp->debugfs_dentry_sbstats);
2075 sdp->debugfs_dentry_sbstats = NULL;
2076 }
Robert Peterson5f882092007-04-18 11:41:11 -05002077 debugfs_remove(sdp->debugfs_dir);
2078 sdp->debugfs_dir = NULL;
2079 }
Robert Peterson7c52b162007-03-16 10:26:37 +00002080}
2081
2082int gfs2_register_debugfs(void)
2083{
2084 gfs2_root = debugfs_create_dir("gfs2", NULL);
2085 return gfs2_root ? 0 : -ENOMEM;
2086}
2087
2088void gfs2_unregister_debugfs(void)
2089{
2090 debugfs_remove(gfs2_root);
Robert Peterson5f882092007-04-18 11:41:11 -05002091 gfs2_root = NULL;
Robert Peterson7c52b162007-03-16 10:26:37 +00002092}