blob: 3ad8fd36f8dae81431f7e8b7d31e4894028f50c3 [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 void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -050059
Robert Peterson7c52b162007-03-16 10:26:37 +000060static struct dentry *gfs2_root;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -050061static struct workqueue_struct *glock_workqueue;
Benjamin Marzinskib94a1702009-07-23 18:52:34 -050062struct workqueue_struct *gfs2_delete_workqueue;
Steven Whitehouse97cc1022008-11-20 13:39:47 +000063static LIST_HEAD(lru_list);
64static atomic_t lru_count = ATOMIC_INIT(0);
Julia Lawalleb8374e2008-12-25 15:35:27 +010065static DEFINE_SPINLOCK(lru_lock);
Adrian Bunk08bc2db2006-04-28 10:59:12 -040066
Steven Whitehouseb6397892006-09-12 10:10:01 -040067#define GFS2_GL_HASH_SHIFT 15
Steven Whitehouse087efdd2006-09-09 16:59:11 -040068#define GFS2_GL_HASH_SIZE (1 << GFS2_GL_HASH_SHIFT)
69#define GFS2_GL_HASH_MASK (GFS2_GL_HASH_SIZE - 1)
70
Steven Whitehousebc015cb2011-01-19 09:30:01 +000071static struct hlist_bl_head gl_hash_table[GFS2_GL_HASH_SIZE];
Robert Peterson04b933f2007-03-23 17:05:15 -050072static struct dentry *gfs2_root;
Steven Whitehouse087efdd2006-09-09 16:59:11 -040073
David Teiglandb3b94fa2006-01-16 16:50:04 +000074/**
David Teiglandb3b94fa2006-01-16 16:50:04 +000075 * gl_hash() - Turn glock number into hash bucket number
76 * @lock: The glock number
77 *
78 * Returns: The number of the corresponding hash bucket
79 */
80
Steven Whitehouseb8547852006-09-07 13:12:27 -040081static unsigned int gl_hash(const struct gfs2_sbd *sdp,
82 const struct lm_lockname *name)
David Teiglandb3b94fa2006-01-16 16:50:04 +000083{
84 unsigned int h;
85
Steven Whitehousecd915492006-09-04 12:49:07 -040086 h = jhash(&name->ln_number, sizeof(u64), 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +000087 h = jhash(&name->ln_type, sizeof(unsigned int), h);
Steven Whitehouseb8547852006-09-07 13:12:27 -040088 h = jhash(&sdp, sizeof(struct gfs2_sbd *), h);
David Teiglandb3b94fa2006-01-16 16:50:04 +000089 h &= GFS2_GL_HASH_MASK;
90
91 return h;
92}
93
Steven Whitehousebc015cb2011-01-19 09:30:01 +000094static inline void spin_lock_bucket(unsigned int hash)
David Teiglandb3b94fa2006-01-16 16:50:04 +000095{
Christoph Hellwig1879fd62011-04-25 14:01:36 -040096 hlist_bl_lock(&gl_hash_table[hash]);
Steven Whitehousebc015cb2011-01-19 09:30:01 +000097}
David Teiglandb3b94fa2006-01-16 16:50:04 +000098
Steven Whitehousebc015cb2011-01-19 09:30:01 +000099static inline void spin_unlock_bucket(unsigned int hash)
100{
Christoph Hellwig1879fd62011-04-25 14:01:36 -0400101 hlist_bl_unlock(&gl_hash_table[hash]);
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000102}
103
Steven Whitehousefc0e38d2011-03-09 10:58:04 +0000104static void gfs2_glock_dealloc(struct rcu_head *rcu)
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000105{
106 struct gfs2_glock *gl = container_of(rcu, struct gfs2_glock, gl_rcu);
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000107
David Teiglanddba2d702012-11-14 13:46:53 -0500108 if (gl->gl_ops->go_flags & GLOF_ASPACE) {
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000109 kmem_cache_free(gfs2_glock_aspace_cachep, gl);
David Teiglanddba2d702012-11-14 13:46:53 -0500110 } else {
David Teigland4e2f8842012-11-14 13:47:37 -0500111 kfree(gl->gl_lksb.sb_lvbptr);
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000112 kmem_cache_free(gfs2_glock_cachep, gl);
David Teiglanddba2d702012-11-14 13:46:53 -0500113 }
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);
Bob Peterson06dfc302012-10-24 14:41:05 -0400540 if (glops->go_sync)
541 glops->go_sync(gl);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100542 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);
David Teiglanddba2d702012-11-14 13:46:53 -0500550 if (ret) {
551 printk(KERN_ERR "GFS2: lm_lock ret %d\n", ret);
552 GLOCK_BUG_ON(gl, 1);
553 }
Steven Whitehouse921169c2010-11-29 12:50:38 +0000554 } else { /* lock_nolock */
555 finish_xmote(gl, target);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100556 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
557 gfs2_glock_put(gl);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100558 }
Steven Whitehouse921169c2010-11-29 12:50:38 +0000559
Steven Whitehouse6802e342008-05-21 17:03:22 +0100560 spin_lock(&gl->gl_spin);
561}
562
563/**
564 * find_first_holder - find the first "holder" gh
565 * @gl: the glock
566 */
567
568static inline struct gfs2_holder *find_first_holder(const struct gfs2_glock *gl)
569{
570 struct gfs2_holder *gh;
571
572 if (!list_empty(&gl->gl_holders)) {
573 gh = list_entry(gl->gl_holders.next, struct gfs2_holder, gh_list);
574 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
575 return gh;
576 }
577 return NULL;
578}
579
580/**
581 * run_queue - do all outstanding tasks related to a glock
582 * @gl: The glock in question
583 * @nonblock: True if we must not block in run_queue
584 *
585 */
586
587static void run_queue(struct gfs2_glock *gl, const int nonblock)
Harvey Harrison55ba4742008-10-24 11:31:12 -0700588__releases(&gl->gl_spin)
589__acquires(&gl->gl_spin)
Steven Whitehouse6802e342008-05-21 17:03:22 +0100590{
591 struct gfs2_holder *gh = NULL;
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000592 int ret;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100593
594 if (test_and_set_bit(GLF_LOCK, &gl->gl_flags))
595 return;
596
597 GLOCK_BUG_ON(gl, test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags));
598
599 if (test_bit(GLF_DEMOTE, &gl->gl_flags) &&
600 gl->gl_demote_state != gl->gl_state) {
601 if (find_first_holder(gl))
Steven Whitehoused8348de2009-02-05 10:12:38 +0000602 goto out_unlock;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100603 if (nonblock)
604 goto out_sched;
605 set_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags);
Steven Whitehouse265d529c2008-07-07 10:02:36 +0100606 GLOCK_BUG_ON(gl, gl->gl_demote_state == LM_ST_EXCLUSIVE);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100607 gl->gl_target = gl->gl_demote_state;
608 } else {
609 if (test_bit(GLF_DEMOTE, &gl->gl_flags))
610 gfs2_demote_wake(gl);
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000611 ret = do_promote(gl);
612 if (ret == 0)
Steven Whitehoused8348de2009-02-05 10:12:38 +0000613 goto out_unlock;
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000614 if (ret == 2)
Steven Whitehousea228df62009-04-07 14:01:34 +0100615 goto out;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100616 gh = find_first_waiter(gl);
617 gl->gl_target = gh->gh_state;
618 if (!(gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)))
619 do_error(gl, 0); /* Fail queued try locks */
620 }
621 do_xmote(gl, gh, gl->gl_target);
Steven Whitehousea228df62009-04-07 14:01:34 +0100622out:
Steven Whitehouse6802e342008-05-21 17:03:22 +0100623 return;
624
625out_sched:
Steven Whitehouse7e71c552009-09-22 10:56:16 +0100626 clear_bit(GLF_LOCK, &gl->gl_flags);
627 smp_mb__after_clear_bit();
Steven Whitehouse6802e342008-05-21 17:03:22 +0100628 gfs2_glock_hold(gl);
629 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
Benjamin Marzinski8ff22a62009-07-10 18:04:24 -0500630 gfs2_glock_put_nolock(gl);
Steven Whitehouse7e71c552009-09-22 10:56:16 +0100631 return;
632
Steven Whitehoused8348de2009-02-05 10:12:38 +0000633out_unlock:
Steven Whitehouse6802e342008-05-21 17:03:22 +0100634 clear_bit(GLF_LOCK, &gl->gl_flags);
Steven Whitehouse7e71c552009-09-22 10:56:16 +0100635 smp_mb__after_clear_bit();
636 return;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100637}
638
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500639static void delete_work_func(struct work_struct *work)
640{
641 struct gfs2_glock *gl = container_of(work, struct gfs2_glock, gl_delete);
642 struct gfs2_sbd *sdp = gl->gl_sbd;
Steven Whitehouse044b9412010-11-03 20:01:07 +0000643 struct gfs2_inode *ip;
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500644 struct inode *inode;
Steven Whitehouse044b9412010-11-03 20:01:07 +0000645 u64 no_addr = gl->gl_name.ln_number;
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500646
Steven Whitehouse044b9412010-11-03 20:01:07 +0000647 ip = gl->gl_object;
648 /* Note: Unsafe to dereference ip as we don't hold right refs/locks */
649
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500650 if (ip)
Steven Whitehouse4667a0e2011-04-18 14:18:09 +0100651 inode = gfs2_ilookup(sdp->sd_vfs, no_addr, 1);
Steven Whitehouse044b9412010-11-03 20:01:07 +0000652 else
653 inode = gfs2_lookup_by_inum(sdp, no_addr, NULL, GFS2_BLKST_UNLINKED);
654 if (inode && !IS_ERR(inode)) {
655 d_prune_aliases(inode);
656 iput(inode);
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500657 }
658 gfs2_glock_put(gl);
659}
660
Steven Whitehouse6802e342008-05-21 17:03:22 +0100661static void glock_work_func(struct work_struct *work)
662{
663 unsigned long delay = 0;
664 struct gfs2_glock *gl = container_of(work, struct gfs2_glock, gl_work.work);
Steven Whitehouse26bb7502009-11-27 10:31:11 +0000665 int drop_ref = 0;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100666
Steven Whitehouse26bb7502009-11-27 10:31:11 +0000667 if (test_and_clear_bit(GLF_REPLY_PENDING, &gl->gl_flags)) {
Steven Whitehouse6802e342008-05-21 17:03:22 +0100668 finish_xmote(gl, gl->gl_reply);
Steven Whitehouse26bb7502009-11-27 10:31:11 +0000669 drop_ref = 1;
670 }
Steven Whitehouse6802e342008-05-21 17:03:22 +0100671 spin_lock(&gl->gl_spin);
Bob Petersonf90e5b52011-05-24 10:44:42 -0400672 if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
Steven Whitehouse265d529c2008-07-07 10:02:36 +0100673 gl->gl_state != LM_ST_UNLOCKED &&
674 gl->gl_demote_state != LM_ST_EXCLUSIVE) {
Steven Whitehouse6802e342008-05-21 17:03:22 +0100675 unsigned long holdtime, now = jiffies;
Bob Petersonf90e5b52011-05-24 10:44:42 -0400676
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400677 holdtime = gl->gl_tchange + gl->gl_hold_time;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100678 if (time_before(now, holdtime))
679 delay = holdtime - now;
Bob Petersonf90e5b52011-05-24 10:44:42 -0400680
681 if (!delay) {
682 clear_bit(GLF_PENDING_DEMOTE, &gl->gl_flags);
683 set_bit(GLF_DEMOTE, &gl->gl_flags);
684 }
Steven Whitehouse6802e342008-05-21 17:03:22 +0100685 }
686 run_queue(gl, 0);
687 spin_unlock(&gl->gl_spin);
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400688 if (!delay)
Steven Whitehouse6802e342008-05-21 17:03:22 +0100689 gfs2_glock_put(gl);
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400690 else {
691 if (gl->gl_name.ln_type != LM_TYPE_INODE)
692 delay = 0;
693 if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
694 gfs2_glock_put(gl);
695 }
Steven Whitehouse26bb7502009-11-27 10:31:11 +0000696 if (drop_ref)
697 gfs2_glock_put(gl);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100698}
699
David Teiglandb3b94fa2006-01-16 16:50:04 +0000700/**
701 * gfs2_glock_get() - Get a glock, or create one if one doesn't exist
702 * @sdp: The GFS2 superblock
703 * @number: the lock number
704 * @glops: The glock_operations to use
705 * @create: If 0, don't create the glock if it doesn't exist
706 * @glp: the glock is returned here
707 *
708 * This does not lock a glock, just finds/creates structures for one.
709 *
710 * Returns: errno
711 */
712
Steven Whitehousecd915492006-09-04 12:49:07 -0400713int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number,
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400714 const struct gfs2_glock_operations *glops, int create,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000715 struct gfs2_glock **glp)
716{
Steven Whitehouse009d8512009-12-08 12:12:13 +0000717 struct super_block *s = sdp->sd_vfs;
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400718 struct lm_lockname name = { .ln_number = number, .ln_type = glops->go_type };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000719 struct gfs2_glock *gl, *tmp;
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400720 unsigned int hash = gl_hash(sdp, &name);
Steven Whitehouse009d8512009-12-08 12:12:13 +0000721 struct address_space *mapping;
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000722 struct kmem_cache *cachep;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000723
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000724 rcu_read_lock();
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400725 gl = search_bucket(hash, sdp, &name);
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000726 rcu_read_unlock();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000727
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000728 *glp = gl;
729 if (gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000730 return 0;
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000731 if (!create)
732 return -ENOENT;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000733
Steven Whitehouse009d8512009-12-08 12:12:13 +0000734 if (glops->go_flags & GLOF_ASPACE)
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000735 cachep = gfs2_glock_aspace_cachep;
Steven Whitehouse009d8512009-12-08 12:12:13 +0000736 else
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000737 cachep = gfs2_glock_cachep;
738 gl = kmem_cache_alloc(cachep, GFP_KERNEL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000739 if (!gl)
740 return -ENOMEM;
741
David Teiglanddba2d702012-11-14 13:46:53 -0500742 memset(&gl->gl_lksb, 0, sizeof(struct dlm_lksb));
David Teiglanddba2d702012-11-14 13:46:53 -0500743
744 if (glops->go_flags & GLOF_LVB) {
David Teigland4e2f8842012-11-14 13:47:37 -0500745 gl->gl_lksb.sb_lvbptr = kzalloc(GFS2_MIN_LVB_SIZE, GFP_KERNEL);
746 if (!gl->gl_lksb.sb_lvbptr) {
David Teiglanddba2d702012-11-14 13:46:53 -0500747 kmem_cache_free(cachep, gl);
748 return -ENOMEM;
749 }
David Teiglanddba2d702012-11-14 13:46:53 -0500750 }
751
Steven Whitehouse8f052282010-01-29 15:21:27 +0000752 atomic_inc(&sdp->sd_glock_disposal);
Steven Whitehousea2457692012-01-20 10:38:36 +0000753 gl->gl_sbd = sdp;
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400754 gl->gl_flags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000755 gl->gl_name = name;
Steven Whitehouse16feb9f2006-09-13 10:43:37 -0400756 atomic_set(&gl->gl_ref, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000757 gl->gl_state = LM_ST_UNLOCKED;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100758 gl->gl_target = LM_ST_UNLOCKED;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500759 gl->gl_demote_state = LM_ST_EXCLUSIVE;
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400760 gl->gl_hash = hash;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000761 gl->gl_ops = glops;
Steven Whitehousea2457692012-01-20 10:38:36 +0000762 gl->gl_dstamp = ktime_set(0, 0);
763 preempt_disable();
764 /* We use the global stats to estimate the initial per-glock stats */
765 gl->gl_stats = this_cpu_ptr(sdp->sd_lkstats)->lkstats[glops->go_type];
766 preempt_enable();
767 gl->gl_stats.stats[GFS2_LKS_DCOUNT] = 0;
768 gl->gl_stats.stats[GFS2_LKS_QCOUNT] = 0;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500769 gl->gl_tchange = jiffies;
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400770 gl->gl_object = NULL;
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400771 gl->gl_hold_time = GL_GLOCK_DFT_HOLD;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500772 INIT_DELAYED_WORK(&gl->gl_work, glock_work_func);
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500773 INIT_WORK(&gl->gl_delete, delete_work_func);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000774
Steven Whitehouse009d8512009-12-08 12:12:13 +0000775 mapping = gfs2_glock2aspace(gl);
776 if (mapping) {
777 mapping->a_ops = &gfs2_meta_aops;
778 mapping->host = s->s_bdev->bd_inode;
779 mapping->flags = 0;
780 mapping_set_gfp_mask(mapping, GFP_NOFS);
Rafael Aquini252aa6f2012-12-11 16:02:35 -0800781 mapping->private_data = NULL;
Steven Whitehouse009d8512009-12-08 12:12:13 +0000782 mapping->backing_dev_info = s->s_bdi;
783 mapping->writeback_index = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000784 }
785
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000786 spin_lock_bucket(hash);
Steven Whitehouse37b2fa62006-09-08 13:35:56 -0400787 tmp = search_bucket(hash, sdp, &name);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000788 if (tmp) {
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000789 spin_unlock_bucket(hash);
David Teigland4e2f8842012-11-14 13:47:37 -0500790 kfree(gl->gl_lksb.sb_lvbptr);
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000791 kmem_cache_free(cachep, gl);
Steven Whitehousefc0e38d2011-03-09 10:58:04 +0000792 atomic_dec(&sdp->sd_glock_disposal);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000793 gl = tmp;
794 } else {
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000795 hlist_bl_add_head_rcu(&gl->gl_list, &gl_hash_table[hash]);
796 spin_unlock_bucket(hash);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000797 }
798
799 *glp = gl;
800
801 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000802}
803
804/**
805 * gfs2_holder_init - initialize a struct gfs2_holder in the default way
806 * @gl: the glock
807 * @state: the state we're requesting
808 * @flags: the modifier flags
809 * @gh: the holder structure
810 *
811 */
812
Steven Whitehouse190562b2006-04-20 16:57:23 -0400813void gfs2_holder_init(struct gfs2_glock *gl, unsigned int state, unsigned flags,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000814 struct gfs2_holder *gh)
815{
816 INIT_LIST_HEAD(&gh->gh_list);
817 gh->gh_gl = gl;
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500818 gh->gh_ip = (unsigned long)__builtin_return_address(0);
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -0800819 gh->gh_owner_pid = get_pid(task_pid(current));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000820 gh->gh_state = state;
821 gh->gh_flags = flags;
822 gh->gh_error = 0;
823 gh->gh_iflags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000824 gfs2_glock_hold(gl);
825}
826
827/**
828 * gfs2_holder_reinit - reinitialize a struct gfs2_holder so we can requeue it
829 * @state: the state we're requesting
830 * @flags: the modifier flags
831 * @gh: the holder structure
832 *
833 * Don't mess with the glock.
834 *
835 */
836
Steven Whitehouse190562b2006-04-20 16:57:23 -0400837void gfs2_holder_reinit(unsigned int state, unsigned flags, struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000838{
839 gh->gh_state = state;
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400840 gh->gh_flags = flags;
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000841 gh->gh_iflags = 0;
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500842 gh->gh_ip = (unsigned long)__builtin_return_address(0);
Bob Peterson1a0eae82010-04-14 11:58:16 -0400843 if (gh->gh_owner_pid)
844 put_pid(gh->gh_owner_pid);
845 gh->gh_owner_pid = get_pid(task_pid(current));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000846}
847
848/**
849 * gfs2_holder_uninit - uninitialize a holder structure (drop glock reference)
850 * @gh: the holder structure
851 *
852 */
853
854void gfs2_holder_uninit(struct gfs2_holder *gh)
855{
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -0800856 put_pid(gh->gh_owner_pid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000857 gfs2_glock_put(gh->gh_gl);
858 gh->gh_gl = NULL;
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500859 gh->gh_ip = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000860}
861
Steven Whitehousefe64d512009-05-19 10:01:18 +0100862/**
863 * gfs2_glock_holder_wait
864 * @word: unused
865 *
866 * This function and gfs2_glock_demote_wait both show up in the WCHAN
867 * field. Thus I've separated these otherwise identical functions in
868 * order to be more informative to the user.
869 */
870
871static int gfs2_glock_holder_wait(void *word)
Steven Whitehousefee852e2007-01-17 15:33:23 +0000872{
873 schedule();
874 return 0;
875}
876
Steven Whitehousefe64d512009-05-19 10:01:18 +0100877static int gfs2_glock_demote_wait(void *word)
878{
879 schedule();
880 return 0;
881}
882
Bob Peterson07a79042012-08-09 12:48:44 -0500883/**
884 * gfs2_glock_wait - wait on a glock acquisition
885 * @gh: the glock holder
886 *
887 * Returns: 0 on success
888 */
889
890int gfs2_glock_wait(struct gfs2_holder *gh)
Steven Whitehousefee852e2007-01-17 15:33:23 +0000891{
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400892 unsigned long time1 = jiffies;
893
Steven Whitehousefee852e2007-01-17 15:33:23 +0000894 might_sleep();
Steven Whitehousefe64d512009-05-19 10:01:18 +0100895 wait_on_bit(&gh->gh_iflags, HIF_WAIT, gfs2_glock_holder_wait, TASK_UNINTERRUPTIBLE);
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400896 if (time_after(jiffies, time1 + HZ)) /* have we waited > a second? */
897 /* Lengthen the minimum hold time. */
898 gh->gh_gl->gl_hold_time = min(gh->gh_gl->gl_hold_time +
899 GL_GLOCK_HOLD_INCR,
900 GL_GLOCK_MAX_HOLD);
Bob Peterson07a79042012-08-09 12:48:44 -0500901 return gh->gh_error;
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100902}
903
David Teiglandb3b94fa2006-01-16 16:50:04 +0000904/**
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000905 * handle_callback - process a demote request
David Teiglandb3b94fa2006-01-16 16:50:04 +0000906 * @gl: the glock
907 * @state: the state the caller wants us to change to
908 *
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000909 * There are only two requests that we are going to see in actual
910 * practise: LM_ST_SHARED and LM_ST_UNLOCKED
David Teiglandb3b94fa2006-01-16 16:50:04 +0000911 */
912
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500913static void handle_callback(struct gfs2_glock *gl, unsigned int state,
Steven Whitehouse97cc1022008-11-20 13:39:47 +0000914 unsigned long delay)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000915{
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500916 int bit = delay ? GLF_PENDING_DEMOTE : GLF_DEMOTE;
917
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500918 set_bit(bit, &gl->gl_flags);
919 if (gl->gl_demote_state == LM_ST_EXCLUSIVE) {
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000920 gl->gl_demote_state = state;
921 gl->gl_demote_time = jiffies;
Josef Whiter26caee52007-07-23 10:02:40 +0100922 } else if (gl->gl_demote_state != LM_ST_UNLOCKED &&
923 gl->gl_demote_state != state) {
Steven Whitehouse6802e342008-05-21 17:03:22 +0100924 gl->gl_demote_state = LM_ST_UNLOCKED;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000925 }
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500926 if (gl->gl_ops->go_callback)
927 gl->gl_ops->go_callback(gl);
Steven Whitehouse63997772009-06-12 08:49:20 +0100928 trace_gfs2_demote_rq(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000929}
930
Steven Whitehouse6802e342008-05-21 17:03:22 +0100931void gfs2_print_dbg(struct seq_file *seq, const char *fmt, ...)
Robert Peterson7c52b162007-03-16 10:26:37 +0000932{
Joe Perches5e690692010-11-09 16:35:20 -0800933 struct va_format vaf;
Robert Peterson7c52b162007-03-16 10:26:37 +0000934 va_list args;
935
936 va_start(args, fmt);
Joe Perches5e690692010-11-09 16:35:20 -0800937
Steven Whitehouse6802e342008-05-21 17:03:22 +0100938 if (seq) {
Steven Whitehouse1bb49302012-06-11 13:26:50 +0100939 seq_vprintf(seq, fmt, args);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100940 } else {
Joe Perches5e690692010-11-09 16:35:20 -0800941 vaf.fmt = fmt;
942 vaf.va = &args;
943
944 printk(KERN_ERR " %pV", &vaf);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100945 }
Joe Perches5e690692010-11-09 16:35:20 -0800946
Robert Peterson7c52b162007-03-16 10:26:37 +0000947 va_end(args);
948}
949
David Teiglandb3b94fa2006-01-16 16:50:04 +0000950/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000951 * add_to_queue - Add a holder to the wait queue (but look for recursion)
952 * @gh: the holder structure to add
953 *
Steven Whitehouse6802e342008-05-21 17:03:22 +0100954 * Eventually we should move the recursive locking trap to a
955 * debugging option or something like that. This is the fast
956 * path and needs to have the minimum number of distractions.
957 *
David Teiglandb3b94fa2006-01-16 16:50:04 +0000958 */
959
Steven Whitehouse6802e342008-05-21 17:03:22 +0100960static inline void add_to_queue(struct gfs2_holder *gh)
Harvey Harrison55ba4742008-10-24 11:31:12 -0700961__releases(&gl->gl_spin)
962__acquires(&gl->gl_spin)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000963{
964 struct gfs2_glock *gl = gh->gh_gl;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100965 struct gfs2_sbd *sdp = gl->gl_sbd;
966 struct list_head *insert_pt = NULL;
967 struct gfs2_holder *gh2;
Bob Petersone5dc76b2012-08-09 12:48:46 -0500968 int try_futile = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000969
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -0800970 BUG_ON(gh->gh_owner_pid == NULL);
Steven Whitehousefee852e2007-01-17 15:33:23 +0000971 if (test_and_set_bit(HIF_WAIT, &gh->gh_iflags))
972 BUG();
Steven Whitehouse190562b2006-04-20 16:57:23 -0400973
Steven Whitehouse6802e342008-05-21 17:03:22 +0100974 if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) {
975 if (test_bit(GLF_LOCK, &gl->gl_flags))
Bob Petersone5dc76b2012-08-09 12:48:46 -0500976 try_futile = !may_grant(gl, gh);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100977 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags))
978 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000979 }
980
Steven Whitehouse6802e342008-05-21 17:03:22 +0100981 list_for_each_entry(gh2, &gl->gl_holders, gh_list) {
982 if (unlikely(gh2->gh_owner_pid == gh->gh_owner_pid &&
983 (gh->gh_gl->gl_ops->go_type != LM_TYPE_FLOCK)))
984 goto trap_recursive;
Bob Petersone5dc76b2012-08-09 12:48:46 -0500985 if (try_futile &&
986 !(gh2->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) {
Steven Whitehouse6802e342008-05-21 17:03:22 +0100987fail:
988 gh->gh_error = GLR_TRYFAILED;
989 gfs2_holder_wake(gh);
990 return;
991 }
992 if (test_bit(HIF_HOLDER, &gh2->gh_iflags))
993 continue;
994 if (unlikely((gh->gh_flags & LM_FLAG_PRIORITY) && !insert_pt))
995 insert_pt = &gh2->gh_list;
996 }
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +0100997 set_bit(GLF_QUEUED, &gl->gl_flags);
Steven Whitehouseedae38a2011-01-31 09:38:12 +0000998 trace_gfs2_glock_queue(gh, 1);
Steven Whitehousea2457692012-01-20 10:38:36 +0000999 gfs2_glstats_inc(gl, GFS2_LKS_QCOUNT);
1000 gfs2_sbstats_inc(gl, GFS2_LKS_QCOUNT);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001001 if (likely(insert_pt == NULL)) {
1002 list_add_tail(&gh->gh_list, &gl->gl_holders);
1003 if (unlikely(gh->gh_flags & LM_FLAG_PRIORITY))
1004 goto do_cancel;
1005 return;
1006 }
1007 list_add_tail(&gh->gh_list, insert_pt);
1008do_cancel:
1009 gh = list_entry(gl->gl_holders.next, struct gfs2_holder, gh_list);
1010 if (!(gh->gh_flags & LM_FLAG_PRIORITY)) {
1011 spin_unlock(&gl->gl_spin);
Steven Whitehouse048bca22008-05-23 14:46:04 +01001012 if (sdp->sd_lockstruct.ls_ops->lm_cancel)
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001013 sdp->sd_lockstruct.ls_ops->lm_cancel(gl);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001014 spin_lock(&gl->gl_spin);
1015 }
1016 return;
1017
1018trap_recursive:
1019 print_symbol(KERN_ERR "original: %s\n", gh2->gh_ip);
1020 printk(KERN_ERR "pid: %d\n", pid_nr(gh2->gh_owner_pid));
1021 printk(KERN_ERR "lock type: %d req lock state : %d\n",
1022 gh2->gh_gl->gl_name.ln_type, gh2->gh_state);
1023 print_symbol(KERN_ERR "new: %s\n", gh->gh_ip);
1024 printk(KERN_ERR "pid: %d\n", pid_nr(gh->gh_owner_pid));
1025 printk(KERN_ERR "lock type: %d req lock state : %d\n",
1026 gh->gh_gl->gl_name.ln_type, gh->gh_state);
Steven Whitehouse8eae1ca2012-10-15 10:57:02 +01001027 gfs2_dump_glock(NULL, gl);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001028 BUG();
David Teiglandb3b94fa2006-01-16 16:50:04 +00001029}
1030
1031/**
1032 * gfs2_glock_nq - enqueue a struct gfs2_holder onto a glock (acquire a glock)
1033 * @gh: the holder structure
1034 *
1035 * if (gh->gh_flags & GL_ASYNC), this never returns an error
1036 *
1037 * Returns: 0, GLR_TRYFAILED, or errno on failure
1038 */
1039
1040int gfs2_glock_nq(struct gfs2_holder *gh)
1041{
1042 struct gfs2_glock *gl = gh->gh_gl;
1043 struct gfs2_sbd *sdp = gl->gl_sbd;
1044 int error = 0;
1045
Steven Whitehouse6802e342008-05-21 17:03:22 +01001046 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001047 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001048
Steven Whitehousef42ab082011-04-14 16:50:31 +01001049 if (test_bit(GLF_LRU, &gl->gl_flags))
1050 gfs2_glock_remove_from_lru(gl);
1051
David Teiglandb3b94fa2006-01-16 16:50:04 +00001052 spin_lock(&gl->gl_spin);
1053 add_to_queue(gh);
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001054 if ((LM_FLAG_NOEXP & gh->gh_flags) &&
1055 test_and_clear_bit(GLF_FROZEN, &gl->gl_flags))
1056 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001057 run_queue(gl, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001058 spin_unlock(&gl->gl_spin);
1059
Steven Whitehouse6802e342008-05-21 17:03:22 +01001060 if (!(gh->gh_flags & GL_ASYNC))
1061 error = gfs2_glock_wait(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001062
David Teiglandb3b94fa2006-01-16 16:50:04 +00001063 return error;
1064}
1065
1066/**
1067 * gfs2_glock_poll - poll to see if an async request has been completed
1068 * @gh: the holder
1069 *
1070 * Returns: 1 if the request is ready to be gfs2_glock_wait()ed on
1071 */
1072
1073int gfs2_glock_poll(struct gfs2_holder *gh)
1074{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001075 return test_bit(HIF_WAIT, &gh->gh_iflags) ? 0 : 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001076}
1077
1078/**
1079 * gfs2_glock_dq - dequeue a struct gfs2_holder from a glock (release a glock)
1080 * @gh: the glock holder
1081 *
1082 */
1083
1084void gfs2_glock_dq(struct gfs2_holder *gh)
1085{
1086 struct gfs2_glock *gl = gh->gh_gl;
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001087 const struct gfs2_glock_operations *glops = gl->gl_ops;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001088 unsigned delay = 0;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001089 int fast_path = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001090
Steven Whitehouse6802e342008-05-21 17:03:22 +01001091 spin_lock(&gl->gl_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001092 if (gh->gh_flags & GL_NOCACHE)
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001093 handle_callback(gl, LM_ST_UNLOCKED, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001094
David Teiglandb3b94fa2006-01-16 16:50:04 +00001095 list_del_init(&gh->gh_list);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001096 if (find_first_holder(gl) == NULL) {
Steven Whitehouse3042a2c2007-11-02 08:39:34 +00001097 if (glops->go_unlock) {
Steven Whitehouse6802e342008-05-21 17:03:22 +01001098 GLOCK_BUG_ON(gl, test_and_set_bit(GLF_LOCK, &gl->gl_flags));
Steven Whitehouse3042a2c2007-11-02 08:39:34 +00001099 spin_unlock(&gl->gl_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001100 glops->go_unlock(gh);
Steven Whitehouse3042a2c2007-11-02 08:39:34 +00001101 spin_lock(&gl->gl_spin);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001102 clear_bit(GLF_LOCK, &gl->gl_flags);
Steven Whitehouse3042a2c2007-11-02 08:39:34 +00001103 }
Steven Whitehouse6802e342008-05-21 17:03:22 +01001104 if (list_empty(&gl->gl_holders) &&
1105 !test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
1106 !test_bit(GLF_DEMOTE, &gl->gl_flags))
1107 fast_path = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001108 }
Bob Peterson4abb6ad2012-08-09 12:48:43 -05001109 if (!test_bit(GLF_LFLUSH, &gl->gl_flags) && demote_ok(gl))
1110 gfs2_glock_add_to_lru(gl);
1111
Steven Whitehouse63997772009-06-12 08:49:20 +01001112 trace_gfs2_glock_queue(gh, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001113 spin_unlock(&gl->gl_spin);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001114 if (likely(fast_path))
1115 return;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001116
1117 gfs2_glock_hold(gl);
1118 if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001119 !test_bit(GLF_DEMOTE, &gl->gl_flags) &&
1120 gl->gl_name.ln_type == LM_TYPE_INODE)
1121 delay = gl->gl_hold_time;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001122 if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
1123 gfs2_glock_put(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001124}
1125
Abhijith Dasd93cfa92007-06-11 08:22:32 +01001126void gfs2_glock_dq_wait(struct gfs2_holder *gh)
1127{
1128 struct gfs2_glock *gl = gh->gh_gl;
1129 gfs2_glock_dq(gh);
Bob Peterson81e1d452012-08-09 12:48:45 -05001130 might_sleep();
1131 wait_on_bit(&gl->gl_flags, GLF_DEMOTE, gfs2_glock_demote_wait, TASK_UNINTERRUPTIBLE);
Abhijith Dasd93cfa92007-06-11 08:22:32 +01001132}
1133
David Teiglandb3b94fa2006-01-16 16:50:04 +00001134/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001135 * gfs2_glock_dq_uninit - dequeue a holder from a glock and initialize it
1136 * @gh: the holder structure
1137 *
1138 */
1139
1140void gfs2_glock_dq_uninit(struct gfs2_holder *gh)
1141{
1142 gfs2_glock_dq(gh);
1143 gfs2_holder_uninit(gh);
1144}
1145
1146/**
1147 * gfs2_glock_nq_num - acquire a glock based on lock number
1148 * @sdp: the filesystem
1149 * @number: the lock number
1150 * @glops: the glock operations for the type of glock
1151 * @state: the state to acquire the glock in
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001152 * @flags: modifier flags for the acquisition
David Teiglandb3b94fa2006-01-16 16:50:04 +00001153 * @gh: the struct gfs2_holder
1154 *
1155 * Returns: errno
1156 */
1157
Steven Whitehousecd915492006-09-04 12:49:07 -04001158int gfs2_glock_nq_num(struct gfs2_sbd *sdp, u64 number,
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001159 const struct gfs2_glock_operations *glops,
1160 unsigned int state, int flags, struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001161{
1162 struct gfs2_glock *gl;
1163 int error;
1164
1165 error = gfs2_glock_get(sdp, number, glops, CREATE, &gl);
1166 if (!error) {
1167 error = gfs2_glock_nq_init(gl, state, flags, gh);
1168 gfs2_glock_put(gl);
1169 }
1170
1171 return error;
1172}
1173
1174/**
1175 * glock_compare - Compare two struct gfs2_glock structures for sorting
1176 * @arg_a: the first structure
1177 * @arg_b: the second structure
1178 *
1179 */
1180
1181static int glock_compare(const void *arg_a, const void *arg_b)
1182{
Steven Whitehousea5e08a92006-09-09 17:07:05 -04001183 const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1184 const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1185 const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1186 const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001187
1188 if (a->ln_number > b->ln_number)
Steven Whitehousea5e08a92006-09-09 17:07:05 -04001189 return 1;
1190 if (a->ln_number < b->ln_number)
1191 return -1;
Steven Whitehouse1c0f4872007-01-22 12:10:39 -05001192 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 -04001193 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001194}
1195
1196/**
1197 * nq_m_sync - synchonously acquire more than one glock in deadlock free order
1198 * @num_gh: the number of structures
1199 * @ghs: an array of struct gfs2_holder structures
1200 *
1201 * Returns: 0 on success (all glocks acquired),
1202 * errno on failure (no glocks acquired)
1203 */
1204
1205static int nq_m_sync(unsigned int num_gh, struct gfs2_holder *ghs,
1206 struct gfs2_holder **p)
1207{
1208 unsigned int x;
1209 int error = 0;
1210
1211 for (x = 0; x < num_gh; x++)
1212 p[x] = &ghs[x];
1213
1214 sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare, NULL);
1215
1216 for (x = 0; x < num_gh; x++) {
1217 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1218
1219 error = gfs2_glock_nq(p[x]);
1220 if (error) {
1221 while (x--)
1222 gfs2_glock_dq(p[x]);
1223 break;
1224 }
1225 }
1226
1227 return error;
1228}
1229
1230/**
1231 * gfs2_glock_nq_m - acquire multiple glocks
1232 * @num_gh: the number of structures
1233 * @ghs: an array of struct gfs2_holder structures
1234 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001235 *
1236 * Returns: 0 on success (all glocks acquired),
1237 * errno on failure (no glocks acquired)
1238 */
1239
1240int gfs2_glock_nq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1241{
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001242 struct gfs2_holder *tmp[4];
1243 struct gfs2_holder **pph = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001244 int error = 0;
1245
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001246 switch(num_gh) {
1247 case 0:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001248 return 0;
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001249 case 1:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001250 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1251 return gfs2_glock_nq(ghs);
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001252 default:
1253 if (num_gh <= 4)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001254 break;
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001255 pph = kmalloc(num_gh * sizeof(struct gfs2_holder *), GFP_NOFS);
1256 if (!pph)
1257 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001258 }
1259
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001260 error = nq_m_sync(num_gh, ghs, pph);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001261
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001262 if (pph != tmp)
1263 kfree(pph);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001264
1265 return error;
1266}
1267
1268/**
1269 * gfs2_glock_dq_m - release multiple glocks
1270 * @num_gh: the number of structures
1271 * @ghs: an array of struct gfs2_holder structures
1272 *
1273 */
1274
1275void gfs2_glock_dq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1276{
Bob Petersonfa1bbde2011-03-10 11:41:57 -05001277 while (num_gh--)
1278 gfs2_glock_dq(&ghs[num_gh]);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001279}
1280
1281/**
1282 * gfs2_glock_dq_uninit_m - release multiple glocks
1283 * @num_gh: the number of structures
1284 * @ghs: an array of struct gfs2_holder structures
1285 *
1286 */
1287
1288void gfs2_glock_dq_uninit_m(unsigned int num_gh, struct gfs2_holder *ghs)
1289{
Bob Petersonfa1bbde2011-03-10 11:41:57 -05001290 while (num_gh--)
1291 gfs2_glock_dq_uninit(&ghs[num_gh]);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001292}
1293
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001294void gfs2_glock_cb(struct gfs2_glock *gl, unsigned int state)
Steven Whitehouseda755fd2008-01-30 15:34:04 +00001295{
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001296 unsigned long delay = 0;
1297 unsigned long holdtime;
1298 unsigned long now = jiffies;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001299
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001300 gfs2_glock_hold(gl);
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001301 holdtime = gl->gl_tchange + gl->gl_hold_time;
1302 if (test_bit(GLF_QUEUED, &gl->gl_flags) &&
1303 gl->gl_name.ln_type == LM_TYPE_INODE) {
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +01001304 if (time_before(now, holdtime))
1305 delay = holdtime - now;
1306 if (test_bit(GLF_REPLY_PENDING, &gl->gl_flags))
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001307 delay = gl->gl_hold_time;
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +01001308 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001309
Steven Whitehouse6802e342008-05-21 17:03:22 +01001310 spin_lock(&gl->gl_spin);
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001311 handle_callback(gl, state, delay);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001312 spin_unlock(&gl->gl_spin);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001313 if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
1314 gfs2_glock_put(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001315}
1316
1317/**
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001318 * gfs2_should_freeze - Figure out if glock should be frozen
1319 * @gl: The glock in question
1320 *
1321 * Glocks are not frozen if (a) the result of the dlm operation is
1322 * an error, (b) the locking operation was an unlock operation or
1323 * (c) if there is a "noexp" flagged request anywhere in the queue
1324 *
1325 * Returns: 1 if freezing should occur, 0 otherwise
1326 */
1327
1328static int gfs2_should_freeze(const struct gfs2_glock *gl)
1329{
1330 const struct gfs2_holder *gh;
1331
1332 if (gl->gl_reply & ~LM_OUT_ST_MASK)
1333 return 0;
1334 if (gl->gl_target == LM_ST_UNLOCKED)
1335 return 0;
1336
1337 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
1338 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
1339 continue;
1340 if (LM_FLAG_NOEXP & gh->gh_flags)
1341 return 0;
1342 }
1343
1344 return 1;
1345}
1346
1347/**
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001348 * gfs2_glock_complete - Callback used by locking
1349 * @gl: Pointer to the glock
1350 * @ret: The return value from the dlm
David Teiglandb3b94fa2006-01-16 16:50:04 +00001351 *
Steven Whitehouse47a25382010-11-30 15:49:31 +00001352 * The gl_reply field is under the gl_spin lock so that it is ok
1353 * to use a bitfield shared with other glock state fields.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001354 */
1355
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001356void gfs2_glock_complete(struct gfs2_glock *gl, int ret)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001357{
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001358 struct lm_lockstruct *ls = &gl->gl_sbd->sd_lockstruct;
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001359
Steven Whitehouse47a25382010-11-30 15:49:31 +00001360 spin_lock(&gl->gl_spin);
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001361 gl->gl_reply = ret;
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001362
David Teiglande0c2a9a2012-01-09 17:18:05 -05001363 if (unlikely(test_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags))) {
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001364 if (gfs2_should_freeze(gl)) {
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001365 set_bit(GLF_FROZEN, &gl->gl_flags);
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001366 spin_unlock(&gl->gl_spin);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001367 return;
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001368 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001369 }
Steven Whitehouse47a25382010-11-30 15:49:31 +00001370
1371 spin_unlock(&gl->gl_spin);
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001372 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
Steven Whitehouse47a25382010-11-30 15:49:31 +00001373 smp_wmb();
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001374 gfs2_glock_hold(gl);
1375 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1376 gfs2_glock_put(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001377}
1378
Steven Whitehouse2a005852012-12-14 12:28:30 +00001379/**
1380 * gfs2_scan_glock_lru - Scan the LRU looking for locks to demote
1381 * @nr: The number of entries to scan
1382 *
1383 */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001384
Steven Whitehouse2a005852012-12-14 12:28:30 +00001385static void gfs2_scan_glock_lru(int nr)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001386{
1387 struct gfs2_glock *gl;
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001388 int may_demote;
1389 int nr_skipped = 0;
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001390 LIST_HEAD(skipped);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001391
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001392 spin_lock(&lru_lock);
1393 while(nr && !list_empty(&lru_list)) {
1394 gl = list_entry(lru_list.next, struct gfs2_glock, gl_lru);
1395 list_del_init(&gl->gl_lru);
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001396 clear_bit(GLF_LRU, &gl->gl_flags);
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001397 atomic_dec(&lru_count);
1398
1399 /* Test for being demotable */
1400 if (!test_and_set_bit(GLF_LOCK, &gl->gl_flags)) {
1401 gfs2_glock_hold(gl);
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001402 spin_unlock(&lru_lock);
1403 spin_lock(&gl->gl_spin);
1404 may_demote = demote_ok(gl);
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001405 if (may_demote) {
1406 handle_callback(gl, LM_ST_UNLOCKED, 0);
1407 nr--;
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001408 }
Steven Whitehouse7e71c552009-09-22 10:56:16 +01001409 clear_bit(GLF_LOCK, &gl->gl_flags);
1410 smp_mb__after_clear_bit();
Steven Whitehouse2163b1e2009-06-25 16:30:26 +01001411 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05001412 gfs2_glock_put_nolock(gl);
1413 spin_unlock(&gl->gl_spin);
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001414 spin_lock(&lru_lock);
Steven Whitehouse2163b1e2009-06-25 16:30:26 +01001415 continue;
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001416 }
Steven Whitehouse2163b1e2009-06-25 16:30:26 +01001417 nr_skipped++;
1418 list_add(&gl->gl_lru, &skipped);
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001419 set_bit(GLF_LRU, &gl->gl_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001420 }
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001421 list_splice(&skipped, &lru_list);
1422 atomic_add(nr_skipped, &lru_count);
1423 spin_unlock(&lru_lock);
Steven Whitehouse2a005852012-12-14 12:28:30 +00001424}
1425
1426static int gfs2_shrink_glock_memory(struct shrinker *shrink,
1427 struct shrink_control *sc)
1428{
1429 if (sc->nr_to_scan) {
1430 if (!(sc->gfp_mask & __GFP_FS))
1431 return -1;
1432 gfs2_scan_glock_lru(sc->nr_to_scan);
1433 }
1434
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001435 return (atomic_read(&lru_count) / 100) * sysctl_vfs_cache_pressure;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001436}
1437
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001438static struct shrinker glock_shrinker = {
1439 .shrink = gfs2_shrink_glock_memory,
1440 .seeks = DEFAULT_SEEKS,
1441};
1442
David Teiglandb3b94fa2006-01-16 16:50:04 +00001443/**
1444 * examine_bucket - Call a function for glock in a hash bucket
1445 * @examiner: the function
1446 * @sdp: the filesystem
1447 * @bucket: the bucket
1448 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001449 */
1450
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001451static void examine_bucket(glock_examiner examiner, const struct gfs2_sbd *sdp,
Steven Whitehouse37b2fa62006-09-08 13:35:56 -04001452 unsigned int hash)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001453{
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001454 struct gfs2_glock *gl;
1455 struct hlist_bl_head *head = &gl_hash_table[hash];
1456 struct hlist_bl_node *pos;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001457
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001458 rcu_read_lock();
1459 hlist_bl_for_each_entry_rcu(gl, pos, head, gl_list) {
1460 if ((gl->gl_sbd == sdp) && atomic_read(&gl->gl_ref))
Steven Whitehouse24264432006-09-11 21:40:30 -04001461 examiner(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001462 }
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001463 rcu_read_unlock();
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001464 cond_resched();
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001465}
1466
1467static void glock_hash_walk(glock_examiner examiner, const struct gfs2_sbd *sdp)
1468{
1469 unsigned x;
1470
1471 for (x = 0; x < GFS2_GL_HASH_SIZE; x++)
1472 examine_bucket(examiner, sdp, x);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001473}
1474
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001475
1476/**
1477 * thaw_glock - thaw out a glock which has an unprocessed reply waiting
1478 * @gl: The glock to thaw
1479 *
1480 * N.B. When we freeze a glock, we leave a ref to the glock outstanding,
1481 * so this has to result in the ref count being dropped by one.
1482 */
1483
1484static void thaw_glock(struct gfs2_glock *gl)
1485{
1486 if (!test_and_clear_bit(GLF_FROZEN, &gl->gl_flags))
1487 return;
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001488 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
1489 gfs2_glock_hold(gl);
1490 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1491 gfs2_glock_put(gl);
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001492}
1493
David Teiglandb3b94fa2006-01-16 16:50:04 +00001494/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001495 * clear_glock - look at a glock and see if we can free it from glock cache
1496 * @gl: the glock to look at
1497 *
1498 */
1499
1500static void clear_glock(struct gfs2_glock *gl)
1501{
Steven Whitehousef42ab082011-04-14 16:50:31 +01001502 gfs2_glock_remove_from_lru(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001503
Steven Whitehouse6802e342008-05-21 17:03:22 +01001504 spin_lock(&gl->gl_spin);
Steven Whitehousec741c452010-09-29 14:20:52 +01001505 if (gl->gl_state != LM_ST_UNLOCKED)
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001506 handle_callback(gl, LM_ST_UNLOCKED, 0);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001507 spin_unlock(&gl->gl_spin);
1508 gfs2_glock_hold(gl);
1509 if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
1510 gfs2_glock_put(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001511}
1512
1513/**
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001514 * gfs2_glock_thaw - Thaw any frozen glocks
1515 * @sdp: The super block
1516 *
1517 */
1518
1519void gfs2_glock_thaw(struct gfs2_sbd *sdp)
1520{
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001521 glock_hash_walk(thaw_glock, sdp);
1522}
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001523
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001524static int dump_glock(struct seq_file *seq, struct gfs2_glock *gl)
1525{
1526 int ret;
1527 spin_lock(&gl->gl_spin);
Steven Whitehouse8eae1ca2012-10-15 10:57:02 +01001528 ret = gfs2_dump_glock(seq, gl);
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001529 spin_unlock(&gl->gl_spin);
1530 return ret;
1531}
1532
1533static void dump_glock_func(struct gfs2_glock *gl)
1534{
1535 dump_glock(NULL, gl);
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001536}
1537
1538/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001539 * gfs2_gl_hash_clear - Empty out the glock hash table
1540 * @sdp: the filesystem
1541 * @wait: wait until it's all gone
1542 *
Steven Whitehouse1bdad602008-06-03 14:09:53 +01001543 * Called when unmounting the filesystem.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001544 */
1545
Steven Whitehousefefc03b2008-12-19 15:32:06 +00001546void gfs2_gl_hash_clear(struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001547{
David Teiglandfb6791d2012-11-13 10:58:56 -05001548 set_bit(SDF_SKIP_DLM_UNLOCK, &sdp->sd_flags);
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001549 glock_hash_walk(clear_glock, sdp);
Steven Whitehouse8f052282010-01-29 15:21:27 +00001550 flush_workqueue(glock_workqueue);
1551 wait_event(sdp->sd_glock_wait, atomic_read(&sdp->sd_glock_disposal) == 0);
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001552 glock_hash_walk(dump_glock_func, sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001553}
1554
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001555void gfs2_glock_finish_truncate(struct gfs2_inode *ip)
1556{
1557 struct gfs2_glock *gl = ip->i_gl;
1558 int ret;
1559
1560 ret = gfs2_truncatei_resume(ip);
1561 gfs2_assert_withdraw(gl->gl_sbd, ret == 0);
1562
1563 spin_lock(&gl->gl_spin);
1564 clear_bit(GLF_LOCK, &gl->gl_flags);
1565 run_queue(gl, 1);
1566 spin_unlock(&gl->gl_spin);
1567}
1568
Steven Whitehouse6802e342008-05-21 17:03:22 +01001569static const char *state2str(unsigned state)
Robert Peterson04b933f2007-03-23 17:05:15 -05001570{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001571 switch(state) {
1572 case LM_ST_UNLOCKED:
1573 return "UN";
1574 case LM_ST_SHARED:
1575 return "SH";
1576 case LM_ST_DEFERRED:
1577 return "DF";
1578 case LM_ST_EXCLUSIVE:
1579 return "EX";
1580 }
1581 return "??";
1582}
Robert Peterson04b933f2007-03-23 17:05:15 -05001583
Steven Whitehouse6802e342008-05-21 17:03:22 +01001584static const char *hflags2str(char *buf, unsigned flags, unsigned long iflags)
1585{
1586 char *p = buf;
1587 if (flags & LM_FLAG_TRY)
1588 *p++ = 't';
1589 if (flags & LM_FLAG_TRY_1CB)
1590 *p++ = 'T';
1591 if (flags & LM_FLAG_NOEXP)
1592 *p++ = 'e';
1593 if (flags & LM_FLAG_ANY)
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001594 *p++ = 'A';
Steven Whitehouse6802e342008-05-21 17:03:22 +01001595 if (flags & LM_FLAG_PRIORITY)
1596 *p++ = 'p';
1597 if (flags & GL_ASYNC)
1598 *p++ = 'a';
1599 if (flags & GL_EXACT)
1600 *p++ = 'E';
Steven Whitehouse6802e342008-05-21 17:03:22 +01001601 if (flags & GL_NOCACHE)
1602 *p++ = 'c';
1603 if (test_bit(HIF_HOLDER, &iflags))
1604 *p++ = 'H';
1605 if (test_bit(HIF_WAIT, &iflags))
1606 *p++ = 'W';
1607 if (test_bit(HIF_FIRST, &iflags))
1608 *p++ = 'F';
1609 *p = 0;
1610 return buf;
Robert Peterson04b933f2007-03-23 17:05:15 -05001611}
1612
David Teiglandb3b94fa2006-01-16 16:50:04 +00001613/**
1614 * dump_holder - print information about a glock holder
Steven Whitehouse6802e342008-05-21 17:03:22 +01001615 * @seq: the seq_file struct
David Teiglandb3b94fa2006-01-16 16:50:04 +00001616 * @gh: the glock holder
1617 *
1618 * Returns: 0 on success, -ENOBUFS when we run out of space
1619 */
1620
Steven Whitehouse6802e342008-05-21 17:03:22 +01001621static int dump_holder(struct seq_file *seq, const struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001622{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001623 struct task_struct *gh_owner = NULL;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001624 char flags_buf[32];
David Teiglandb3b94fa2006-01-16 16:50:04 +00001625
Steven Whitehouse6802e342008-05-21 17:03:22 +01001626 if (gh->gh_owner_pid)
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -08001627 gh_owner = pid_task(gh->gh_owner_pid, PIDTYPE_PID);
Joe Perchescc181522010-11-05 16:12:36 -07001628 gfs2_print_dbg(seq, " H: s:%s f:%s e:%d p:%ld [%s] %pS\n",
1629 state2str(gh->gh_state),
1630 hflags2str(flags_buf, gh->gh_flags, gh->gh_iflags),
1631 gh->gh_error,
1632 gh->gh_owner_pid ? (long)pid_nr(gh->gh_owner_pid) : -1,
1633 gh_owner ? gh_owner->comm : "(ended)",
1634 (void *)gh->gh_ip);
Robert Peterson7c52b162007-03-16 10:26:37 +00001635 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001636}
1637
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001638static const char *gflags2str(char *buf, const struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001639{
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001640 const unsigned long *gflags = &gl->gl_flags;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001641 char *p = buf;
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001642
Steven Whitehouse6802e342008-05-21 17:03:22 +01001643 if (test_bit(GLF_LOCK, gflags))
1644 *p++ = 'l';
Steven Whitehouse6802e342008-05-21 17:03:22 +01001645 if (test_bit(GLF_DEMOTE, gflags))
1646 *p++ = 'D';
1647 if (test_bit(GLF_PENDING_DEMOTE, gflags))
1648 *p++ = 'd';
1649 if (test_bit(GLF_DEMOTE_IN_PROGRESS, gflags))
1650 *p++ = 'p';
1651 if (test_bit(GLF_DIRTY, gflags))
1652 *p++ = 'y';
1653 if (test_bit(GLF_LFLUSH, gflags))
1654 *p++ = 'f';
1655 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, gflags))
1656 *p++ = 'i';
1657 if (test_bit(GLF_REPLY_PENDING, gflags))
1658 *p++ = 'r';
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001659 if (test_bit(GLF_INITIAL, gflags))
Steven Whitehoused8348de2009-02-05 10:12:38 +00001660 *p++ = 'I';
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001661 if (test_bit(GLF_FROZEN, gflags))
1662 *p++ = 'F';
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +01001663 if (test_bit(GLF_QUEUED, gflags))
1664 *p++ = 'q';
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001665 if (test_bit(GLF_LRU, gflags))
1666 *p++ = 'L';
1667 if (gl->gl_object)
1668 *p++ = 'o';
Steven Whitehousea2457692012-01-20 10:38:36 +00001669 if (test_bit(GLF_BLOCKING, gflags))
1670 *p++ = 'b';
Steven Whitehouse6802e342008-05-21 17:03:22 +01001671 *p = 0;
1672 return buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001673}
1674
1675/**
Steven Whitehouse8eae1ca2012-10-15 10:57:02 +01001676 * gfs2_dump_glock - print information about a glock
Steven Whitehouse6802e342008-05-21 17:03:22 +01001677 * @seq: The seq_file struct
David Teiglandb3b94fa2006-01-16 16:50:04 +00001678 * @gl: the glock
Steven Whitehouse6802e342008-05-21 17:03:22 +01001679 *
1680 * The file format is as follows:
1681 * One line per object, capital letters are used to indicate objects
1682 * G = glock, I = Inode, R = rgrp, H = holder. Glocks are not indented,
1683 * other objects are indented by a single space and follow the glock to
1684 * which they are related. Fields are indicated by lower case letters
1685 * followed by a colon and the field value, except for strings which are in
1686 * [] so that its possible to see if they are composed of spaces for
1687 * example. The field's are n = number (id of the object), f = flags,
1688 * t = type, s = state, r = refcount, e = error, p = pid.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001689 *
1690 * Returns: 0 on success, -ENOBUFS when we run out of space
1691 */
1692
Steven Whitehouse8eae1ca2012-10-15 10:57:02 +01001693int gfs2_dump_glock(struct seq_file *seq, const struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001694{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001695 const struct gfs2_glock_operations *glops = gl->gl_ops;
1696 unsigned long long dtime;
1697 const struct gfs2_holder *gh;
1698 char gflags_buf[32];
1699 int error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001700
Steven Whitehouse6802e342008-05-21 17:03:22 +01001701 dtime = jiffies - gl->gl_demote_time;
1702 dtime *= 1000000/HZ; /* demote time in uSec */
1703 if (!test_bit(GLF_DEMOTE, &gl->gl_flags))
1704 dtime = 0;
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001705 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 +01001706 state2str(gl->gl_state),
1707 gl->gl_name.ln_type,
1708 (unsigned long long)gl->gl_name.ln_number,
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001709 gflags2str(gflags_buf, gl),
Steven Whitehouse6802e342008-05-21 17:03:22 +01001710 state2str(gl->gl_target),
1711 state2str(gl->gl_demote_state), dtime,
Steven Whitehouse6802e342008-05-21 17:03:22 +01001712 atomic_read(&gl->gl_ail_count),
Steven Whitehousef42ab082011-04-14 16:50:31 +01001713 atomic_read(&gl->gl_revokes),
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001714 atomic_read(&gl->gl_ref), gl->gl_hold_time);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001715
David Teiglandb3b94fa2006-01-16 16:50:04 +00001716 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
Steven Whitehouse6802e342008-05-21 17:03:22 +01001717 error = dump_holder(seq, gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001718 if (error)
1719 goto out;
1720 }
Steven Whitehouse6802e342008-05-21 17:03:22 +01001721 if (gl->gl_state != LM_ST_UNLOCKED && glops->go_dump)
1722 error = glops->go_dump(seq, gl);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001723out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001724 return error;
1725}
1726
Steven Whitehousea2457692012-01-20 10:38:36 +00001727static int gfs2_glstats_seq_show(struct seq_file *seq, void *iter_ptr)
1728{
1729 struct gfs2_glock *gl = iter_ptr;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001730
Steven Whitehousea2457692012-01-20 10:38:36 +00001731 seq_printf(seq, "G: n:%u/%llx rtt:%lld/%lld rttb:%lld/%lld irt:%lld/%lld dcnt: %lld qcnt: %lld\n",
1732 gl->gl_name.ln_type,
1733 (unsigned long long)gl->gl_name.ln_number,
1734 (long long)gl->gl_stats.stats[GFS2_LKS_SRTT],
1735 (long long)gl->gl_stats.stats[GFS2_LKS_SRTTVAR],
1736 (long long)gl->gl_stats.stats[GFS2_LKS_SRTTB],
1737 (long long)gl->gl_stats.stats[GFS2_LKS_SRTTVARB],
1738 (long long)gl->gl_stats.stats[GFS2_LKS_SIRT],
1739 (long long)gl->gl_stats.stats[GFS2_LKS_SIRTVAR],
1740 (long long)gl->gl_stats.stats[GFS2_LKS_DCOUNT],
1741 (long long)gl->gl_stats.stats[GFS2_LKS_QCOUNT]);
1742 return 0;
1743}
David Teiglandb3b94fa2006-01-16 16:50:04 +00001744
Steven Whitehousea2457692012-01-20 10:38:36 +00001745static const char *gfs2_gltype[] = {
1746 "type",
1747 "reserved",
1748 "nondisk",
1749 "inode",
1750 "rgrp",
1751 "meta",
1752 "iopen",
1753 "flock",
1754 "plock",
1755 "quota",
1756 "journal",
1757};
1758
1759static const char *gfs2_stype[] = {
1760 [GFS2_LKS_SRTT] = "srtt",
1761 [GFS2_LKS_SRTTVAR] = "srttvar",
1762 [GFS2_LKS_SRTTB] = "srttb",
1763 [GFS2_LKS_SRTTVARB] = "srttvarb",
1764 [GFS2_LKS_SIRT] = "sirt",
1765 [GFS2_LKS_SIRTVAR] = "sirtvar",
1766 [GFS2_LKS_DCOUNT] = "dlm",
1767 [GFS2_LKS_QCOUNT] = "queue",
1768};
1769
1770#define GFS2_NR_SBSTATS (ARRAY_SIZE(gfs2_gltype) * ARRAY_SIZE(gfs2_stype))
1771
1772static int gfs2_sbstats_seq_show(struct seq_file *seq, void *iter_ptr)
1773{
1774 struct gfs2_glock_iter *gi = seq->private;
1775 struct gfs2_sbd *sdp = gi->sdp;
1776 unsigned index = gi->hash >> 3;
1777 unsigned subindex = gi->hash & 0x07;
1778 s64 value;
1779 int i;
1780
1781 if (index == 0 && subindex != 0)
1782 return 0;
1783
1784 seq_printf(seq, "%-10s %8s:", gfs2_gltype[index],
1785 (index == 0) ? "cpu": gfs2_stype[subindex]);
1786
1787 for_each_possible_cpu(i) {
1788 const struct gfs2_pcpu_lkstats *lkstats = per_cpu_ptr(sdp->sd_lkstats, i);
1789 if (index == 0) {
1790 value = i;
1791 } else {
1792 value = lkstats->lkstats[index - 1].stats[subindex];
1793 }
1794 seq_printf(seq, " %15lld", (long long)value);
1795 }
1796 seq_putc(seq, '\n');
1797 return 0;
1798}
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001799
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001800int __init gfs2_glock_init(void)
1801{
1802 unsigned i;
1803 for(i = 0; i < GFS2_GL_HASH_SIZE; i++) {
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001804 INIT_HLIST_BL_HEAD(&gl_hash_table[i]);
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001805 }
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001806
Steven Whitehoused2115772010-11-03 19:58:53 +00001807 glock_workqueue = alloc_workqueue("glock_workqueue", WQ_MEM_RECLAIM |
Tejun Heo58a69cb2011-02-16 09:25:31 +01001808 WQ_HIGHPRI | WQ_FREEZABLE, 0);
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001809 if (IS_ERR(glock_workqueue))
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001810 return PTR_ERR(glock_workqueue);
Steven Whitehoused2115772010-11-03 19:58:53 +00001811 gfs2_delete_workqueue = alloc_workqueue("delete_workqueue",
Tejun Heo58a69cb2011-02-16 09:25:31 +01001812 WQ_MEM_RECLAIM | WQ_FREEZABLE,
Steven Whitehoused2115772010-11-03 19:58:53 +00001813 0);
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05001814 if (IS_ERR(gfs2_delete_workqueue)) {
1815 destroy_workqueue(glock_workqueue);
1816 return PTR_ERR(gfs2_delete_workqueue);
1817 }
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001818
1819 register_shrinker(&glock_shrinker);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001820
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001821 return 0;
1822}
1823
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001824void gfs2_glock_exit(void)
1825{
Steven Whitehouse97cc1022008-11-20 13:39:47 +00001826 unregister_shrinker(&glock_shrinker);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001827 destroy_workqueue(glock_workqueue);
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05001828 destroy_workqueue(gfs2_delete_workqueue);
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001829}
1830
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001831static inline struct gfs2_glock *glock_hash_chain(unsigned hash)
1832{
1833 return hlist_bl_entry(hlist_bl_first_rcu(&gl_hash_table[hash]),
1834 struct gfs2_glock, gl_list);
1835}
1836
1837static inline struct gfs2_glock *glock_hash_next(struct gfs2_glock *gl)
1838{
Steven Whitehouse7e32d022011-03-15 08:32:14 +00001839 return hlist_bl_entry(rcu_dereference(gl->gl_list.next),
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001840 struct gfs2_glock, gl_list);
1841}
1842
Steven Whitehouse6802e342008-05-21 17:03:22 +01001843static int gfs2_glock_iter_next(struct gfs2_glock_iter *gi)
Robert Peterson7c52b162007-03-16 10:26:37 +00001844{
Steven Whitehouse7b08fc62007-07-24 13:53:36 +01001845 struct gfs2_glock *gl;
1846
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001847 do {
1848 gl = gi->gl;
1849 if (gl) {
1850 gi->gl = glock_hash_next(gl);
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01001851 gi->nhash++;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001852 } else {
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01001853 if (gi->hash >= GFS2_GL_HASH_SIZE) {
1854 rcu_read_unlock();
1855 return 1;
1856 }
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001857 gi->gl = glock_hash_chain(gi->hash);
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01001858 gi->nhash = 0;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001859 }
1860 while (gi->gl == NULL) {
1861 gi->hash++;
1862 if (gi->hash >= GFS2_GL_HASH_SIZE) {
1863 rcu_read_unlock();
1864 return 1;
1865 }
1866 gi->gl = glock_hash_chain(gi->hash);
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01001867 gi->nhash = 0;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001868 }
1869 /* Skip entries for other sb and dead entries */
1870 } while (gi->sdp != gi->gl->gl_sbd || atomic_read(&gi->gl->gl_ref) == 0);
Abhijith Dasa947e032007-08-21 09:57:29 -05001871
Robert Peterson7c52b162007-03-16 10:26:37 +00001872 return 0;
1873}
1874
Steven Whitehouse6802e342008-05-21 17:03:22 +01001875static void *gfs2_glock_seq_start(struct seq_file *seq, loff_t *pos)
Robert Peterson7c52b162007-03-16 10:26:37 +00001876{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001877 struct gfs2_glock_iter *gi = seq->private;
Robert Peterson7c52b162007-03-16 10:26:37 +00001878 loff_t n = *pos;
1879
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01001880 if (gi->last_pos <= *pos)
1881 n = gi->nhash + (*pos - gi->last_pos);
1882 else
1883 gi->hash = 0;
1884
1885 gi->nhash = 0;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001886 rcu_read_lock();
Robert Peterson7c52b162007-03-16 10:26:37 +00001887
Steven Whitehouse6802e342008-05-21 17:03:22 +01001888 do {
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001889 if (gfs2_glock_iter_next(gi))
Robert Peterson7c52b162007-03-16 10:26:37 +00001890 return NULL;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001891 } while (n--);
Robert Peterson7c52b162007-03-16 10:26:37 +00001892
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01001893 gi->last_pos = *pos;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001894 return gi->gl;
Robert Peterson7c52b162007-03-16 10:26:37 +00001895}
1896
Steven Whitehouse6802e342008-05-21 17:03:22 +01001897static void *gfs2_glock_seq_next(struct seq_file *seq, void *iter_ptr,
Robert Peterson7c52b162007-03-16 10:26:37 +00001898 loff_t *pos)
1899{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001900 struct gfs2_glock_iter *gi = seq->private;
Robert Peterson7c52b162007-03-16 10:26:37 +00001901
1902 (*pos)++;
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01001903 gi->last_pos = *pos;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001904 if (gfs2_glock_iter_next(gi))
Robert Peterson7c52b162007-03-16 10:26:37 +00001905 return NULL;
Robert Peterson7c52b162007-03-16 10:26:37 +00001906
Steven Whitehouse6802e342008-05-21 17:03:22 +01001907 return gi->gl;
Robert Peterson7c52b162007-03-16 10:26:37 +00001908}
1909
Steven Whitehouse6802e342008-05-21 17:03:22 +01001910static void gfs2_glock_seq_stop(struct seq_file *seq, void *iter_ptr)
Robert Peterson7c52b162007-03-16 10:26:37 +00001911{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001912 struct gfs2_glock_iter *gi = seq->private;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001913
1914 if (gi->gl)
1915 rcu_read_unlock();
1916 gi->gl = NULL;
Robert Peterson7c52b162007-03-16 10:26:37 +00001917}
1918
Steven Whitehouse6802e342008-05-21 17:03:22 +01001919static int gfs2_glock_seq_show(struct seq_file *seq, void *iter_ptr)
Robert Peterson7c52b162007-03-16 10:26:37 +00001920{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001921 return dump_glock(seq, iter_ptr);
Robert Peterson7c52b162007-03-16 10:26:37 +00001922}
1923
Steven Whitehousea2457692012-01-20 10:38:36 +00001924static void *gfs2_sbstats_seq_start(struct seq_file *seq, loff_t *pos)
1925{
1926 struct gfs2_glock_iter *gi = seq->private;
1927
1928 gi->hash = *pos;
1929 if (*pos >= GFS2_NR_SBSTATS)
1930 return NULL;
1931 preempt_disable();
1932 return SEQ_START_TOKEN;
1933}
1934
1935static void *gfs2_sbstats_seq_next(struct seq_file *seq, void *iter_ptr,
1936 loff_t *pos)
1937{
1938 struct gfs2_glock_iter *gi = seq->private;
1939 (*pos)++;
1940 gi->hash++;
1941 if (gi->hash >= GFS2_NR_SBSTATS) {
1942 preempt_enable();
1943 return NULL;
1944 }
1945 return SEQ_START_TOKEN;
1946}
1947
1948static void gfs2_sbstats_seq_stop(struct seq_file *seq, void *iter_ptr)
1949{
1950 preempt_enable();
1951}
1952
Denis Cheng4ef29002007-07-31 18:31:11 +08001953static const struct seq_operations gfs2_glock_seq_ops = {
Robert Peterson7c52b162007-03-16 10:26:37 +00001954 .start = gfs2_glock_seq_start,
1955 .next = gfs2_glock_seq_next,
1956 .stop = gfs2_glock_seq_stop,
1957 .show = gfs2_glock_seq_show,
1958};
1959
Steven Whitehousea2457692012-01-20 10:38:36 +00001960static const struct seq_operations gfs2_glstats_seq_ops = {
1961 .start = gfs2_glock_seq_start,
1962 .next = gfs2_glock_seq_next,
1963 .stop = gfs2_glock_seq_stop,
1964 .show = gfs2_glstats_seq_show,
1965};
1966
1967static const struct seq_operations gfs2_sbstats_seq_ops = {
1968 .start = gfs2_sbstats_seq_start,
1969 .next = gfs2_sbstats_seq_next,
1970 .stop = gfs2_sbstats_seq_stop,
1971 .show = gfs2_sbstats_seq_show,
1972};
1973
Steven Whitehouse0fe2f1e2012-06-11 13:49:47 +01001974#define GFS2_SEQ_GOODSIZE min(PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER, 65536UL)
1975
Steven Whitehousea2457692012-01-20 10:38:36 +00001976static int gfs2_glocks_open(struct inode *inode, struct file *file)
Robert Peterson7c52b162007-03-16 10:26:37 +00001977{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001978 int ret = seq_open_private(file, &gfs2_glock_seq_ops,
1979 sizeof(struct gfs2_glock_iter));
1980 if (ret == 0) {
1981 struct seq_file *seq = file->private_data;
1982 struct gfs2_glock_iter *gi = seq->private;
1983 gi->sdp = inode->i_private;
Steven Whitehouse0fe2f1e2012-06-11 13:49:47 +01001984 seq->buf = kmalloc(GFS2_SEQ_GOODSIZE, GFP_KERNEL | __GFP_NOWARN);
Steven Whitehousedf5d2f52012-06-07 13:30:16 +01001985 if (seq->buf)
Steven Whitehouse0fe2f1e2012-06-11 13:49:47 +01001986 seq->size = GFS2_SEQ_GOODSIZE;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001987 }
1988 return ret;
Robert Peterson7c52b162007-03-16 10:26:37 +00001989}
1990
Steven Whitehousea2457692012-01-20 10:38:36 +00001991static int gfs2_glstats_open(struct inode *inode, struct file *file)
1992{
1993 int ret = seq_open_private(file, &gfs2_glstats_seq_ops,
1994 sizeof(struct gfs2_glock_iter));
1995 if (ret == 0) {
1996 struct seq_file *seq = file->private_data;
1997 struct gfs2_glock_iter *gi = seq->private;
1998 gi->sdp = inode->i_private;
Steven Whitehouse0fe2f1e2012-06-11 13:49:47 +01001999 seq->buf = kmalloc(GFS2_SEQ_GOODSIZE, GFP_KERNEL | __GFP_NOWARN);
Steven Whitehousedf5d2f52012-06-07 13:30:16 +01002000 if (seq->buf)
Steven Whitehouse0fe2f1e2012-06-11 13:49:47 +01002001 seq->size = GFS2_SEQ_GOODSIZE;
Steven Whitehousea2457692012-01-20 10:38:36 +00002002 }
2003 return ret;
2004}
2005
2006static int gfs2_sbstats_open(struct inode *inode, struct file *file)
2007{
2008 int ret = seq_open_private(file, &gfs2_sbstats_seq_ops,
2009 sizeof(struct gfs2_glock_iter));
2010 if (ret == 0) {
2011 struct seq_file *seq = file->private_data;
2012 struct gfs2_glock_iter *gi = seq->private;
2013 gi->sdp = inode->i_private;
2014 }
2015 return ret;
2016}
2017
2018static const struct file_operations gfs2_glocks_fops = {
Robert Peterson7c52b162007-03-16 10:26:37 +00002019 .owner = THIS_MODULE,
Steven Whitehousea2457692012-01-20 10:38:36 +00002020 .open = gfs2_glocks_open,
2021 .read = seq_read,
2022 .llseek = seq_lseek,
2023 .release = seq_release_private,
2024};
2025
2026static const struct file_operations gfs2_glstats_fops = {
2027 .owner = THIS_MODULE,
2028 .open = gfs2_glstats_open,
2029 .read = seq_read,
2030 .llseek = seq_lseek,
2031 .release = seq_release_private,
2032};
2033
2034static const struct file_operations gfs2_sbstats_fops = {
2035 .owner = THIS_MODULE,
2036 .open = gfs2_sbstats_open,
Robert Peterson7c52b162007-03-16 10:26:37 +00002037 .read = seq_read,
2038 .llseek = seq_lseek,
Steven Whitehouse6802e342008-05-21 17:03:22 +01002039 .release = seq_release_private,
Robert Peterson7c52b162007-03-16 10:26:37 +00002040};
2041
2042int gfs2_create_debugfs_file(struct gfs2_sbd *sdp)
2043{
Robert Peterson5f882092007-04-18 11:41:11 -05002044 sdp->debugfs_dir = debugfs_create_dir(sdp->sd_table_name, gfs2_root);
2045 if (!sdp->debugfs_dir)
2046 return -ENOMEM;
2047 sdp->debugfs_dentry_glocks = debugfs_create_file("glocks",
2048 S_IFREG | S_IRUGO,
2049 sdp->debugfs_dir, sdp,
Steven Whitehousea2457692012-01-20 10:38:36 +00002050 &gfs2_glocks_fops);
Robert Peterson5f882092007-04-18 11:41:11 -05002051 if (!sdp->debugfs_dentry_glocks)
Steven Whitehousea2457692012-01-20 10:38:36 +00002052 goto fail;
2053
2054 sdp->debugfs_dentry_glstats = debugfs_create_file("glstats",
2055 S_IFREG | S_IRUGO,
2056 sdp->debugfs_dir, sdp,
2057 &gfs2_glstats_fops);
2058 if (!sdp->debugfs_dentry_glstats)
2059 goto fail;
2060
2061 sdp->debugfs_dentry_sbstats = debugfs_create_file("sbstats",
2062 S_IFREG | S_IRUGO,
2063 sdp->debugfs_dir, sdp,
2064 &gfs2_sbstats_fops);
2065 if (!sdp->debugfs_dentry_sbstats)
2066 goto fail;
Robert Peterson7c52b162007-03-16 10:26:37 +00002067
2068 return 0;
Steven Whitehousea2457692012-01-20 10:38:36 +00002069fail:
2070 gfs2_delete_debugfs_file(sdp);
2071 return -ENOMEM;
Robert Peterson7c52b162007-03-16 10:26:37 +00002072}
2073
2074void gfs2_delete_debugfs_file(struct gfs2_sbd *sdp)
2075{
Steven Whitehousea2457692012-01-20 10:38:36 +00002076 if (sdp->debugfs_dir) {
Robert Peterson5f882092007-04-18 11:41:11 -05002077 if (sdp->debugfs_dentry_glocks) {
2078 debugfs_remove(sdp->debugfs_dentry_glocks);
2079 sdp->debugfs_dentry_glocks = NULL;
2080 }
Steven Whitehousea2457692012-01-20 10:38:36 +00002081 if (sdp->debugfs_dentry_glstats) {
2082 debugfs_remove(sdp->debugfs_dentry_glstats);
2083 sdp->debugfs_dentry_glstats = NULL;
2084 }
2085 if (sdp->debugfs_dentry_sbstats) {
2086 debugfs_remove(sdp->debugfs_dentry_sbstats);
2087 sdp->debugfs_dentry_sbstats = NULL;
2088 }
Robert Peterson5f882092007-04-18 11:41:11 -05002089 debugfs_remove(sdp->debugfs_dir);
2090 sdp->debugfs_dir = NULL;
2091 }
Robert Peterson7c52b162007-03-16 10:26:37 +00002092}
2093
2094int gfs2_register_debugfs(void)
2095{
2096 gfs2_root = debugfs_create_dir("gfs2", NULL);
2097 return gfs2_root ? 0 : -ENOMEM;
2098}
2099
2100void gfs2_unregister_debugfs(void)
2101{
2102 debugfs_remove(gfs2_root);
Robert Peterson5f882092007-04-18 11:41:11 -05002103 gfs2_root = NULL;
Robert Peterson7c52b162007-03-16 10:26:37 +00002104}