David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. |
Bob Peterson | cf45b75 | 2008-01-31 10:31:39 -0600 | [diff] [blame] | 3 | * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 4 | * |
| 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 Whitehouse | e9fc2aa | 2006-09-01 11:05:15 -0400 | [diff] [blame] | 7 | * of the GNU General Public License version 2. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <linux/sched.h> |
| 11 | #include <linux/slab.h> |
| 12 | #include <linux/spinlock.h> |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 13 | #include <linux/buffer_head.h> |
| 14 | #include <linux/delay.h> |
| 15 | #include <linux/sort.h> |
| 16 | #include <linux/jhash.h> |
Steven Whitehouse | d0dc80d | 2006-03-29 14:36:49 -0500 | [diff] [blame] | 17 | #include <linux/kallsyms.h> |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 18 | #include <linux/gfs2_ondisk.h> |
Steven Whitehouse | 2426443 | 2006-09-11 21:40:30 -0400 | [diff] [blame] | 19 | #include <linux/list.h> |
Steven Whitehouse | fee852e | 2007-01-17 15:33:23 +0000 | [diff] [blame] | 20 | #include <linux/wait.h> |
akpm@linux-foundation.org | 95d97b7 | 2007-03-05 23:10:39 -0800 | [diff] [blame] | 21 | #include <linux/module.h> |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 22 | #include <asm/uaccess.h> |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 23 | #include <linux/seq_file.h> |
| 24 | #include <linux/debugfs.h> |
Steven Whitehouse | 8fbbfd2 | 2007-08-01 13:57:10 +0100 | [diff] [blame] | 25 | #include <linux/kthread.h> |
| 26 | #include <linux/freezer.h> |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 27 | #include <linux/workqueue.h> |
| 28 | #include <linux/jiffies.h> |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 29 | #include <linux/rcupdate.h> |
| 30 | #include <linux/rculist_bl.h> |
| 31 | #include <linux/bit_spinlock.h> |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 32 | #include <linux/percpu.h> |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 33 | |
| 34 | #include "gfs2.h" |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 35 | #include "incore.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 36 | #include "glock.h" |
| 37 | #include "glops.h" |
| 38 | #include "inode.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 39 | #include "lops.h" |
| 40 | #include "meta_io.h" |
| 41 | #include "quota.h" |
| 42 | #include "super.h" |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 43 | #include "util.h" |
Steven Whitehouse | 813e0c4 | 2008-11-18 13:38:48 +0000 | [diff] [blame] | 44 | #include "bmap.h" |
Steven Whitehouse | 6399777 | 2009-06-12 08:49:20 +0100 | [diff] [blame] | 45 | #define CREATE_TRACE_POINTS |
| 46 | #include "trace_gfs2.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 47 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 48 | struct gfs2_glock_iter { |
Steven Whitehouse | ba1ddcb | 2012-06-08 11:16:22 +0100 | [diff] [blame] | 49 | int hash; /* hash bucket index */ |
| 50 | unsigned nhash; /* Index within current bucket */ |
| 51 | struct gfs2_sbd *sdp; /* incore superblock */ |
| 52 | struct gfs2_glock *gl; /* current glock struct */ |
| 53 | loff_t last_pos; /* last position */ |
| 54 | char string[512]; /* scratch space */ |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 55 | }; |
| 56 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 57 | typedef void (*glock_examiner) (struct gfs2_glock * gl); |
| 58 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 59 | static int __dump_glock(struct seq_file *seq, const struct gfs2_glock *gl); |
| 60 | #define GLOCK_BUG_ON(gl,x) do { if (unlikely(x)) { __dump_glock(NULL, gl); BUG(); } } while(0) |
| 61 | static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target); |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 62 | |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 63 | static struct dentry *gfs2_root; |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 64 | static struct workqueue_struct *glock_workqueue; |
Benjamin Marzinski | b94a170 | 2009-07-23 18:52:34 -0500 | [diff] [blame] | 65 | struct workqueue_struct *gfs2_delete_workqueue; |
Steven Whitehouse | 97cc102 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 66 | static LIST_HEAD(lru_list); |
| 67 | static atomic_t lru_count = ATOMIC_INIT(0); |
Julia Lawall | eb8374e | 2008-12-25 15:35:27 +0100 | [diff] [blame] | 68 | static DEFINE_SPINLOCK(lru_lock); |
Adrian Bunk | 08bc2db | 2006-04-28 10:59:12 -0400 | [diff] [blame] | 69 | |
Steven Whitehouse | b639789 | 2006-09-12 10:10:01 -0400 | [diff] [blame] | 70 | #define GFS2_GL_HASH_SHIFT 15 |
Steven Whitehouse | 087efdd | 2006-09-09 16:59:11 -0400 | [diff] [blame] | 71 | #define GFS2_GL_HASH_SIZE (1 << GFS2_GL_HASH_SHIFT) |
| 72 | #define GFS2_GL_HASH_MASK (GFS2_GL_HASH_SIZE - 1) |
| 73 | |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 74 | static struct hlist_bl_head gl_hash_table[GFS2_GL_HASH_SIZE]; |
Robert Peterson | 04b933f | 2007-03-23 17:05:15 -0500 | [diff] [blame] | 75 | static struct dentry *gfs2_root; |
Steven Whitehouse | 087efdd | 2006-09-09 16:59:11 -0400 | [diff] [blame] | 76 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 77 | /** |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 78 | * gl_hash() - Turn glock number into hash bucket number |
| 79 | * @lock: The glock number |
| 80 | * |
| 81 | * Returns: The number of the corresponding hash bucket |
| 82 | */ |
| 83 | |
Steven Whitehouse | b854785 | 2006-09-07 13:12:27 -0400 | [diff] [blame] | 84 | static unsigned int gl_hash(const struct gfs2_sbd *sdp, |
| 85 | const struct lm_lockname *name) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 86 | { |
| 87 | unsigned int h; |
| 88 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 89 | h = jhash(&name->ln_number, sizeof(u64), 0); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 90 | h = jhash(&name->ln_type, sizeof(unsigned int), h); |
Steven Whitehouse | b854785 | 2006-09-07 13:12:27 -0400 | [diff] [blame] | 91 | h = jhash(&sdp, sizeof(struct gfs2_sbd *), h); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 92 | h &= GFS2_GL_HASH_MASK; |
| 93 | |
| 94 | return h; |
| 95 | } |
| 96 | |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 97 | static inline void spin_lock_bucket(unsigned int hash) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 98 | { |
Christoph Hellwig | 1879fd6 | 2011-04-25 14:01:36 -0400 | [diff] [blame] | 99 | hlist_bl_lock(&gl_hash_table[hash]); |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 100 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 101 | |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 102 | static inline void spin_unlock_bucket(unsigned int hash) |
| 103 | { |
Christoph Hellwig | 1879fd6 | 2011-04-25 14:01:36 -0400 | [diff] [blame] | 104 | hlist_bl_unlock(&gl_hash_table[hash]); |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 105 | } |
| 106 | |
Steven Whitehouse | fc0e38d | 2011-03-09 10:58:04 +0000 | [diff] [blame] | 107 | static void gfs2_glock_dealloc(struct rcu_head *rcu) |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 108 | { |
| 109 | struct gfs2_glock *gl = container_of(rcu, struct gfs2_glock, gl_rcu); |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 110 | |
| 111 | if (gl->gl_ops->go_flags & GLOF_ASPACE) |
| 112 | kmem_cache_free(gfs2_glock_aspace_cachep, gl); |
| 113 | else |
| 114 | kmem_cache_free(gfs2_glock_cachep, gl); |
Steven Whitehouse | fc0e38d | 2011-03-09 10:58:04 +0000 | [diff] [blame] | 115 | } |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 116 | |
Steven Whitehouse | fc0e38d | 2011-03-09 10:58:04 +0000 | [diff] [blame] | 117 | void gfs2_glock_free(struct gfs2_glock *gl) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 118 | { |
| 119 | struct gfs2_sbd *sdp = gl->gl_sbd; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 120 | |
Steven Whitehouse | fc0e38d | 2011-03-09 10:58:04 +0000 | [diff] [blame] | 121 | call_rcu(&gl->gl_rcu, gfs2_glock_dealloc); |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 122 | if (atomic_dec_and_test(&sdp->sd_glock_disposal)) |
| 123 | wake_up(&sdp->sd_glock_wait); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | /** |
| 127 | * gfs2_glock_hold() - increment reference count on glock |
| 128 | * @gl: The glock to hold |
| 129 | * |
| 130 | */ |
| 131 | |
Benjamin Marzinski | b94a170 | 2009-07-23 18:52:34 -0500 | [diff] [blame] | 132 | void gfs2_glock_hold(struct gfs2_glock *gl) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 133 | { |
Steven Whitehouse | d8348de | 2009-02-05 10:12:38 +0000 | [diff] [blame] | 134 | GLOCK_BUG_ON(gl, atomic_read(&gl->gl_ref) == 0); |
Steven Whitehouse | 16feb9f | 2006-09-13 10:43:37 -0400 | [diff] [blame] | 135 | atomic_inc(&gl->gl_ref); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | /** |
Benjamin Marzinski | 8ff22a6 | 2009-07-10 18:04:24 -0500 | [diff] [blame] | 139 | * demote_ok - Check to see if it's ok to unlock a glock |
| 140 | * @gl: the glock |
| 141 | * |
| 142 | * Returns: 1 if it's ok |
| 143 | */ |
| 144 | |
| 145 | static int demote_ok(const struct gfs2_glock *gl) |
| 146 | { |
| 147 | const struct gfs2_glock_operations *glops = gl->gl_ops; |
| 148 | |
| 149 | if (gl->gl_state == LM_ST_UNLOCKED) |
| 150 | return 0; |
Steven Whitehouse | f42ab08 | 2011-04-14 16:50:31 +0100 | [diff] [blame] | 151 | if (!list_empty(&gl->gl_holders)) |
Benjamin Marzinski | 8ff22a6 | 2009-07-10 18:04:24 -0500 | [diff] [blame] | 152 | return 0; |
| 153 | if (glops->go_demote_ok) |
| 154 | return glops->go_demote_ok(gl); |
| 155 | return 1; |
| 156 | } |
| 157 | |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 158 | |
Steven Whitehouse | 29687a2 | 2011-03-30 16:33:25 +0100 | [diff] [blame] | 159 | void gfs2_glock_add_to_lru(struct gfs2_glock *gl) |
| 160 | { |
| 161 | spin_lock(&lru_lock); |
| 162 | |
| 163 | if (!list_empty(&gl->gl_lru)) |
| 164 | list_del_init(&gl->gl_lru); |
| 165 | else |
| 166 | atomic_inc(&lru_count); |
| 167 | |
| 168 | list_add_tail(&gl->gl_lru, &lru_list); |
Steven Whitehouse | 627c10b | 2011-04-14 14:09:52 +0100 | [diff] [blame] | 169 | set_bit(GLF_LRU, &gl->gl_flags); |
Steven Whitehouse | 29687a2 | 2011-03-30 16:33:25 +0100 | [diff] [blame] | 170 | spin_unlock(&lru_lock); |
| 171 | } |
| 172 | |
Steven Whitehouse | 4043b88 | 2012-01-16 15:46:21 +0000 | [diff] [blame] | 173 | static void __gfs2_glock_remove_from_lru(struct gfs2_glock *gl) |
Steven Whitehouse | f42ab08 | 2011-04-14 16:50:31 +0100 | [diff] [blame] | 174 | { |
Steven Whitehouse | f42ab08 | 2011-04-14 16:50:31 +0100 | [diff] [blame] | 175 | if (!list_empty(&gl->gl_lru)) { |
| 176 | list_del_init(&gl->gl_lru); |
| 177 | atomic_dec(&lru_count); |
| 178 | clear_bit(GLF_LRU, &gl->gl_flags); |
| 179 | } |
Steven Whitehouse | 4043b88 | 2012-01-16 15:46:21 +0000 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | static void gfs2_glock_remove_from_lru(struct gfs2_glock *gl) |
| 183 | { |
| 184 | spin_lock(&lru_lock); |
| 185 | __gfs2_glock_remove_from_lru(gl); |
Steven Whitehouse | f42ab08 | 2011-04-14 16:50:31 +0100 | [diff] [blame] | 186 | spin_unlock(&lru_lock); |
| 187 | } |
| 188 | |
Benjamin Marzinski | 8ff22a6 | 2009-07-10 18:04:24 -0500 | [diff] [blame] | 189 | /** |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 190 | * __gfs2_glock_schedule_for_reclaim - Add a glock to the reclaim list |
Steven Whitehouse | 97cc102 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 191 | * @gl: the glock |
| 192 | * |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 193 | * If the glock is demotable, then we add it (or move it) to the end |
| 194 | * of the glock LRU list. |
Steven Whitehouse | 97cc102 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 195 | */ |
| 196 | |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 197 | static void __gfs2_glock_schedule_for_reclaim(struct gfs2_glock *gl) |
Steven Whitehouse | 97cc102 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 198 | { |
Steven Whitehouse | 29687a2 | 2011-03-30 16:33:25 +0100 | [diff] [blame] | 199 | if (demote_ok(gl)) |
| 200 | gfs2_glock_add_to_lru(gl); |
Steven Whitehouse | 97cc102 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | /** |
Benjamin Marzinski | 8ff22a6 | 2009-07-10 18:04:24 -0500 | [diff] [blame] | 204 | * gfs2_glock_put_nolock() - Decrement reference count on glock |
| 205 | * @gl: The glock to put |
| 206 | * |
| 207 | * This function should only be used if the caller has its own reference |
| 208 | * to the glock, in addition to the one it is dropping. |
| 209 | */ |
| 210 | |
Benjamin Marzinski | b94a170 | 2009-07-23 18:52:34 -0500 | [diff] [blame] | 211 | void gfs2_glock_put_nolock(struct gfs2_glock *gl) |
Benjamin Marzinski | 8ff22a6 | 2009-07-10 18:04:24 -0500 | [diff] [blame] | 212 | { |
| 213 | if (atomic_dec_and_test(&gl->gl_ref)) |
| 214 | GLOCK_BUG_ON(gl, 1); |
Benjamin Marzinski | 8ff22a6 | 2009-07-10 18:04:24 -0500 | [diff] [blame] | 215 | } |
| 216 | |
| 217 | /** |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 218 | * gfs2_glock_put() - Decrement reference count on glock |
| 219 | * @gl: The glock to put |
| 220 | * |
| 221 | */ |
| 222 | |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 223 | void gfs2_glock_put(struct gfs2_glock *gl) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 224 | { |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 225 | struct gfs2_sbd *sdp = gl->gl_sbd; |
| 226 | struct address_space *mapping = gfs2_glock2aspace(gl); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 227 | |
Steven Whitehouse | 4043b88 | 2012-01-16 15:46:21 +0000 | [diff] [blame] | 228 | if (atomic_dec_and_lock(&gl->gl_ref, &lru_lock)) { |
| 229 | __gfs2_glock_remove_from_lru(gl); |
| 230 | spin_unlock(&lru_lock); |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 231 | spin_lock_bucket(gl->gl_hash); |
| 232 | hlist_bl_del_rcu(&gl->gl_list); |
| 233 | spin_unlock_bucket(gl->gl_hash); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 234 | GLOCK_BUG_ON(gl, !list_empty(&gl->gl_holders)); |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 235 | GLOCK_BUG_ON(gl, mapping && mapping->nrpages); |
| 236 | trace_gfs2_glock_put(gl); |
| 237 | sdp->sd_lockstruct.ls_ops->lm_put_lock(gl); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 238 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | /** |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 242 | * search_bucket() - Find struct gfs2_glock by lock number |
| 243 | * @bucket: the bucket to search |
| 244 | * @name: The lock name |
| 245 | * |
| 246 | * Returns: NULL, or the struct gfs2_glock with the requested number |
| 247 | */ |
| 248 | |
Steven Whitehouse | 37b2fa6 | 2006-09-08 13:35:56 -0400 | [diff] [blame] | 249 | static struct gfs2_glock *search_bucket(unsigned int hash, |
Steven Whitehouse | 899be4d | 2006-08-30 12:50:28 -0400 | [diff] [blame] | 250 | const struct gfs2_sbd *sdp, |
Steven Whitehouse | d6a5372 | 2006-08-30 11:16:23 -0400 | [diff] [blame] | 251 | const struct lm_lockname *name) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 252 | { |
| 253 | struct gfs2_glock *gl; |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 254 | struct hlist_bl_node *h; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 255 | |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 256 | hlist_bl_for_each_entry_rcu(gl, h, &gl_hash_table[hash], gl_list) { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 257 | if (!lm_name_equal(&gl->gl_name, name)) |
| 258 | continue; |
Steven Whitehouse | 899be4d | 2006-08-30 12:50:28 -0400 | [diff] [blame] | 259 | if (gl->gl_sbd != sdp) |
| 260 | continue; |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 261 | if (atomic_inc_not_zero(&gl->gl_ref)) |
| 262 | return gl; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 263 | } |
| 264 | |
| 265 | return NULL; |
| 266 | } |
| 267 | |
| 268 | /** |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 269 | * may_grant - check if its ok to grant a new lock |
| 270 | * @gl: The glock |
| 271 | * @gh: The lock request which we wish to grant |
| 272 | * |
| 273 | * Returns: true if its ok to grant the lock |
| 274 | */ |
| 275 | |
| 276 | static inline int may_grant(const struct gfs2_glock *gl, const struct gfs2_holder *gh) |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 277 | { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 278 | const struct gfs2_holder *gh_head = list_entry(gl->gl_holders.next, const struct gfs2_holder, gh_list); |
| 279 | if ((gh->gh_state == LM_ST_EXCLUSIVE || |
| 280 | gh_head->gh_state == LM_ST_EXCLUSIVE) && gh != gh_head) |
| 281 | return 0; |
| 282 | if (gl->gl_state == gh->gh_state) |
| 283 | return 1; |
| 284 | if (gh->gh_flags & GL_EXACT) |
| 285 | return 0; |
Steven Whitehouse | 209806a | 2008-07-07 10:07:28 +0100 | [diff] [blame] | 286 | if (gl->gl_state == LM_ST_EXCLUSIVE) { |
| 287 | if (gh->gh_state == LM_ST_SHARED && gh_head->gh_state == LM_ST_SHARED) |
| 288 | return 1; |
| 289 | if (gh->gh_state == LM_ST_DEFERRED && gh_head->gh_state == LM_ST_DEFERRED) |
| 290 | return 1; |
| 291 | } |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 292 | if (gl->gl_state != LM_ST_UNLOCKED && (gh->gh_flags & LM_FLAG_ANY)) |
| 293 | return 1; |
| 294 | return 0; |
| 295 | } |
| 296 | |
| 297 | static void gfs2_holder_wake(struct gfs2_holder *gh) |
| 298 | { |
| 299 | clear_bit(HIF_WAIT, &gh->gh_iflags); |
| 300 | smp_mb__after_clear_bit(); |
| 301 | wake_up_bit(&gh->gh_iflags, HIF_WAIT); |
| 302 | } |
| 303 | |
| 304 | /** |
Steven Whitehouse | d5341a9 | 2010-07-23 14:05:51 +0100 | [diff] [blame] | 305 | * do_error - Something unexpected has happened during a lock request |
| 306 | * |
| 307 | */ |
| 308 | |
| 309 | static inline void do_error(struct gfs2_glock *gl, const int ret) |
| 310 | { |
| 311 | struct gfs2_holder *gh, *tmp; |
| 312 | |
| 313 | list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) { |
| 314 | if (test_bit(HIF_HOLDER, &gh->gh_iflags)) |
| 315 | continue; |
| 316 | if (ret & LM_OUT_ERROR) |
| 317 | gh->gh_error = -EIO; |
| 318 | else if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) |
| 319 | gh->gh_error = GLR_TRYFAILED; |
| 320 | else |
| 321 | continue; |
| 322 | list_del_init(&gh->gh_list); |
| 323 | trace_gfs2_glock_queue(gh, 0); |
| 324 | gfs2_holder_wake(gh); |
| 325 | } |
| 326 | } |
| 327 | |
| 328 | /** |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 329 | * do_promote - promote as many requests as possible on the current queue |
| 330 | * @gl: The glock |
| 331 | * |
Steven Whitehouse | 813e0c4 | 2008-11-18 13:38:48 +0000 | [diff] [blame] | 332 | * Returns: 1 if there is a blocked holder at the head of the list, or 2 |
| 333 | * if a type specific operation is underway. |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 334 | */ |
| 335 | |
| 336 | static int do_promote(struct gfs2_glock *gl) |
Harvey Harrison | 55ba474 | 2008-10-24 11:31:12 -0700 | [diff] [blame] | 337 | __releases(&gl->gl_spin) |
| 338 | __acquires(&gl->gl_spin) |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 339 | { |
| 340 | const struct gfs2_glock_operations *glops = gl->gl_ops; |
| 341 | struct gfs2_holder *gh, *tmp; |
| 342 | int ret; |
| 343 | |
| 344 | restart: |
| 345 | list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) { |
| 346 | if (test_bit(HIF_HOLDER, &gh->gh_iflags)) |
| 347 | continue; |
| 348 | if (may_grant(gl, gh)) { |
| 349 | if (gh->gh_list.prev == &gl->gl_holders && |
| 350 | glops->go_lock) { |
| 351 | spin_unlock(&gl->gl_spin); |
| 352 | /* FIXME: eliminate this eventually */ |
| 353 | ret = glops->go_lock(gh); |
| 354 | spin_lock(&gl->gl_spin); |
| 355 | if (ret) { |
Steven Whitehouse | 813e0c4 | 2008-11-18 13:38:48 +0000 | [diff] [blame] | 356 | if (ret == 1) |
| 357 | return 2; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 358 | gh->gh_error = ret; |
| 359 | list_del_init(&gh->gh_list); |
Steven Whitehouse | 6399777 | 2009-06-12 08:49:20 +0100 | [diff] [blame] | 360 | trace_gfs2_glock_queue(gh, 0); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 361 | gfs2_holder_wake(gh); |
| 362 | goto restart; |
| 363 | } |
| 364 | set_bit(HIF_HOLDER, &gh->gh_iflags); |
Steven Whitehouse | 6399777 | 2009-06-12 08:49:20 +0100 | [diff] [blame] | 365 | trace_gfs2_promote(gh, 1); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 366 | gfs2_holder_wake(gh); |
| 367 | goto restart; |
| 368 | } |
| 369 | set_bit(HIF_HOLDER, &gh->gh_iflags); |
Steven Whitehouse | 6399777 | 2009-06-12 08:49:20 +0100 | [diff] [blame] | 370 | trace_gfs2_promote(gh, 0); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 371 | gfs2_holder_wake(gh); |
| 372 | continue; |
| 373 | } |
| 374 | if (gh->gh_list.prev == &gl->gl_holders) |
| 375 | return 1; |
Steven Whitehouse | d5341a9 | 2010-07-23 14:05:51 +0100 | [diff] [blame] | 376 | do_error(gl, 0); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 377 | break; |
| 378 | } |
| 379 | return 0; |
| 380 | } |
| 381 | |
| 382 | /** |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 383 | * find_first_waiter - find the first gh that's waiting for the glock |
| 384 | * @gl: the glock |
| 385 | */ |
| 386 | |
| 387 | static inline struct gfs2_holder *find_first_waiter(const struct gfs2_glock *gl) |
| 388 | { |
| 389 | struct gfs2_holder *gh; |
| 390 | |
| 391 | list_for_each_entry(gh, &gl->gl_holders, gh_list) { |
| 392 | if (!test_bit(HIF_HOLDER, &gh->gh_iflags)) |
| 393 | return gh; |
| 394 | } |
| 395 | return NULL; |
| 396 | } |
| 397 | |
| 398 | /** |
| 399 | * state_change - record that the glock is now in a different state |
| 400 | * @gl: the glock |
| 401 | * @new_state the new state |
| 402 | * |
| 403 | */ |
| 404 | |
| 405 | static void state_change(struct gfs2_glock *gl, unsigned int new_state) |
| 406 | { |
| 407 | int held1, held2; |
| 408 | |
| 409 | held1 = (gl->gl_state != LM_ST_UNLOCKED); |
| 410 | held2 = (new_state != LM_ST_UNLOCKED); |
| 411 | |
| 412 | if (held1 != held2) { |
| 413 | if (held2) |
| 414 | gfs2_glock_hold(gl); |
| 415 | else |
Benjamin Marzinski | 8ff22a6 | 2009-07-10 18:04:24 -0500 | [diff] [blame] | 416 | gfs2_glock_put_nolock(gl); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 417 | } |
Steven Whitehouse | 7b5e3d5 | 2010-09-03 09:39:20 +0100 | [diff] [blame] | 418 | if (held1 && held2 && list_empty(&gl->gl_holders)) |
| 419 | clear_bit(GLF_QUEUED, &gl->gl_flags); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 420 | |
Bob Peterson | 7cf8dcd | 2011-06-15 11:41:48 -0400 | [diff] [blame] | 421 | if (new_state != gl->gl_target) |
| 422 | /* shorten our minimum hold time */ |
| 423 | gl->gl_hold_time = max(gl->gl_hold_time - GL_GLOCK_HOLD_DECR, |
| 424 | GL_GLOCK_MIN_HOLD); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 425 | gl->gl_state = new_state; |
| 426 | gl->gl_tchange = jiffies; |
| 427 | } |
| 428 | |
| 429 | static void gfs2_demote_wake(struct gfs2_glock *gl) |
| 430 | { |
| 431 | gl->gl_demote_state = LM_ST_EXCLUSIVE; |
| 432 | clear_bit(GLF_DEMOTE, &gl->gl_flags); |
| 433 | smp_mb__after_clear_bit(); |
| 434 | wake_up_bit(&gl->gl_flags, GLF_DEMOTE); |
| 435 | } |
| 436 | |
| 437 | /** |
| 438 | * finish_xmote - The DLM has replied to one of our lock requests |
| 439 | * @gl: The glock |
| 440 | * @ret: The status from the DLM |
| 441 | * |
| 442 | */ |
| 443 | |
| 444 | static void finish_xmote(struct gfs2_glock *gl, unsigned int ret) |
| 445 | { |
| 446 | const struct gfs2_glock_operations *glops = gl->gl_ops; |
| 447 | struct gfs2_holder *gh; |
| 448 | unsigned state = ret & LM_OUT_ST_MASK; |
Steven Whitehouse | 813e0c4 | 2008-11-18 13:38:48 +0000 | [diff] [blame] | 449 | int rv; |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 450 | |
| 451 | spin_lock(&gl->gl_spin); |
Steven Whitehouse | 6399777 | 2009-06-12 08:49:20 +0100 | [diff] [blame] | 452 | trace_gfs2_glock_state_change(gl, state); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 453 | state_change(gl, state); |
| 454 | gh = find_first_waiter(gl); |
| 455 | |
| 456 | /* Demote to UN request arrived during demote to SH or DF */ |
| 457 | if (test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags) && |
| 458 | state != LM_ST_UNLOCKED && gl->gl_demote_state == LM_ST_UNLOCKED) |
| 459 | gl->gl_target = LM_ST_UNLOCKED; |
| 460 | |
| 461 | /* Check for state != intended state */ |
| 462 | if (unlikely(state != gl->gl_target)) { |
| 463 | if (gh && !test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags)) { |
| 464 | /* move to back of queue and try next entry */ |
| 465 | if (ret & LM_OUT_CANCELED) { |
| 466 | if ((gh->gh_flags & LM_FLAG_PRIORITY) == 0) |
| 467 | list_move_tail(&gh->gh_list, &gl->gl_holders); |
| 468 | gh = find_first_waiter(gl); |
| 469 | gl->gl_target = gh->gh_state; |
| 470 | goto retry; |
| 471 | } |
| 472 | /* Some error or failed "try lock" - report it */ |
| 473 | if ((ret & LM_OUT_ERROR) || |
| 474 | (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) { |
| 475 | gl->gl_target = gl->gl_state; |
| 476 | do_error(gl, ret); |
| 477 | goto out; |
| 478 | } |
| 479 | } |
| 480 | switch(state) { |
| 481 | /* Unlocked due to conversion deadlock, try again */ |
| 482 | case LM_ST_UNLOCKED: |
| 483 | retry: |
| 484 | do_xmote(gl, gh, gl->gl_target); |
| 485 | break; |
| 486 | /* Conversion fails, unlock and try again */ |
| 487 | case LM_ST_SHARED: |
| 488 | case LM_ST_DEFERRED: |
| 489 | do_xmote(gl, gh, LM_ST_UNLOCKED); |
| 490 | break; |
| 491 | default: /* Everything else */ |
| 492 | printk(KERN_ERR "GFS2: wanted %u got %u\n", gl->gl_target, state); |
| 493 | GLOCK_BUG_ON(gl, 1); |
| 494 | } |
| 495 | spin_unlock(&gl->gl_spin); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 496 | return; |
| 497 | } |
| 498 | |
| 499 | /* Fast path - we got what we asked for */ |
| 500 | if (test_and_clear_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags)) |
| 501 | gfs2_demote_wake(gl); |
| 502 | if (state != LM_ST_UNLOCKED) { |
| 503 | if (glops->go_xmote_bh) { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 504 | spin_unlock(&gl->gl_spin); |
| 505 | rv = glops->go_xmote_bh(gl, gh); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 506 | spin_lock(&gl->gl_spin); |
| 507 | if (rv) { |
| 508 | do_error(gl, rv); |
| 509 | goto out; |
| 510 | } |
| 511 | } |
Steven Whitehouse | 813e0c4 | 2008-11-18 13:38:48 +0000 | [diff] [blame] | 512 | rv = do_promote(gl); |
| 513 | if (rv == 2) |
| 514 | goto out_locked; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 515 | } |
| 516 | out: |
| 517 | clear_bit(GLF_LOCK, &gl->gl_flags); |
Steven Whitehouse | 813e0c4 | 2008-11-18 13:38:48 +0000 | [diff] [blame] | 518 | out_locked: |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 519 | spin_unlock(&gl->gl_spin); |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 520 | } |
| 521 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 522 | /** |
| 523 | * do_xmote - Calls the DLM to change the state of a lock |
| 524 | * @gl: The lock state |
| 525 | * @gh: The holder (only for promotes) |
| 526 | * @target: The target lock state |
| 527 | * |
| 528 | */ |
| 529 | |
| 530 | static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target) |
Harvey Harrison | 55ba474 | 2008-10-24 11:31:12 -0700 | [diff] [blame] | 531 | __releases(&gl->gl_spin) |
| 532 | __acquires(&gl->gl_spin) |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 533 | { |
| 534 | const struct gfs2_glock_operations *glops = gl->gl_ops; |
| 535 | struct gfs2_sbd *sdp = gl->gl_sbd; |
| 536 | unsigned int lck_flags = gh ? gh->gh_flags : 0; |
| 537 | int ret; |
| 538 | |
| 539 | lck_flags &= (LM_FLAG_TRY | LM_FLAG_TRY_1CB | LM_FLAG_NOEXP | |
| 540 | LM_FLAG_PRIORITY); |
Steven Whitehouse | 921169c | 2010-11-29 12:50:38 +0000 | [diff] [blame] | 541 | GLOCK_BUG_ON(gl, gl->gl_state == target); |
| 542 | GLOCK_BUG_ON(gl, gl->gl_state == gl->gl_target); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 543 | if ((target == LM_ST_UNLOCKED || target == LM_ST_DEFERRED) && |
| 544 | glops->go_inval) { |
| 545 | set_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags); |
| 546 | do_error(gl, 0); /* Fail queued try locks */ |
| 547 | } |
Steven Whitehouse | 47a2538 | 2010-11-30 15:49:31 +0000 | [diff] [blame] | 548 | gl->gl_req = target; |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 549 | set_bit(GLF_BLOCKING, &gl->gl_flags); |
| 550 | if ((gl->gl_req == LM_ST_UNLOCKED) || |
| 551 | (gl->gl_state == LM_ST_EXCLUSIVE) || |
| 552 | (lck_flags & (LM_FLAG_TRY|LM_FLAG_TRY_1CB))) |
| 553 | clear_bit(GLF_BLOCKING, &gl->gl_flags); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 554 | spin_unlock(&gl->gl_spin); |
| 555 | if (glops->go_xmote_th) |
| 556 | glops->go_xmote_th(gl); |
| 557 | if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags)) |
| 558 | glops->go_inval(gl, target == LM_ST_DEFERRED ? 0 : DIO_METADATA); |
| 559 | clear_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags); |
| 560 | |
| 561 | gfs2_glock_hold(gl); |
Steven Whitehouse | 921169c | 2010-11-29 12:50:38 +0000 | [diff] [blame] | 562 | if (sdp->sd_lockstruct.ls_ops->lm_lock) { |
| 563 | /* lock_dlm */ |
| 564 | ret = sdp->sd_lockstruct.ls_ops->lm_lock(gl, target, lck_flags); |
| 565 | GLOCK_BUG_ON(gl, ret); |
| 566 | } else { /* lock_nolock */ |
| 567 | finish_xmote(gl, target); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 568 | if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0) |
| 569 | gfs2_glock_put(gl); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 570 | } |
Steven Whitehouse | 921169c | 2010-11-29 12:50:38 +0000 | [diff] [blame] | 571 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 572 | spin_lock(&gl->gl_spin); |
| 573 | } |
| 574 | |
| 575 | /** |
| 576 | * find_first_holder - find the first "holder" gh |
| 577 | * @gl: the glock |
| 578 | */ |
| 579 | |
| 580 | static inline struct gfs2_holder *find_first_holder(const struct gfs2_glock *gl) |
| 581 | { |
| 582 | struct gfs2_holder *gh; |
| 583 | |
| 584 | if (!list_empty(&gl->gl_holders)) { |
| 585 | gh = list_entry(gl->gl_holders.next, struct gfs2_holder, gh_list); |
| 586 | if (test_bit(HIF_HOLDER, &gh->gh_iflags)) |
| 587 | return gh; |
| 588 | } |
| 589 | return NULL; |
| 590 | } |
| 591 | |
| 592 | /** |
| 593 | * run_queue - do all outstanding tasks related to a glock |
| 594 | * @gl: The glock in question |
| 595 | * @nonblock: True if we must not block in run_queue |
| 596 | * |
| 597 | */ |
| 598 | |
| 599 | static void run_queue(struct gfs2_glock *gl, const int nonblock) |
Harvey Harrison | 55ba474 | 2008-10-24 11:31:12 -0700 | [diff] [blame] | 600 | __releases(&gl->gl_spin) |
| 601 | __acquires(&gl->gl_spin) |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 602 | { |
| 603 | struct gfs2_holder *gh = NULL; |
Steven Whitehouse | 813e0c4 | 2008-11-18 13:38:48 +0000 | [diff] [blame] | 604 | int ret; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 605 | |
| 606 | if (test_and_set_bit(GLF_LOCK, &gl->gl_flags)) |
| 607 | return; |
| 608 | |
| 609 | GLOCK_BUG_ON(gl, test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags)); |
| 610 | |
| 611 | if (test_bit(GLF_DEMOTE, &gl->gl_flags) && |
| 612 | gl->gl_demote_state != gl->gl_state) { |
| 613 | if (find_first_holder(gl)) |
Steven Whitehouse | d8348de | 2009-02-05 10:12:38 +0000 | [diff] [blame] | 614 | goto out_unlock; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 615 | if (nonblock) |
| 616 | goto out_sched; |
| 617 | set_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags); |
Steven Whitehouse | 265d529c | 2008-07-07 10:02:36 +0100 | [diff] [blame] | 618 | GLOCK_BUG_ON(gl, gl->gl_demote_state == LM_ST_EXCLUSIVE); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 619 | gl->gl_target = gl->gl_demote_state; |
| 620 | } else { |
| 621 | if (test_bit(GLF_DEMOTE, &gl->gl_flags)) |
| 622 | gfs2_demote_wake(gl); |
Steven Whitehouse | 813e0c4 | 2008-11-18 13:38:48 +0000 | [diff] [blame] | 623 | ret = do_promote(gl); |
| 624 | if (ret == 0) |
Steven Whitehouse | d8348de | 2009-02-05 10:12:38 +0000 | [diff] [blame] | 625 | goto out_unlock; |
Steven Whitehouse | 813e0c4 | 2008-11-18 13:38:48 +0000 | [diff] [blame] | 626 | if (ret == 2) |
Steven Whitehouse | a228df6 | 2009-04-07 14:01:34 +0100 | [diff] [blame] | 627 | goto out; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 628 | gh = find_first_waiter(gl); |
| 629 | gl->gl_target = gh->gh_state; |
| 630 | if (!(gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) |
| 631 | do_error(gl, 0); /* Fail queued try locks */ |
| 632 | } |
| 633 | do_xmote(gl, gh, gl->gl_target); |
Steven Whitehouse | a228df6 | 2009-04-07 14:01:34 +0100 | [diff] [blame] | 634 | out: |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 635 | return; |
| 636 | |
| 637 | out_sched: |
Steven Whitehouse | 7e71c55 | 2009-09-22 10:56:16 +0100 | [diff] [blame] | 638 | clear_bit(GLF_LOCK, &gl->gl_flags); |
| 639 | smp_mb__after_clear_bit(); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 640 | gfs2_glock_hold(gl); |
| 641 | if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0) |
Benjamin Marzinski | 8ff22a6 | 2009-07-10 18:04:24 -0500 | [diff] [blame] | 642 | gfs2_glock_put_nolock(gl); |
Steven Whitehouse | 7e71c55 | 2009-09-22 10:56:16 +0100 | [diff] [blame] | 643 | return; |
| 644 | |
Steven Whitehouse | d8348de | 2009-02-05 10:12:38 +0000 | [diff] [blame] | 645 | out_unlock: |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 646 | clear_bit(GLF_LOCK, &gl->gl_flags); |
Steven Whitehouse | 7e71c55 | 2009-09-22 10:56:16 +0100 | [diff] [blame] | 647 | smp_mb__after_clear_bit(); |
| 648 | return; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 649 | } |
| 650 | |
Benjamin Marzinski | b94a170 | 2009-07-23 18:52:34 -0500 | [diff] [blame] | 651 | static void delete_work_func(struct work_struct *work) |
| 652 | { |
| 653 | struct gfs2_glock *gl = container_of(work, struct gfs2_glock, gl_delete); |
| 654 | struct gfs2_sbd *sdp = gl->gl_sbd; |
Steven Whitehouse | 044b941 | 2010-11-03 20:01:07 +0000 | [diff] [blame] | 655 | struct gfs2_inode *ip; |
Benjamin Marzinski | b94a170 | 2009-07-23 18:52:34 -0500 | [diff] [blame] | 656 | struct inode *inode; |
Steven Whitehouse | 044b941 | 2010-11-03 20:01:07 +0000 | [diff] [blame] | 657 | u64 no_addr = gl->gl_name.ln_number; |
Benjamin Marzinski | b94a170 | 2009-07-23 18:52:34 -0500 | [diff] [blame] | 658 | |
Steven Whitehouse | 044b941 | 2010-11-03 20:01:07 +0000 | [diff] [blame] | 659 | ip = gl->gl_object; |
| 660 | /* Note: Unsafe to dereference ip as we don't hold right refs/locks */ |
| 661 | |
Benjamin Marzinski | b94a170 | 2009-07-23 18:52:34 -0500 | [diff] [blame] | 662 | if (ip) |
Steven Whitehouse | 4667a0e | 2011-04-18 14:18:09 +0100 | [diff] [blame] | 663 | inode = gfs2_ilookup(sdp->sd_vfs, no_addr, 1); |
Steven Whitehouse | 044b941 | 2010-11-03 20:01:07 +0000 | [diff] [blame] | 664 | else |
| 665 | inode = gfs2_lookup_by_inum(sdp, no_addr, NULL, GFS2_BLKST_UNLINKED); |
| 666 | if (inode && !IS_ERR(inode)) { |
| 667 | d_prune_aliases(inode); |
| 668 | iput(inode); |
Benjamin Marzinski | b94a170 | 2009-07-23 18:52:34 -0500 | [diff] [blame] | 669 | } |
| 670 | gfs2_glock_put(gl); |
| 671 | } |
| 672 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 673 | static void glock_work_func(struct work_struct *work) |
| 674 | { |
| 675 | unsigned long delay = 0; |
| 676 | struct gfs2_glock *gl = container_of(work, struct gfs2_glock, gl_work.work); |
Steven Whitehouse | 26bb750 | 2009-11-27 10:31:11 +0000 | [diff] [blame] | 677 | int drop_ref = 0; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 678 | |
Steven Whitehouse | 26bb750 | 2009-11-27 10:31:11 +0000 | [diff] [blame] | 679 | if (test_and_clear_bit(GLF_REPLY_PENDING, &gl->gl_flags)) { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 680 | finish_xmote(gl, gl->gl_reply); |
Steven Whitehouse | 26bb750 | 2009-11-27 10:31:11 +0000 | [diff] [blame] | 681 | drop_ref = 1; |
| 682 | } |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 683 | spin_lock(&gl->gl_spin); |
Bob Peterson | f90e5b5 | 2011-05-24 10:44:42 -0400 | [diff] [blame] | 684 | if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) && |
Steven Whitehouse | 265d529c | 2008-07-07 10:02:36 +0100 | [diff] [blame] | 685 | gl->gl_state != LM_ST_UNLOCKED && |
| 686 | gl->gl_demote_state != LM_ST_EXCLUSIVE) { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 687 | unsigned long holdtime, now = jiffies; |
Bob Peterson | f90e5b5 | 2011-05-24 10:44:42 -0400 | [diff] [blame] | 688 | |
Bob Peterson | 7cf8dcd | 2011-06-15 11:41:48 -0400 | [diff] [blame] | 689 | holdtime = gl->gl_tchange + gl->gl_hold_time; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 690 | if (time_before(now, holdtime)) |
| 691 | delay = holdtime - now; |
Bob Peterson | f90e5b5 | 2011-05-24 10:44:42 -0400 | [diff] [blame] | 692 | |
| 693 | if (!delay) { |
| 694 | clear_bit(GLF_PENDING_DEMOTE, &gl->gl_flags); |
| 695 | set_bit(GLF_DEMOTE, &gl->gl_flags); |
| 696 | } |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 697 | } |
| 698 | run_queue(gl, 0); |
| 699 | spin_unlock(&gl->gl_spin); |
Bob Peterson | 7cf8dcd | 2011-06-15 11:41:48 -0400 | [diff] [blame] | 700 | if (!delay) |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 701 | gfs2_glock_put(gl); |
Bob Peterson | 7cf8dcd | 2011-06-15 11:41:48 -0400 | [diff] [blame] | 702 | else { |
| 703 | if (gl->gl_name.ln_type != LM_TYPE_INODE) |
| 704 | delay = 0; |
| 705 | if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0) |
| 706 | gfs2_glock_put(gl); |
| 707 | } |
Steven Whitehouse | 26bb750 | 2009-11-27 10:31:11 +0000 | [diff] [blame] | 708 | if (drop_ref) |
| 709 | gfs2_glock_put(gl); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 710 | } |
| 711 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 712 | /** |
| 713 | * gfs2_glock_get() - Get a glock, or create one if one doesn't exist |
| 714 | * @sdp: The GFS2 superblock |
| 715 | * @number: the lock number |
| 716 | * @glops: The glock_operations to use |
| 717 | * @create: If 0, don't create the glock if it doesn't exist |
| 718 | * @glp: the glock is returned here |
| 719 | * |
| 720 | * This does not lock a glock, just finds/creates structures for one. |
| 721 | * |
| 722 | * Returns: errno |
| 723 | */ |
| 724 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 725 | int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number, |
Steven Whitehouse | 8fb4b53 | 2006-08-30 09:30:00 -0400 | [diff] [blame] | 726 | const struct gfs2_glock_operations *glops, int create, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 727 | struct gfs2_glock **glp) |
| 728 | { |
Steven Whitehouse | 009d851 | 2009-12-08 12:12:13 +0000 | [diff] [blame] | 729 | struct super_block *s = sdp->sd_vfs; |
Steven Whitehouse | 37b2fa6 | 2006-09-08 13:35:56 -0400 | [diff] [blame] | 730 | struct lm_lockname name = { .ln_number = number, .ln_type = glops->go_type }; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 731 | struct gfs2_glock *gl, *tmp; |
Steven Whitehouse | 37b2fa6 | 2006-09-08 13:35:56 -0400 | [diff] [blame] | 732 | unsigned int hash = gl_hash(sdp, &name); |
Steven Whitehouse | 009d851 | 2009-12-08 12:12:13 +0000 | [diff] [blame] | 733 | struct address_space *mapping; |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 734 | struct kmem_cache *cachep; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 735 | |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 736 | rcu_read_lock(); |
Steven Whitehouse | 37b2fa6 | 2006-09-08 13:35:56 -0400 | [diff] [blame] | 737 | gl = search_bucket(hash, sdp, &name); |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 738 | rcu_read_unlock(); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 739 | |
Steven Whitehouse | 64d576b | 2009-02-12 13:31:58 +0000 | [diff] [blame] | 740 | *glp = gl; |
| 741 | if (gl) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 742 | return 0; |
Steven Whitehouse | 64d576b | 2009-02-12 13:31:58 +0000 | [diff] [blame] | 743 | if (!create) |
| 744 | return -ENOENT; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 745 | |
Steven Whitehouse | 009d851 | 2009-12-08 12:12:13 +0000 | [diff] [blame] | 746 | if (glops->go_flags & GLOF_ASPACE) |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 747 | cachep = gfs2_glock_aspace_cachep; |
Steven Whitehouse | 009d851 | 2009-12-08 12:12:13 +0000 | [diff] [blame] | 748 | else |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 749 | cachep = gfs2_glock_cachep; |
| 750 | gl = kmem_cache_alloc(cachep, GFP_KERNEL); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 751 | if (!gl) |
| 752 | return -ENOMEM; |
| 753 | |
Steven Whitehouse | 8f05228 | 2010-01-29 15:21:27 +0000 | [diff] [blame] | 754 | atomic_inc(&sdp->sd_glock_disposal); |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 755 | gl->gl_sbd = sdp; |
Steven Whitehouse | ec45d9f | 2006-08-30 10:36:52 -0400 | [diff] [blame] | 756 | gl->gl_flags = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 757 | gl->gl_name = name; |
Steven Whitehouse | 16feb9f | 2006-09-13 10:43:37 -0400 | [diff] [blame] | 758 | atomic_set(&gl->gl_ref, 1); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 759 | gl->gl_state = LM_ST_UNLOCKED; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 760 | gl->gl_target = LM_ST_UNLOCKED; |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 761 | gl->gl_demote_state = LM_ST_EXCLUSIVE; |
Steven Whitehouse | 37b2fa6 | 2006-09-08 13:35:56 -0400 | [diff] [blame] | 762 | gl->gl_hash = hash; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 763 | gl->gl_ops = glops; |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 764 | gl->gl_dstamp = ktime_set(0, 0); |
| 765 | preempt_disable(); |
| 766 | /* We use the global stats to estimate the initial per-glock stats */ |
| 767 | gl->gl_stats = this_cpu_ptr(sdp->sd_lkstats)->lkstats[glops->go_type]; |
| 768 | preempt_enable(); |
| 769 | gl->gl_stats.stats[GFS2_LKS_DCOUNT] = 0; |
| 770 | gl->gl_stats.stats[GFS2_LKS_QCOUNT] = 0; |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 771 | memset(&gl->gl_lksb, 0, sizeof(struct dlm_lksb)); |
Benjamin Marzinski | 90306c4 | 2012-05-29 23:01:09 -0500 | [diff] [blame^] | 772 | memset(gl->gl_lvb, 0, 32 * sizeof(char)); |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 773 | gl->gl_lksb.sb_lvbptr = gl->gl_lvb; |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 774 | gl->gl_tchange = jiffies; |
Steven Whitehouse | ec45d9f | 2006-08-30 10:36:52 -0400 | [diff] [blame] | 775 | gl->gl_object = NULL; |
Bob Peterson | 7cf8dcd | 2011-06-15 11:41:48 -0400 | [diff] [blame] | 776 | gl->gl_hold_time = GL_GLOCK_DFT_HOLD; |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 777 | INIT_DELAYED_WORK(&gl->gl_work, glock_work_func); |
Benjamin Marzinski | b94a170 | 2009-07-23 18:52:34 -0500 | [diff] [blame] | 778 | INIT_WORK(&gl->gl_delete, delete_work_func); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 779 | |
Steven Whitehouse | 009d851 | 2009-12-08 12:12:13 +0000 | [diff] [blame] | 780 | mapping = gfs2_glock2aspace(gl); |
| 781 | if (mapping) { |
| 782 | mapping->a_ops = &gfs2_meta_aops; |
| 783 | mapping->host = s->s_bdev->bd_inode; |
| 784 | mapping->flags = 0; |
| 785 | mapping_set_gfp_mask(mapping, GFP_NOFS); |
| 786 | mapping->assoc_mapping = NULL; |
| 787 | mapping->backing_dev_info = s->s_bdi; |
| 788 | mapping->writeback_index = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 789 | } |
| 790 | |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 791 | spin_lock_bucket(hash); |
Steven Whitehouse | 37b2fa6 | 2006-09-08 13:35:56 -0400 | [diff] [blame] | 792 | tmp = search_bucket(hash, sdp, &name); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 793 | if (tmp) { |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 794 | spin_unlock_bucket(hash); |
| 795 | kmem_cache_free(cachep, gl); |
Steven Whitehouse | fc0e38d | 2011-03-09 10:58:04 +0000 | [diff] [blame] | 796 | atomic_dec(&sdp->sd_glock_disposal); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 797 | gl = tmp; |
| 798 | } else { |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 799 | hlist_bl_add_head_rcu(&gl->gl_list, &gl_hash_table[hash]); |
| 800 | spin_unlock_bucket(hash); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 801 | } |
| 802 | |
| 803 | *glp = gl; |
| 804 | |
| 805 | return 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 806 | } |
| 807 | |
| 808 | /** |
| 809 | * gfs2_holder_init - initialize a struct gfs2_holder in the default way |
| 810 | * @gl: the glock |
| 811 | * @state: the state we're requesting |
| 812 | * @flags: the modifier flags |
| 813 | * @gh: the holder structure |
| 814 | * |
| 815 | */ |
| 816 | |
Steven Whitehouse | 190562b | 2006-04-20 16:57:23 -0400 | [diff] [blame] | 817 | void gfs2_holder_init(struct gfs2_glock *gl, unsigned int state, unsigned flags, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 818 | struct gfs2_holder *gh) |
| 819 | { |
| 820 | INIT_LIST_HEAD(&gh->gh_list); |
| 821 | gh->gh_gl = gl; |
Steven Whitehouse | d0dc80d | 2006-03-29 14:36:49 -0500 | [diff] [blame] | 822 | gh->gh_ip = (unsigned long)__builtin_return_address(0); |
Pavel Emelyanov | b1e058d | 2008-02-07 00:13:19 -0800 | [diff] [blame] | 823 | gh->gh_owner_pid = get_pid(task_pid(current)); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 824 | gh->gh_state = state; |
| 825 | gh->gh_flags = flags; |
| 826 | gh->gh_error = 0; |
| 827 | gh->gh_iflags = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 828 | gfs2_glock_hold(gl); |
| 829 | } |
| 830 | |
| 831 | /** |
| 832 | * gfs2_holder_reinit - reinitialize a struct gfs2_holder so we can requeue it |
| 833 | * @state: the state we're requesting |
| 834 | * @flags: the modifier flags |
| 835 | * @gh: the holder structure |
| 836 | * |
| 837 | * Don't mess with the glock. |
| 838 | * |
| 839 | */ |
| 840 | |
Steven Whitehouse | 190562b | 2006-04-20 16:57:23 -0400 | [diff] [blame] | 841 | void gfs2_holder_reinit(unsigned int state, unsigned flags, struct gfs2_holder *gh) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 842 | { |
| 843 | gh->gh_state = state; |
Steven Whitehouse | 579b78a | 2006-04-26 14:58:26 -0400 | [diff] [blame] | 844 | gh->gh_flags = flags; |
Steven Whitehouse | 3b8249f | 2007-03-16 09:40:31 +0000 | [diff] [blame] | 845 | gh->gh_iflags = 0; |
Steven Whitehouse | d0dc80d | 2006-03-29 14:36:49 -0500 | [diff] [blame] | 846 | gh->gh_ip = (unsigned long)__builtin_return_address(0); |
Bob Peterson | 1a0eae8 | 2010-04-14 11:58:16 -0400 | [diff] [blame] | 847 | if (gh->gh_owner_pid) |
| 848 | put_pid(gh->gh_owner_pid); |
| 849 | gh->gh_owner_pid = get_pid(task_pid(current)); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 850 | } |
| 851 | |
| 852 | /** |
| 853 | * gfs2_holder_uninit - uninitialize a holder structure (drop glock reference) |
| 854 | * @gh: the holder structure |
| 855 | * |
| 856 | */ |
| 857 | |
| 858 | void gfs2_holder_uninit(struct gfs2_holder *gh) |
| 859 | { |
Pavel Emelyanov | b1e058d | 2008-02-07 00:13:19 -0800 | [diff] [blame] | 860 | put_pid(gh->gh_owner_pid); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 861 | gfs2_glock_put(gh->gh_gl); |
| 862 | gh->gh_gl = NULL; |
Steven Whitehouse | d0dc80d | 2006-03-29 14:36:49 -0500 | [diff] [blame] | 863 | gh->gh_ip = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 864 | } |
| 865 | |
Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 866 | /** |
| 867 | * gfs2_glock_holder_wait |
| 868 | * @word: unused |
| 869 | * |
| 870 | * This function and gfs2_glock_demote_wait both show up in the WCHAN |
| 871 | * field. Thus I've separated these otherwise identical functions in |
| 872 | * order to be more informative to the user. |
| 873 | */ |
| 874 | |
| 875 | static int gfs2_glock_holder_wait(void *word) |
Steven Whitehouse | fee852e | 2007-01-17 15:33:23 +0000 | [diff] [blame] | 876 | { |
| 877 | schedule(); |
| 878 | return 0; |
| 879 | } |
| 880 | |
Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 881 | static int gfs2_glock_demote_wait(void *word) |
| 882 | { |
| 883 | schedule(); |
| 884 | return 0; |
| 885 | } |
| 886 | |
Steven Whitehouse | fee852e | 2007-01-17 15:33:23 +0000 | [diff] [blame] | 887 | static void wait_on_holder(struct gfs2_holder *gh) |
| 888 | { |
Bob Peterson | 7cf8dcd | 2011-06-15 11:41:48 -0400 | [diff] [blame] | 889 | unsigned long time1 = jiffies; |
| 890 | |
Steven Whitehouse | fee852e | 2007-01-17 15:33:23 +0000 | [diff] [blame] | 891 | might_sleep(); |
Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 892 | wait_on_bit(&gh->gh_iflags, HIF_WAIT, gfs2_glock_holder_wait, TASK_UNINTERRUPTIBLE); |
Bob Peterson | 7cf8dcd | 2011-06-15 11:41:48 -0400 | [diff] [blame] | 893 | if (time_after(jiffies, time1 + HZ)) /* have we waited > a second? */ |
| 894 | /* Lengthen the minimum hold time. */ |
| 895 | gh->gh_gl->gl_hold_time = min(gh->gh_gl->gl_hold_time + |
| 896 | GL_GLOCK_HOLD_INCR, |
| 897 | GL_GLOCK_MAX_HOLD); |
Abhijith Das | d93cfa9 | 2007-06-11 08:22:32 +0100 | [diff] [blame] | 898 | } |
| 899 | |
Abhijith Das | d93cfa9 | 2007-06-11 08:22:32 +0100 | [diff] [blame] | 900 | static void wait_on_demote(struct gfs2_glock *gl) |
| 901 | { |
| 902 | might_sleep(); |
Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 903 | wait_on_bit(&gl->gl_flags, GLF_DEMOTE, gfs2_glock_demote_wait, TASK_UNINTERRUPTIBLE); |
Steven Whitehouse | fee852e | 2007-01-17 15:33:23 +0000 | [diff] [blame] | 904 | } |
| 905 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 906 | /** |
Steven Whitehouse | 3b8249f | 2007-03-16 09:40:31 +0000 | [diff] [blame] | 907 | * handle_callback - process a demote request |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 908 | * @gl: the glock |
| 909 | * @state: the state the caller wants us to change to |
| 910 | * |
Steven Whitehouse | 3b8249f | 2007-03-16 09:40:31 +0000 | [diff] [blame] | 911 | * There are only two requests that we are going to see in actual |
| 912 | * practise: LM_ST_SHARED and LM_ST_UNLOCKED |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 913 | */ |
| 914 | |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 915 | static void handle_callback(struct gfs2_glock *gl, unsigned int state, |
Steven Whitehouse | 97cc102 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 916 | unsigned long delay) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 917 | { |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 918 | int bit = delay ? GLF_PENDING_DEMOTE : GLF_DEMOTE; |
| 919 | |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 920 | set_bit(bit, &gl->gl_flags); |
| 921 | if (gl->gl_demote_state == LM_ST_EXCLUSIVE) { |
Steven Whitehouse | 3b8249f | 2007-03-16 09:40:31 +0000 | [diff] [blame] | 922 | gl->gl_demote_state = state; |
| 923 | gl->gl_demote_time = jiffies; |
Josef Whiter | 26caee5 | 2007-07-23 10:02:40 +0100 | [diff] [blame] | 924 | } else if (gl->gl_demote_state != LM_ST_UNLOCKED && |
| 925 | gl->gl_demote_state != state) { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 926 | gl->gl_demote_state = LM_ST_UNLOCKED; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 927 | } |
Benjamin Marzinski | b94a170 | 2009-07-23 18:52:34 -0500 | [diff] [blame] | 928 | if (gl->gl_ops->go_callback) |
| 929 | gl->gl_ops->go_callback(gl); |
Steven Whitehouse | 6399777 | 2009-06-12 08:49:20 +0100 | [diff] [blame] | 930 | trace_gfs2_demote_rq(gl); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 931 | } |
| 932 | |
| 933 | /** |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 934 | * gfs2_glock_wait - wait on a glock acquisition |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 935 | * @gh: the glock holder |
| 936 | * |
| 937 | * Returns: 0 on success |
| 938 | */ |
| 939 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 940 | int gfs2_glock_wait(struct gfs2_holder *gh) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 941 | { |
Steven Whitehouse | fee852e | 2007-01-17 15:33:23 +0000 | [diff] [blame] | 942 | wait_on_holder(gh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 943 | return gh->gh_error; |
| 944 | } |
| 945 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 946 | void gfs2_print_dbg(struct seq_file *seq, const char *fmt, ...) |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 947 | { |
Joe Perches | 5e69069 | 2010-11-09 16:35:20 -0800 | [diff] [blame] | 948 | struct va_format vaf; |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 949 | va_list args; |
| 950 | |
| 951 | va_start(args, fmt); |
Joe Perches | 5e69069 | 2010-11-09 16:35:20 -0800 | [diff] [blame] | 952 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 953 | if (seq) { |
| 954 | struct gfs2_glock_iter *gi = seq->private; |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 955 | vsprintf(gi->string, fmt, args); |
Steven Whitehouse | ba1ddcb | 2012-06-08 11:16:22 +0100 | [diff] [blame] | 956 | seq_puts(seq, gi->string); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 957 | } else { |
Joe Perches | 5e69069 | 2010-11-09 16:35:20 -0800 | [diff] [blame] | 958 | vaf.fmt = fmt; |
| 959 | vaf.va = &args; |
| 960 | |
| 961 | printk(KERN_ERR " %pV", &vaf); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 962 | } |
Joe Perches | 5e69069 | 2010-11-09 16:35:20 -0800 | [diff] [blame] | 963 | |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 964 | va_end(args); |
| 965 | } |
| 966 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 967 | /** |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 968 | * add_to_queue - Add a holder to the wait queue (but look for recursion) |
| 969 | * @gh: the holder structure to add |
| 970 | * |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 971 | * Eventually we should move the recursive locking trap to a |
| 972 | * debugging option or something like that. This is the fast |
| 973 | * path and needs to have the minimum number of distractions. |
| 974 | * |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 975 | */ |
| 976 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 977 | static inline void add_to_queue(struct gfs2_holder *gh) |
Harvey Harrison | 55ba474 | 2008-10-24 11:31:12 -0700 | [diff] [blame] | 978 | __releases(&gl->gl_spin) |
| 979 | __acquires(&gl->gl_spin) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 980 | { |
| 981 | struct gfs2_glock *gl = gh->gh_gl; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 982 | struct gfs2_sbd *sdp = gl->gl_sbd; |
| 983 | struct list_head *insert_pt = NULL; |
| 984 | struct gfs2_holder *gh2; |
| 985 | int try_lock = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 986 | |
Pavel Emelyanov | b1e058d | 2008-02-07 00:13:19 -0800 | [diff] [blame] | 987 | BUG_ON(gh->gh_owner_pid == NULL); |
Steven Whitehouse | fee852e | 2007-01-17 15:33:23 +0000 | [diff] [blame] | 988 | if (test_and_set_bit(HIF_WAIT, &gh->gh_iflags)) |
| 989 | BUG(); |
Steven Whitehouse | 190562b | 2006-04-20 16:57:23 -0400 | [diff] [blame] | 990 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 991 | if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) { |
| 992 | if (test_bit(GLF_LOCK, &gl->gl_flags)) |
| 993 | try_lock = 1; |
| 994 | if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags)) |
| 995 | goto fail; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 996 | } |
| 997 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 998 | list_for_each_entry(gh2, &gl->gl_holders, gh_list) { |
| 999 | if (unlikely(gh2->gh_owner_pid == gh->gh_owner_pid && |
| 1000 | (gh->gh_gl->gl_ops->go_type != LM_TYPE_FLOCK))) |
| 1001 | goto trap_recursive; |
| 1002 | if (try_lock && |
| 1003 | !(gh2->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) && |
| 1004 | !may_grant(gl, gh)) { |
| 1005 | fail: |
| 1006 | gh->gh_error = GLR_TRYFAILED; |
| 1007 | gfs2_holder_wake(gh); |
| 1008 | return; |
| 1009 | } |
| 1010 | if (test_bit(HIF_HOLDER, &gh2->gh_iflags)) |
| 1011 | continue; |
| 1012 | if (unlikely((gh->gh_flags & LM_FLAG_PRIORITY) && !insert_pt)) |
| 1013 | insert_pt = &gh2->gh_list; |
| 1014 | } |
Steven Whitehouse | 7b5e3d5 | 2010-09-03 09:39:20 +0100 | [diff] [blame] | 1015 | set_bit(GLF_QUEUED, &gl->gl_flags); |
Steven Whitehouse | edae38a | 2011-01-31 09:38:12 +0000 | [diff] [blame] | 1016 | trace_gfs2_glock_queue(gh, 1); |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 1017 | gfs2_glstats_inc(gl, GFS2_LKS_QCOUNT); |
| 1018 | gfs2_sbstats_inc(gl, GFS2_LKS_QCOUNT); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1019 | if (likely(insert_pt == NULL)) { |
| 1020 | list_add_tail(&gh->gh_list, &gl->gl_holders); |
| 1021 | if (unlikely(gh->gh_flags & LM_FLAG_PRIORITY)) |
| 1022 | goto do_cancel; |
| 1023 | return; |
| 1024 | } |
| 1025 | list_add_tail(&gh->gh_list, insert_pt); |
| 1026 | do_cancel: |
| 1027 | gh = list_entry(gl->gl_holders.next, struct gfs2_holder, gh_list); |
| 1028 | if (!(gh->gh_flags & LM_FLAG_PRIORITY)) { |
| 1029 | spin_unlock(&gl->gl_spin); |
Steven Whitehouse | 048bca2 | 2008-05-23 14:46:04 +0100 | [diff] [blame] | 1030 | if (sdp->sd_lockstruct.ls_ops->lm_cancel) |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1031 | sdp->sd_lockstruct.ls_ops->lm_cancel(gl); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1032 | spin_lock(&gl->gl_spin); |
| 1033 | } |
| 1034 | return; |
| 1035 | |
| 1036 | trap_recursive: |
| 1037 | print_symbol(KERN_ERR "original: %s\n", gh2->gh_ip); |
| 1038 | printk(KERN_ERR "pid: %d\n", pid_nr(gh2->gh_owner_pid)); |
| 1039 | printk(KERN_ERR "lock type: %d req lock state : %d\n", |
| 1040 | gh2->gh_gl->gl_name.ln_type, gh2->gh_state); |
| 1041 | print_symbol(KERN_ERR "new: %s\n", gh->gh_ip); |
| 1042 | printk(KERN_ERR "pid: %d\n", pid_nr(gh->gh_owner_pid)); |
| 1043 | printk(KERN_ERR "lock type: %d req lock state : %d\n", |
| 1044 | gh->gh_gl->gl_name.ln_type, gh->gh_state); |
| 1045 | __dump_glock(NULL, gl); |
| 1046 | BUG(); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1047 | } |
| 1048 | |
| 1049 | /** |
| 1050 | * gfs2_glock_nq - enqueue a struct gfs2_holder onto a glock (acquire a glock) |
| 1051 | * @gh: the holder structure |
| 1052 | * |
| 1053 | * if (gh->gh_flags & GL_ASYNC), this never returns an error |
| 1054 | * |
| 1055 | * Returns: 0, GLR_TRYFAILED, or errno on failure |
| 1056 | */ |
| 1057 | |
| 1058 | int gfs2_glock_nq(struct gfs2_holder *gh) |
| 1059 | { |
| 1060 | struct gfs2_glock *gl = gh->gh_gl; |
| 1061 | struct gfs2_sbd *sdp = gl->gl_sbd; |
| 1062 | int error = 0; |
| 1063 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1064 | if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags))) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1065 | return -EIO; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1066 | |
Steven Whitehouse | f42ab08 | 2011-04-14 16:50:31 +0100 | [diff] [blame] | 1067 | if (test_bit(GLF_LRU, &gl->gl_flags)) |
| 1068 | gfs2_glock_remove_from_lru(gl); |
| 1069 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1070 | spin_lock(&gl->gl_spin); |
| 1071 | add_to_queue(gh); |
Steven Whitehouse | 0809f6e | 2010-08-02 10:15:17 +0100 | [diff] [blame] | 1072 | if ((LM_FLAG_NOEXP & gh->gh_flags) && |
| 1073 | test_and_clear_bit(GLF_FROZEN, &gl->gl_flags)) |
| 1074 | set_bit(GLF_REPLY_PENDING, &gl->gl_flags); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1075 | run_queue(gl, 1); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1076 | spin_unlock(&gl->gl_spin); |
| 1077 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1078 | if (!(gh->gh_flags & GL_ASYNC)) |
| 1079 | error = gfs2_glock_wait(gh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1080 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1081 | return error; |
| 1082 | } |
| 1083 | |
| 1084 | /** |
| 1085 | * gfs2_glock_poll - poll to see if an async request has been completed |
| 1086 | * @gh: the holder |
| 1087 | * |
| 1088 | * Returns: 1 if the request is ready to be gfs2_glock_wait()ed on |
| 1089 | */ |
| 1090 | |
| 1091 | int gfs2_glock_poll(struct gfs2_holder *gh) |
| 1092 | { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1093 | return test_bit(HIF_WAIT, &gh->gh_iflags) ? 0 : 1; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1094 | } |
| 1095 | |
| 1096 | /** |
| 1097 | * gfs2_glock_dq - dequeue a struct gfs2_holder from a glock (release a glock) |
| 1098 | * @gh: the glock holder |
| 1099 | * |
| 1100 | */ |
| 1101 | |
| 1102 | void gfs2_glock_dq(struct gfs2_holder *gh) |
| 1103 | { |
| 1104 | struct gfs2_glock *gl = gh->gh_gl; |
Steven Whitehouse | 8fb4b53 | 2006-08-30 09:30:00 -0400 | [diff] [blame] | 1105 | const struct gfs2_glock_operations *glops = gl->gl_ops; |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 1106 | unsigned delay = 0; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1107 | int fast_path = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1108 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1109 | spin_lock(&gl->gl_spin); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1110 | if (gh->gh_flags & GL_NOCACHE) |
Steven Whitehouse | 97cc102 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 1111 | handle_callback(gl, LM_ST_UNLOCKED, 0); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1112 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1113 | list_del_init(&gh->gh_list); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1114 | if (find_first_holder(gl) == NULL) { |
Steven Whitehouse | 3042a2c | 2007-11-02 08:39:34 +0000 | [diff] [blame] | 1115 | if (glops->go_unlock) { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1116 | GLOCK_BUG_ON(gl, test_and_set_bit(GLF_LOCK, &gl->gl_flags)); |
Steven Whitehouse | 3042a2c | 2007-11-02 08:39:34 +0000 | [diff] [blame] | 1117 | spin_unlock(&gl->gl_spin); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1118 | glops->go_unlock(gh); |
Steven Whitehouse | 3042a2c | 2007-11-02 08:39:34 +0000 | [diff] [blame] | 1119 | spin_lock(&gl->gl_spin); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1120 | clear_bit(GLF_LOCK, &gl->gl_flags); |
Steven Whitehouse | 3042a2c | 2007-11-02 08:39:34 +0000 | [diff] [blame] | 1121 | } |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1122 | if (list_empty(&gl->gl_holders) && |
| 1123 | !test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) && |
| 1124 | !test_bit(GLF_DEMOTE, &gl->gl_flags)) |
| 1125 | fast_path = 1; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1126 | } |
Steven Whitehouse | f42ab08 | 2011-04-14 16:50:31 +0100 | [diff] [blame] | 1127 | if (!test_bit(GLF_LFLUSH, &gl->gl_flags)) |
| 1128 | __gfs2_glock_schedule_for_reclaim(gl); |
Steven Whitehouse | 6399777 | 2009-06-12 08:49:20 +0100 | [diff] [blame] | 1129 | trace_gfs2_glock_queue(gh, 0); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1130 | spin_unlock(&gl->gl_spin); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1131 | if (likely(fast_path)) |
| 1132 | return; |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 1133 | |
| 1134 | gfs2_glock_hold(gl); |
| 1135 | if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) && |
Bob Peterson | 7cf8dcd | 2011-06-15 11:41:48 -0400 | [diff] [blame] | 1136 | !test_bit(GLF_DEMOTE, &gl->gl_flags) && |
| 1137 | gl->gl_name.ln_type == LM_TYPE_INODE) |
| 1138 | delay = gl->gl_hold_time; |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 1139 | if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0) |
| 1140 | gfs2_glock_put(gl); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1141 | } |
| 1142 | |
Abhijith Das | d93cfa9 | 2007-06-11 08:22:32 +0100 | [diff] [blame] | 1143 | void gfs2_glock_dq_wait(struct gfs2_holder *gh) |
| 1144 | { |
| 1145 | struct gfs2_glock *gl = gh->gh_gl; |
| 1146 | gfs2_glock_dq(gh); |
| 1147 | wait_on_demote(gl); |
| 1148 | } |
| 1149 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1150 | /** |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1151 | * gfs2_glock_dq_uninit - dequeue a holder from a glock and initialize it |
| 1152 | * @gh: the holder structure |
| 1153 | * |
| 1154 | */ |
| 1155 | |
| 1156 | void gfs2_glock_dq_uninit(struct gfs2_holder *gh) |
| 1157 | { |
| 1158 | gfs2_glock_dq(gh); |
| 1159 | gfs2_holder_uninit(gh); |
| 1160 | } |
| 1161 | |
| 1162 | /** |
| 1163 | * gfs2_glock_nq_num - acquire a glock based on lock number |
| 1164 | * @sdp: the filesystem |
| 1165 | * @number: the lock number |
| 1166 | * @glops: the glock operations for the type of glock |
| 1167 | * @state: the state to acquire the glock in |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1168 | * @flags: modifier flags for the acquisition |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1169 | * @gh: the struct gfs2_holder |
| 1170 | * |
| 1171 | * Returns: errno |
| 1172 | */ |
| 1173 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1174 | int gfs2_glock_nq_num(struct gfs2_sbd *sdp, u64 number, |
Steven Whitehouse | 8fb4b53 | 2006-08-30 09:30:00 -0400 | [diff] [blame] | 1175 | const struct gfs2_glock_operations *glops, |
| 1176 | unsigned int state, int flags, struct gfs2_holder *gh) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1177 | { |
| 1178 | struct gfs2_glock *gl; |
| 1179 | int error; |
| 1180 | |
| 1181 | error = gfs2_glock_get(sdp, number, glops, CREATE, &gl); |
| 1182 | if (!error) { |
| 1183 | error = gfs2_glock_nq_init(gl, state, flags, gh); |
| 1184 | gfs2_glock_put(gl); |
| 1185 | } |
| 1186 | |
| 1187 | return error; |
| 1188 | } |
| 1189 | |
| 1190 | /** |
| 1191 | * glock_compare - Compare two struct gfs2_glock structures for sorting |
| 1192 | * @arg_a: the first structure |
| 1193 | * @arg_b: the second structure |
| 1194 | * |
| 1195 | */ |
| 1196 | |
| 1197 | static int glock_compare(const void *arg_a, const void *arg_b) |
| 1198 | { |
Steven Whitehouse | a5e08a9 | 2006-09-09 17:07:05 -0400 | [diff] [blame] | 1199 | const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a; |
| 1200 | const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b; |
| 1201 | const struct lm_lockname *a = &gh_a->gh_gl->gl_name; |
| 1202 | const struct lm_lockname *b = &gh_b->gh_gl->gl_name; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1203 | |
| 1204 | if (a->ln_number > b->ln_number) |
Steven Whitehouse | a5e08a9 | 2006-09-09 17:07:05 -0400 | [diff] [blame] | 1205 | return 1; |
| 1206 | if (a->ln_number < b->ln_number) |
| 1207 | return -1; |
Steven Whitehouse | 1c0f487 | 2007-01-22 12:10:39 -0500 | [diff] [blame] | 1208 | BUG_ON(gh_a->gh_gl->gl_ops->go_type == gh_b->gh_gl->gl_ops->go_type); |
Steven Whitehouse | a5e08a9 | 2006-09-09 17:07:05 -0400 | [diff] [blame] | 1209 | return 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1210 | } |
| 1211 | |
| 1212 | /** |
| 1213 | * nq_m_sync - synchonously acquire more than one glock in deadlock free order |
| 1214 | * @num_gh: the number of structures |
| 1215 | * @ghs: an array of struct gfs2_holder structures |
| 1216 | * |
| 1217 | * Returns: 0 on success (all glocks acquired), |
| 1218 | * errno on failure (no glocks acquired) |
| 1219 | */ |
| 1220 | |
| 1221 | static int nq_m_sync(unsigned int num_gh, struct gfs2_holder *ghs, |
| 1222 | struct gfs2_holder **p) |
| 1223 | { |
| 1224 | unsigned int x; |
| 1225 | int error = 0; |
| 1226 | |
| 1227 | for (x = 0; x < num_gh; x++) |
| 1228 | p[x] = &ghs[x]; |
| 1229 | |
| 1230 | sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare, NULL); |
| 1231 | |
| 1232 | for (x = 0; x < num_gh; x++) { |
| 1233 | p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC); |
| 1234 | |
| 1235 | error = gfs2_glock_nq(p[x]); |
| 1236 | if (error) { |
| 1237 | while (x--) |
| 1238 | gfs2_glock_dq(p[x]); |
| 1239 | break; |
| 1240 | } |
| 1241 | } |
| 1242 | |
| 1243 | return error; |
| 1244 | } |
| 1245 | |
| 1246 | /** |
| 1247 | * gfs2_glock_nq_m - acquire multiple glocks |
| 1248 | * @num_gh: the number of structures |
| 1249 | * @ghs: an array of struct gfs2_holder structures |
| 1250 | * |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1251 | * |
| 1252 | * Returns: 0 on success (all glocks acquired), |
| 1253 | * errno on failure (no glocks acquired) |
| 1254 | */ |
| 1255 | |
| 1256 | int gfs2_glock_nq_m(unsigned int num_gh, struct gfs2_holder *ghs) |
| 1257 | { |
Steven Whitehouse | eaf5bd3 | 2007-06-19 15:38:17 +0100 | [diff] [blame] | 1258 | struct gfs2_holder *tmp[4]; |
| 1259 | struct gfs2_holder **pph = tmp; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1260 | int error = 0; |
| 1261 | |
Steven Whitehouse | eaf5bd3 | 2007-06-19 15:38:17 +0100 | [diff] [blame] | 1262 | switch(num_gh) { |
| 1263 | case 0: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1264 | return 0; |
Steven Whitehouse | eaf5bd3 | 2007-06-19 15:38:17 +0100 | [diff] [blame] | 1265 | case 1: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1266 | ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC); |
| 1267 | return gfs2_glock_nq(ghs); |
Steven Whitehouse | eaf5bd3 | 2007-06-19 15:38:17 +0100 | [diff] [blame] | 1268 | default: |
| 1269 | if (num_gh <= 4) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1270 | break; |
Steven Whitehouse | eaf5bd3 | 2007-06-19 15:38:17 +0100 | [diff] [blame] | 1271 | pph = kmalloc(num_gh * sizeof(struct gfs2_holder *), GFP_NOFS); |
| 1272 | if (!pph) |
| 1273 | return -ENOMEM; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1274 | } |
| 1275 | |
Steven Whitehouse | eaf5bd3 | 2007-06-19 15:38:17 +0100 | [diff] [blame] | 1276 | error = nq_m_sync(num_gh, ghs, pph); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1277 | |
Steven Whitehouse | eaf5bd3 | 2007-06-19 15:38:17 +0100 | [diff] [blame] | 1278 | if (pph != tmp) |
| 1279 | kfree(pph); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1280 | |
| 1281 | return error; |
| 1282 | } |
| 1283 | |
| 1284 | /** |
| 1285 | * gfs2_glock_dq_m - release multiple glocks |
| 1286 | * @num_gh: the number of structures |
| 1287 | * @ghs: an array of struct gfs2_holder structures |
| 1288 | * |
| 1289 | */ |
| 1290 | |
| 1291 | void gfs2_glock_dq_m(unsigned int num_gh, struct gfs2_holder *ghs) |
| 1292 | { |
Bob Peterson | fa1bbde | 2011-03-10 11:41:57 -0500 | [diff] [blame] | 1293 | while (num_gh--) |
| 1294 | gfs2_glock_dq(&ghs[num_gh]); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1295 | } |
| 1296 | |
| 1297 | /** |
| 1298 | * gfs2_glock_dq_uninit_m - release multiple glocks |
| 1299 | * @num_gh: the number of structures |
| 1300 | * @ghs: an array of struct gfs2_holder structures |
| 1301 | * |
| 1302 | */ |
| 1303 | |
| 1304 | void gfs2_glock_dq_uninit_m(unsigned int num_gh, struct gfs2_holder *ghs) |
| 1305 | { |
Bob Peterson | fa1bbde | 2011-03-10 11:41:57 -0500 | [diff] [blame] | 1306 | while (num_gh--) |
| 1307 | gfs2_glock_dq_uninit(&ghs[num_gh]); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1308 | } |
| 1309 | |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1310 | void gfs2_glock_cb(struct gfs2_glock *gl, unsigned int state) |
Steven Whitehouse | da755fd | 2008-01-30 15:34:04 +0000 | [diff] [blame] | 1311 | { |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 1312 | unsigned long delay = 0; |
| 1313 | unsigned long holdtime; |
| 1314 | unsigned long now = jiffies; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1315 | |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1316 | gfs2_glock_hold(gl); |
Bob Peterson | 7cf8dcd | 2011-06-15 11:41:48 -0400 | [diff] [blame] | 1317 | holdtime = gl->gl_tchange + gl->gl_hold_time; |
| 1318 | if (test_bit(GLF_QUEUED, &gl->gl_flags) && |
| 1319 | gl->gl_name.ln_type == LM_TYPE_INODE) { |
Steven Whitehouse | 7b5e3d5 | 2010-09-03 09:39:20 +0100 | [diff] [blame] | 1320 | if (time_before(now, holdtime)) |
| 1321 | delay = holdtime - now; |
| 1322 | if (test_bit(GLF_REPLY_PENDING, &gl->gl_flags)) |
Bob Peterson | 7cf8dcd | 2011-06-15 11:41:48 -0400 | [diff] [blame] | 1323 | delay = gl->gl_hold_time; |
Steven Whitehouse | 7b5e3d5 | 2010-09-03 09:39:20 +0100 | [diff] [blame] | 1324 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1325 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1326 | spin_lock(&gl->gl_spin); |
Steven Whitehouse | 97cc102 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 1327 | handle_callback(gl, state, delay); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1328 | spin_unlock(&gl->gl_spin); |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 1329 | if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0) |
| 1330 | gfs2_glock_put(gl); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1331 | } |
| 1332 | |
| 1333 | /** |
Steven Whitehouse | 0809f6e | 2010-08-02 10:15:17 +0100 | [diff] [blame] | 1334 | * gfs2_should_freeze - Figure out if glock should be frozen |
| 1335 | * @gl: The glock in question |
| 1336 | * |
| 1337 | * Glocks are not frozen if (a) the result of the dlm operation is |
| 1338 | * an error, (b) the locking operation was an unlock operation or |
| 1339 | * (c) if there is a "noexp" flagged request anywhere in the queue |
| 1340 | * |
| 1341 | * Returns: 1 if freezing should occur, 0 otherwise |
| 1342 | */ |
| 1343 | |
| 1344 | static int gfs2_should_freeze(const struct gfs2_glock *gl) |
| 1345 | { |
| 1346 | const struct gfs2_holder *gh; |
| 1347 | |
| 1348 | if (gl->gl_reply & ~LM_OUT_ST_MASK) |
| 1349 | return 0; |
| 1350 | if (gl->gl_target == LM_ST_UNLOCKED) |
| 1351 | return 0; |
| 1352 | |
| 1353 | list_for_each_entry(gh, &gl->gl_holders, gh_list) { |
| 1354 | if (test_bit(HIF_HOLDER, &gh->gh_iflags)) |
| 1355 | continue; |
| 1356 | if (LM_FLAG_NOEXP & gh->gh_flags) |
| 1357 | return 0; |
| 1358 | } |
| 1359 | |
| 1360 | return 1; |
| 1361 | } |
| 1362 | |
| 1363 | /** |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1364 | * gfs2_glock_complete - Callback used by locking |
| 1365 | * @gl: Pointer to the glock |
| 1366 | * @ret: The return value from the dlm |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1367 | * |
Steven Whitehouse | 47a2538 | 2010-11-30 15:49:31 +0000 | [diff] [blame] | 1368 | * The gl_reply field is under the gl_spin lock so that it is ok |
| 1369 | * to use a bitfield shared with other glock state fields. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1370 | */ |
| 1371 | |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1372 | void gfs2_glock_complete(struct gfs2_glock *gl, int ret) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1373 | { |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1374 | struct lm_lockstruct *ls = &gl->gl_sbd->sd_lockstruct; |
Steven Whitehouse | 0809f6e | 2010-08-02 10:15:17 +0100 | [diff] [blame] | 1375 | |
Steven Whitehouse | 47a2538 | 2010-11-30 15:49:31 +0000 | [diff] [blame] | 1376 | spin_lock(&gl->gl_spin); |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1377 | gl->gl_reply = ret; |
Steven Whitehouse | 0809f6e | 2010-08-02 10:15:17 +0100 | [diff] [blame] | 1378 | |
David Teigland | e0c2a9a | 2012-01-09 17:18:05 -0500 | [diff] [blame] | 1379 | if (unlikely(test_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags))) { |
Steven Whitehouse | 0809f6e | 2010-08-02 10:15:17 +0100 | [diff] [blame] | 1380 | if (gfs2_should_freeze(gl)) { |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1381 | set_bit(GLF_FROZEN, &gl->gl_flags); |
Steven Whitehouse | 0809f6e | 2010-08-02 10:15:17 +0100 | [diff] [blame] | 1382 | spin_unlock(&gl->gl_spin); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1383 | return; |
Steven Whitehouse | 0809f6e | 2010-08-02 10:15:17 +0100 | [diff] [blame] | 1384 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1385 | } |
Steven Whitehouse | 47a2538 | 2010-11-30 15:49:31 +0000 | [diff] [blame] | 1386 | |
| 1387 | spin_unlock(&gl->gl_spin); |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1388 | set_bit(GLF_REPLY_PENDING, &gl->gl_flags); |
Steven Whitehouse | 47a2538 | 2010-11-30 15:49:31 +0000 | [diff] [blame] | 1389 | smp_wmb(); |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1390 | gfs2_glock_hold(gl); |
| 1391 | if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0) |
| 1392 | gfs2_glock_put(gl); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1393 | } |
| 1394 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1395 | |
Ying Han | 1495f23 | 2011-05-24 17:12:27 -0700 | [diff] [blame] | 1396 | static int gfs2_shrink_glock_memory(struct shrinker *shrink, |
| 1397 | struct shrink_control *sc) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1398 | { |
| 1399 | struct gfs2_glock *gl; |
Steven Whitehouse | 97cc102 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 1400 | int may_demote; |
| 1401 | int nr_skipped = 0; |
Ying Han | 1495f23 | 2011-05-24 17:12:27 -0700 | [diff] [blame] | 1402 | int nr = sc->nr_to_scan; |
| 1403 | gfp_t gfp_mask = sc->gfp_mask; |
Steven Whitehouse | 97cc102 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 1404 | LIST_HEAD(skipped); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1405 | |
Steven Whitehouse | 97cc102 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 1406 | if (nr == 0) |
| 1407 | goto out; |
| 1408 | |
| 1409 | if (!(gfp_mask & __GFP_FS)) |
| 1410 | return -1; |
| 1411 | |
| 1412 | spin_lock(&lru_lock); |
| 1413 | while(nr && !list_empty(&lru_list)) { |
| 1414 | gl = list_entry(lru_list.next, struct gfs2_glock, gl_lru); |
| 1415 | list_del_init(&gl->gl_lru); |
Steven Whitehouse | 627c10b | 2011-04-14 14:09:52 +0100 | [diff] [blame] | 1416 | clear_bit(GLF_LRU, &gl->gl_flags); |
Steven Whitehouse | 97cc102 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 1417 | atomic_dec(&lru_count); |
| 1418 | |
| 1419 | /* Test for being demotable */ |
| 1420 | if (!test_and_set_bit(GLF_LOCK, &gl->gl_flags)) { |
| 1421 | gfs2_glock_hold(gl); |
Steven Whitehouse | 97cc102 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 1422 | spin_unlock(&lru_lock); |
| 1423 | spin_lock(&gl->gl_spin); |
| 1424 | may_demote = demote_ok(gl); |
Steven Whitehouse | 97cc102 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 1425 | if (may_demote) { |
| 1426 | handle_callback(gl, LM_ST_UNLOCKED, 0); |
| 1427 | nr--; |
Steven Whitehouse | 97cc102 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 1428 | } |
Steven Whitehouse | 7e71c55 | 2009-09-22 10:56:16 +0100 | [diff] [blame] | 1429 | clear_bit(GLF_LOCK, &gl->gl_flags); |
| 1430 | smp_mb__after_clear_bit(); |
Steven Whitehouse | 2163b1e | 2009-06-25 16:30:26 +0100 | [diff] [blame] | 1431 | if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0) |
Benjamin Marzinski | b94a170 | 2009-07-23 18:52:34 -0500 | [diff] [blame] | 1432 | gfs2_glock_put_nolock(gl); |
| 1433 | spin_unlock(&gl->gl_spin); |
Steven Whitehouse | 97cc102 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 1434 | spin_lock(&lru_lock); |
Steven Whitehouse | 2163b1e | 2009-06-25 16:30:26 +0100 | [diff] [blame] | 1435 | continue; |
Steven Whitehouse | 97cc102 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 1436 | } |
Steven Whitehouse | 2163b1e | 2009-06-25 16:30:26 +0100 | [diff] [blame] | 1437 | nr_skipped++; |
| 1438 | list_add(&gl->gl_lru, &skipped); |
Steven Whitehouse | 627c10b | 2011-04-14 14:09:52 +0100 | [diff] [blame] | 1439 | set_bit(GLF_LRU, &gl->gl_flags); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1440 | } |
Steven Whitehouse | 97cc102 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 1441 | list_splice(&skipped, &lru_list); |
| 1442 | atomic_add(nr_skipped, &lru_count); |
| 1443 | spin_unlock(&lru_lock); |
| 1444 | out: |
| 1445 | return (atomic_read(&lru_count) / 100) * sysctl_vfs_cache_pressure; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1446 | } |
| 1447 | |
Steven Whitehouse | 97cc102 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 1448 | static struct shrinker glock_shrinker = { |
| 1449 | .shrink = gfs2_shrink_glock_memory, |
| 1450 | .seeks = DEFAULT_SEEKS, |
| 1451 | }; |
| 1452 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1453 | /** |
| 1454 | * examine_bucket - Call a function for glock in a hash bucket |
| 1455 | * @examiner: the function |
| 1456 | * @sdp: the filesystem |
| 1457 | * @bucket: the bucket |
| 1458 | * |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1459 | */ |
| 1460 | |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1461 | static void examine_bucket(glock_examiner examiner, const struct gfs2_sbd *sdp, |
Steven Whitehouse | 37b2fa6 | 2006-09-08 13:35:56 -0400 | [diff] [blame] | 1462 | unsigned int hash) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1463 | { |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1464 | struct gfs2_glock *gl; |
| 1465 | struct hlist_bl_head *head = &gl_hash_table[hash]; |
| 1466 | struct hlist_bl_node *pos; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1467 | |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1468 | rcu_read_lock(); |
| 1469 | hlist_bl_for_each_entry_rcu(gl, pos, head, gl_list) { |
| 1470 | if ((gl->gl_sbd == sdp) && atomic_read(&gl->gl_ref)) |
Steven Whitehouse | 2426443 | 2006-09-11 21:40:30 -0400 | [diff] [blame] | 1471 | examiner(gl); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1472 | } |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1473 | rcu_read_unlock(); |
Steven Whitehouse | 8fbbfd2 | 2007-08-01 13:57:10 +0100 | [diff] [blame] | 1474 | cond_resched(); |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1475 | } |
| 1476 | |
| 1477 | static void glock_hash_walk(glock_examiner examiner, const struct gfs2_sbd *sdp) |
| 1478 | { |
| 1479 | unsigned x; |
| 1480 | |
| 1481 | for (x = 0; x < GFS2_GL_HASH_SIZE; x++) |
| 1482 | examine_bucket(examiner, sdp, x); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1483 | } |
| 1484 | |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1485 | |
| 1486 | /** |
| 1487 | * thaw_glock - thaw out a glock which has an unprocessed reply waiting |
| 1488 | * @gl: The glock to thaw |
| 1489 | * |
| 1490 | * N.B. When we freeze a glock, we leave a ref to the glock outstanding, |
| 1491 | * so this has to result in the ref count being dropped by one. |
| 1492 | */ |
| 1493 | |
| 1494 | static void thaw_glock(struct gfs2_glock *gl) |
| 1495 | { |
| 1496 | if (!test_and_clear_bit(GLF_FROZEN, &gl->gl_flags)) |
| 1497 | return; |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1498 | set_bit(GLF_REPLY_PENDING, &gl->gl_flags); |
| 1499 | gfs2_glock_hold(gl); |
| 1500 | if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0) |
| 1501 | gfs2_glock_put(gl); |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1502 | } |
| 1503 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1504 | /** |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1505 | * clear_glock - look at a glock and see if we can free it from glock cache |
| 1506 | * @gl: the glock to look at |
| 1507 | * |
| 1508 | */ |
| 1509 | |
| 1510 | static void clear_glock(struct gfs2_glock *gl) |
| 1511 | { |
Steven Whitehouse | f42ab08 | 2011-04-14 16:50:31 +0100 | [diff] [blame] | 1512 | gfs2_glock_remove_from_lru(gl); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1513 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1514 | spin_lock(&gl->gl_spin); |
Steven Whitehouse | c741c45 | 2010-09-29 14:20:52 +0100 | [diff] [blame] | 1515 | if (gl->gl_state != LM_ST_UNLOCKED) |
Steven Whitehouse | 97cc102 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 1516 | handle_callback(gl, LM_ST_UNLOCKED, 0); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1517 | spin_unlock(&gl->gl_spin); |
| 1518 | gfs2_glock_hold(gl); |
| 1519 | if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0) |
| 1520 | gfs2_glock_put(gl); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1521 | } |
| 1522 | |
| 1523 | /** |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1524 | * gfs2_glock_thaw - Thaw any frozen glocks |
| 1525 | * @sdp: The super block |
| 1526 | * |
| 1527 | */ |
| 1528 | |
| 1529 | void gfs2_glock_thaw(struct gfs2_sbd *sdp) |
| 1530 | { |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1531 | glock_hash_walk(thaw_glock, sdp); |
| 1532 | } |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1533 | |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1534 | static int dump_glock(struct seq_file *seq, struct gfs2_glock *gl) |
| 1535 | { |
| 1536 | int ret; |
| 1537 | spin_lock(&gl->gl_spin); |
| 1538 | ret = __dump_glock(seq, gl); |
| 1539 | spin_unlock(&gl->gl_spin); |
| 1540 | return ret; |
| 1541 | } |
| 1542 | |
| 1543 | static void dump_glock_func(struct gfs2_glock *gl) |
| 1544 | { |
| 1545 | dump_glock(NULL, gl); |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1546 | } |
| 1547 | |
| 1548 | /** |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1549 | * gfs2_gl_hash_clear - Empty out the glock hash table |
| 1550 | * @sdp: the filesystem |
| 1551 | * @wait: wait until it's all gone |
| 1552 | * |
Steven Whitehouse | 1bdad60 | 2008-06-03 14:09:53 +0100 | [diff] [blame] | 1553 | * Called when unmounting the filesystem. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1554 | */ |
| 1555 | |
Steven Whitehouse | fefc03b | 2008-12-19 15:32:06 +0000 | [diff] [blame] | 1556 | void gfs2_gl_hash_clear(struct gfs2_sbd *sdp) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1557 | { |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1558 | glock_hash_walk(clear_glock, sdp); |
Steven Whitehouse | 8f05228 | 2010-01-29 15:21:27 +0000 | [diff] [blame] | 1559 | flush_workqueue(glock_workqueue); |
| 1560 | wait_event(sdp->sd_glock_wait, atomic_read(&sdp->sd_glock_disposal) == 0); |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1561 | glock_hash_walk(dump_glock_func, sdp); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1562 | } |
| 1563 | |
Steven Whitehouse | 813e0c4 | 2008-11-18 13:38:48 +0000 | [diff] [blame] | 1564 | void gfs2_glock_finish_truncate(struct gfs2_inode *ip) |
| 1565 | { |
| 1566 | struct gfs2_glock *gl = ip->i_gl; |
| 1567 | int ret; |
| 1568 | |
| 1569 | ret = gfs2_truncatei_resume(ip); |
| 1570 | gfs2_assert_withdraw(gl->gl_sbd, ret == 0); |
| 1571 | |
| 1572 | spin_lock(&gl->gl_spin); |
| 1573 | clear_bit(GLF_LOCK, &gl->gl_flags); |
| 1574 | run_queue(gl, 1); |
| 1575 | spin_unlock(&gl->gl_spin); |
| 1576 | } |
| 1577 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1578 | static const char *state2str(unsigned state) |
Robert Peterson | 04b933f | 2007-03-23 17:05:15 -0500 | [diff] [blame] | 1579 | { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1580 | switch(state) { |
| 1581 | case LM_ST_UNLOCKED: |
| 1582 | return "UN"; |
| 1583 | case LM_ST_SHARED: |
| 1584 | return "SH"; |
| 1585 | case LM_ST_DEFERRED: |
| 1586 | return "DF"; |
| 1587 | case LM_ST_EXCLUSIVE: |
| 1588 | return "EX"; |
| 1589 | } |
| 1590 | return "??"; |
| 1591 | } |
Robert Peterson | 04b933f | 2007-03-23 17:05:15 -0500 | [diff] [blame] | 1592 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1593 | static const char *hflags2str(char *buf, unsigned flags, unsigned long iflags) |
| 1594 | { |
| 1595 | char *p = buf; |
| 1596 | if (flags & LM_FLAG_TRY) |
| 1597 | *p++ = 't'; |
| 1598 | if (flags & LM_FLAG_TRY_1CB) |
| 1599 | *p++ = 'T'; |
| 1600 | if (flags & LM_FLAG_NOEXP) |
| 1601 | *p++ = 'e'; |
| 1602 | if (flags & LM_FLAG_ANY) |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1603 | *p++ = 'A'; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1604 | if (flags & LM_FLAG_PRIORITY) |
| 1605 | *p++ = 'p'; |
| 1606 | if (flags & GL_ASYNC) |
| 1607 | *p++ = 'a'; |
| 1608 | if (flags & GL_EXACT) |
| 1609 | *p++ = 'E'; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1610 | if (flags & GL_NOCACHE) |
| 1611 | *p++ = 'c'; |
| 1612 | if (test_bit(HIF_HOLDER, &iflags)) |
| 1613 | *p++ = 'H'; |
| 1614 | if (test_bit(HIF_WAIT, &iflags)) |
| 1615 | *p++ = 'W'; |
| 1616 | if (test_bit(HIF_FIRST, &iflags)) |
| 1617 | *p++ = 'F'; |
| 1618 | *p = 0; |
| 1619 | return buf; |
Robert Peterson | 04b933f | 2007-03-23 17:05:15 -0500 | [diff] [blame] | 1620 | } |
| 1621 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1622 | /** |
| 1623 | * dump_holder - print information about a glock holder |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1624 | * @seq: the seq_file struct |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1625 | * @gh: the glock holder |
| 1626 | * |
| 1627 | * Returns: 0 on success, -ENOBUFS when we run out of space |
| 1628 | */ |
| 1629 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1630 | static int dump_holder(struct seq_file *seq, const struct gfs2_holder *gh) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1631 | { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1632 | struct task_struct *gh_owner = NULL; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1633 | char flags_buf[32]; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1634 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1635 | if (gh->gh_owner_pid) |
Pavel Emelyanov | b1e058d | 2008-02-07 00:13:19 -0800 | [diff] [blame] | 1636 | gh_owner = pid_task(gh->gh_owner_pid, PIDTYPE_PID); |
Joe Perches | cc18152 | 2010-11-05 16:12:36 -0700 | [diff] [blame] | 1637 | gfs2_print_dbg(seq, " H: s:%s f:%s e:%d p:%ld [%s] %pS\n", |
| 1638 | state2str(gh->gh_state), |
| 1639 | hflags2str(flags_buf, gh->gh_flags, gh->gh_iflags), |
| 1640 | gh->gh_error, |
| 1641 | gh->gh_owner_pid ? (long)pid_nr(gh->gh_owner_pid) : -1, |
| 1642 | gh_owner ? gh_owner->comm : "(ended)", |
| 1643 | (void *)gh->gh_ip); |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1644 | return 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1645 | } |
| 1646 | |
Steven Whitehouse | 627c10b | 2011-04-14 14:09:52 +0100 | [diff] [blame] | 1647 | static const char *gflags2str(char *buf, const struct gfs2_glock *gl) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1648 | { |
Steven Whitehouse | 627c10b | 2011-04-14 14:09:52 +0100 | [diff] [blame] | 1649 | const unsigned long *gflags = &gl->gl_flags; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1650 | char *p = buf; |
Steven Whitehouse | 627c10b | 2011-04-14 14:09:52 +0100 | [diff] [blame] | 1651 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1652 | if (test_bit(GLF_LOCK, gflags)) |
| 1653 | *p++ = 'l'; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1654 | if (test_bit(GLF_DEMOTE, gflags)) |
| 1655 | *p++ = 'D'; |
| 1656 | if (test_bit(GLF_PENDING_DEMOTE, gflags)) |
| 1657 | *p++ = 'd'; |
| 1658 | if (test_bit(GLF_DEMOTE_IN_PROGRESS, gflags)) |
| 1659 | *p++ = 'p'; |
| 1660 | if (test_bit(GLF_DIRTY, gflags)) |
| 1661 | *p++ = 'y'; |
| 1662 | if (test_bit(GLF_LFLUSH, gflags)) |
| 1663 | *p++ = 'f'; |
| 1664 | if (test_bit(GLF_INVALIDATE_IN_PROGRESS, gflags)) |
| 1665 | *p++ = 'i'; |
| 1666 | if (test_bit(GLF_REPLY_PENDING, gflags)) |
| 1667 | *p++ = 'r'; |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1668 | if (test_bit(GLF_INITIAL, gflags)) |
Steven Whitehouse | d8348de | 2009-02-05 10:12:38 +0000 | [diff] [blame] | 1669 | *p++ = 'I'; |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1670 | if (test_bit(GLF_FROZEN, gflags)) |
| 1671 | *p++ = 'F'; |
Steven Whitehouse | 7b5e3d5 | 2010-09-03 09:39:20 +0100 | [diff] [blame] | 1672 | if (test_bit(GLF_QUEUED, gflags)) |
| 1673 | *p++ = 'q'; |
Steven Whitehouse | 627c10b | 2011-04-14 14:09:52 +0100 | [diff] [blame] | 1674 | if (test_bit(GLF_LRU, gflags)) |
| 1675 | *p++ = 'L'; |
| 1676 | if (gl->gl_object) |
| 1677 | *p++ = 'o'; |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 1678 | if (test_bit(GLF_BLOCKING, gflags)) |
| 1679 | *p++ = 'b'; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1680 | *p = 0; |
| 1681 | return buf; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1682 | } |
| 1683 | |
| 1684 | /** |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1685 | * __dump_glock - print information about a glock |
| 1686 | * @seq: The seq_file struct |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1687 | * @gl: the glock |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1688 | * |
| 1689 | * The file format is as follows: |
| 1690 | * One line per object, capital letters are used to indicate objects |
| 1691 | * G = glock, I = Inode, R = rgrp, H = holder. Glocks are not indented, |
| 1692 | * other objects are indented by a single space and follow the glock to |
| 1693 | * which they are related. Fields are indicated by lower case letters |
| 1694 | * followed by a colon and the field value, except for strings which are in |
| 1695 | * [] so that its possible to see if they are composed of spaces for |
| 1696 | * example. The field's are n = number (id of the object), f = flags, |
| 1697 | * t = type, s = state, r = refcount, e = error, p = pid. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1698 | * |
| 1699 | * Returns: 0 on success, -ENOBUFS when we run out of space |
| 1700 | */ |
| 1701 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1702 | static int __dump_glock(struct seq_file *seq, const struct gfs2_glock *gl) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1703 | { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1704 | const struct gfs2_glock_operations *glops = gl->gl_ops; |
| 1705 | unsigned long long dtime; |
| 1706 | const struct gfs2_holder *gh; |
| 1707 | char gflags_buf[32]; |
| 1708 | int error = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1709 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1710 | dtime = jiffies - gl->gl_demote_time; |
| 1711 | dtime *= 1000000/HZ; /* demote time in uSec */ |
| 1712 | if (!test_bit(GLF_DEMOTE, &gl->gl_flags)) |
| 1713 | dtime = 0; |
Bob Peterson | 7cf8dcd | 2011-06-15 11:41:48 -0400 | [diff] [blame] | 1714 | 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 Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1715 | state2str(gl->gl_state), |
| 1716 | gl->gl_name.ln_type, |
| 1717 | (unsigned long long)gl->gl_name.ln_number, |
Steven Whitehouse | 627c10b | 2011-04-14 14:09:52 +0100 | [diff] [blame] | 1718 | gflags2str(gflags_buf, gl), |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1719 | state2str(gl->gl_target), |
| 1720 | state2str(gl->gl_demote_state), dtime, |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1721 | atomic_read(&gl->gl_ail_count), |
Steven Whitehouse | f42ab08 | 2011-04-14 16:50:31 +0100 | [diff] [blame] | 1722 | atomic_read(&gl->gl_revokes), |
Bob Peterson | 7cf8dcd | 2011-06-15 11:41:48 -0400 | [diff] [blame] | 1723 | atomic_read(&gl->gl_ref), gl->gl_hold_time); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1724 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1725 | list_for_each_entry(gh, &gl->gl_holders, gh_list) { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1726 | error = dump_holder(seq, gh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1727 | if (error) |
| 1728 | goto out; |
| 1729 | } |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1730 | if (gl->gl_state != LM_ST_UNLOCKED && glops->go_dump) |
| 1731 | error = glops->go_dump(seq, gl); |
Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 1732 | out: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1733 | return error; |
| 1734 | } |
| 1735 | |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 1736 | static int gfs2_glstats_seq_show(struct seq_file *seq, void *iter_ptr) |
| 1737 | { |
| 1738 | struct gfs2_glock *gl = iter_ptr; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1739 | |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 1740 | seq_printf(seq, "G: n:%u/%llx rtt:%lld/%lld rttb:%lld/%lld irt:%lld/%lld dcnt: %lld qcnt: %lld\n", |
| 1741 | gl->gl_name.ln_type, |
| 1742 | (unsigned long long)gl->gl_name.ln_number, |
| 1743 | (long long)gl->gl_stats.stats[GFS2_LKS_SRTT], |
| 1744 | (long long)gl->gl_stats.stats[GFS2_LKS_SRTTVAR], |
| 1745 | (long long)gl->gl_stats.stats[GFS2_LKS_SRTTB], |
| 1746 | (long long)gl->gl_stats.stats[GFS2_LKS_SRTTVARB], |
| 1747 | (long long)gl->gl_stats.stats[GFS2_LKS_SIRT], |
| 1748 | (long long)gl->gl_stats.stats[GFS2_LKS_SIRTVAR], |
| 1749 | (long long)gl->gl_stats.stats[GFS2_LKS_DCOUNT], |
| 1750 | (long long)gl->gl_stats.stats[GFS2_LKS_QCOUNT]); |
| 1751 | return 0; |
| 1752 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1753 | |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 1754 | static const char *gfs2_gltype[] = { |
| 1755 | "type", |
| 1756 | "reserved", |
| 1757 | "nondisk", |
| 1758 | "inode", |
| 1759 | "rgrp", |
| 1760 | "meta", |
| 1761 | "iopen", |
| 1762 | "flock", |
| 1763 | "plock", |
| 1764 | "quota", |
| 1765 | "journal", |
| 1766 | }; |
| 1767 | |
| 1768 | static const char *gfs2_stype[] = { |
| 1769 | [GFS2_LKS_SRTT] = "srtt", |
| 1770 | [GFS2_LKS_SRTTVAR] = "srttvar", |
| 1771 | [GFS2_LKS_SRTTB] = "srttb", |
| 1772 | [GFS2_LKS_SRTTVARB] = "srttvarb", |
| 1773 | [GFS2_LKS_SIRT] = "sirt", |
| 1774 | [GFS2_LKS_SIRTVAR] = "sirtvar", |
| 1775 | [GFS2_LKS_DCOUNT] = "dlm", |
| 1776 | [GFS2_LKS_QCOUNT] = "queue", |
| 1777 | }; |
| 1778 | |
| 1779 | #define GFS2_NR_SBSTATS (ARRAY_SIZE(gfs2_gltype) * ARRAY_SIZE(gfs2_stype)) |
| 1780 | |
| 1781 | static int gfs2_sbstats_seq_show(struct seq_file *seq, void *iter_ptr) |
| 1782 | { |
| 1783 | struct gfs2_glock_iter *gi = seq->private; |
| 1784 | struct gfs2_sbd *sdp = gi->sdp; |
| 1785 | unsigned index = gi->hash >> 3; |
| 1786 | unsigned subindex = gi->hash & 0x07; |
| 1787 | s64 value; |
| 1788 | int i; |
| 1789 | |
| 1790 | if (index == 0 && subindex != 0) |
| 1791 | return 0; |
| 1792 | |
| 1793 | seq_printf(seq, "%-10s %8s:", gfs2_gltype[index], |
| 1794 | (index == 0) ? "cpu": gfs2_stype[subindex]); |
| 1795 | |
| 1796 | for_each_possible_cpu(i) { |
| 1797 | const struct gfs2_pcpu_lkstats *lkstats = per_cpu_ptr(sdp->sd_lkstats, i); |
| 1798 | if (index == 0) { |
| 1799 | value = i; |
| 1800 | } else { |
| 1801 | value = lkstats->lkstats[index - 1].stats[subindex]; |
| 1802 | } |
| 1803 | seq_printf(seq, " %15lld", (long long)value); |
| 1804 | } |
| 1805 | seq_putc(seq, '\n'); |
| 1806 | return 0; |
| 1807 | } |
Steven Whitehouse | 8fbbfd2 | 2007-08-01 13:57:10 +0100 | [diff] [blame] | 1808 | |
Steven Whitehouse | 85d1da6 | 2006-09-07 14:40:21 -0400 | [diff] [blame] | 1809 | int __init gfs2_glock_init(void) |
| 1810 | { |
| 1811 | unsigned i; |
| 1812 | for(i = 0; i < GFS2_GL_HASH_SIZE; i++) { |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1813 | INIT_HLIST_BL_HEAD(&gl_hash_table[i]); |
Steven Whitehouse | 85d1da6 | 2006-09-07 14:40:21 -0400 | [diff] [blame] | 1814 | } |
Steven Whitehouse | 8fbbfd2 | 2007-08-01 13:57:10 +0100 | [diff] [blame] | 1815 | |
Steven Whitehouse | d211577 | 2010-11-03 19:58:53 +0000 | [diff] [blame] | 1816 | glock_workqueue = alloc_workqueue("glock_workqueue", WQ_MEM_RECLAIM | |
Tejun Heo | 58a69cb | 2011-02-16 09:25:31 +0100 | [diff] [blame] | 1817 | WQ_HIGHPRI | WQ_FREEZABLE, 0); |
Steven Whitehouse | 97cc102 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 1818 | if (IS_ERR(glock_workqueue)) |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 1819 | return PTR_ERR(glock_workqueue); |
Steven Whitehouse | d211577 | 2010-11-03 19:58:53 +0000 | [diff] [blame] | 1820 | gfs2_delete_workqueue = alloc_workqueue("delete_workqueue", |
Tejun Heo | 58a69cb | 2011-02-16 09:25:31 +0100 | [diff] [blame] | 1821 | WQ_MEM_RECLAIM | WQ_FREEZABLE, |
Steven Whitehouse | d211577 | 2010-11-03 19:58:53 +0000 | [diff] [blame] | 1822 | 0); |
Benjamin Marzinski | b94a170 | 2009-07-23 18:52:34 -0500 | [diff] [blame] | 1823 | if (IS_ERR(gfs2_delete_workqueue)) { |
| 1824 | destroy_workqueue(glock_workqueue); |
| 1825 | return PTR_ERR(gfs2_delete_workqueue); |
| 1826 | } |
Steven Whitehouse | 97cc102 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 1827 | |
| 1828 | register_shrinker(&glock_shrinker); |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 1829 | |
Steven Whitehouse | 85d1da6 | 2006-09-07 14:40:21 -0400 | [diff] [blame] | 1830 | return 0; |
| 1831 | } |
| 1832 | |
Steven Whitehouse | 8fbbfd2 | 2007-08-01 13:57:10 +0100 | [diff] [blame] | 1833 | void gfs2_glock_exit(void) |
| 1834 | { |
Steven Whitehouse | 97cc102 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 1835 | unregister_shrinker(&glock_shrinker); |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 1836 | destroy_workqueue(glock_workqueue); |
Benjamin Marzinski | b94a170 | 2009-07-23 18:52:34 -0500 | [diff] [blame] | 1837 | destroy_workqueue(gfs2_delete_workqueue); |
Steven Whitehouse | 8fbbfd2 | 2007-08-01 13:57:10 +0100 | [diff] [blame] | 1838 | } |
| 1839 | |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1840 | static inline struct gfs2_glock *glock_hash_chain(unsigned hash) |
| 1841 | { |
| 1842 | return hlist_bl_entry(hlist_bl_first_rcu(&gl_hash_table[hash]), |
| 1843 | struct gfs2_glock, gl_list); |
| 1844 | } |
| 1845 | |
| 1846 | static inline struct gfs2_glock *glock_hash_next(struct gfs2_glock *gl) |
| 1847 | { |
Steven Whitehouse | 7e32d02 | 2011-03-15 08:32:14 +0000 | [diff] [blame] | 1848 | return hlist_bl_entry(rcu_dereference(gl->gl_list.next), |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1849 | struct gfs2_glock, gl_list); |
| 1850 | } |
| 1851 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1852 | static int gfs2_glock_iter_next(struct gfs2_glock_iter *gi) |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1853 | { |
Steven Whitehouse | 7b08fc6 | 2007-07-24 13:53:36 +0100 | [diff] [blame] | 1854 | struct gfs2_glock *gl; |
| 1855 | |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1856 | do { |
| 1857 | gl = gi->gl; |
| 1858 | if (gl) { |
| 1859 | gi->gl = glock_hash_next(gl); |
Steven Whitehouse | ba1ddcb | 2012-06-08 11:16:22 +0100 | [diff] [blame] | 1860 | gi->nhash++; |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1861 | } else { |
Steven Whitehouse | ba1ddcb | 2012-06-08 11:16:22 +0100 | [diff] [blame] | 1862 | if (gi->hash >= GFS2_GL_HASH_SIZE) { |
| 1863 | rcu_read_unlock(); |
| 1864 | return 1; |
| 1865 | } |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1866 | gi->gl = glock_hash_chain(gi->hash); |
Steven Whitehouse | ba1ddcb | 2012-06-08 11:16:22 +0100 | [diff] [blame] | 1867 | gi->nhash = 0; |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1868 | } |
| 1869 | while (gi->gl == NULL) { |
| 1870 | gi->hash++; |
| 1871 | if (gi->hash >= GFS2_GL_HASH_SIZE) { |
| 1872 | rcu_read_unlock(); |
| 1873 | return 1; |
| 1874 | } |
| 1875 | gi->gl = glock_hash_chain(gi->hash); |
Steven Whitehouse | ba1ddcb | 2012-06-08 11:16:22 +0100 | [diff] [blame] | 1876 | gi->nhash = 0; |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1877 | } |
| 1878 | /* Skip entries for other sb and dead entries */ |
| 1879 | } while (gi->sdp != gi->gl->gl_sbd || atomic_read(&gi->gl->gl_ref) == 0); |
Abhijith Das | a947e03 | 2007-08-21 09:57:29 -0500 | [diff] [blame] | 1880 | |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1881 | return 0; |
| 1882 | } |
| 1883 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1884 | static void *gfs2_glock_seq_start(struct seq_file *seq, loff_t *pos) |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1885 | { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1886 | struct gfs2_glock_iter *gi = seq->private; |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1887 | loff_t n = *pos; |
| 1888 | |
Steven Whitehouse | ba1ddcb | 2012-06-08 11:16:22 +0100 | [diff] [blame] | 1889 | if (gi->last_pos <= *pos) |
| 1890 | n = gi->nhash + (*pos - gi->last_pos); |
| 1891 | else |
| 1892 | gi->hash = 0; |
| 1893 | |
| 1894 | gi->nhash = 0; |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1895 | rcu_read_lock(); |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1896 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1897 | do { |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1898 | if (gfs2_glock_iter_next(gi)) |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1899 | return NULL; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1900 | } while (n--); |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1901 | |
Steven Whitehouse | ba1ddcb | 2012-06-08 11:16:22 +0100 | [diff] [blame] | 1902 | gi->last_pos = *pos; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1903 | return gi->gl; |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1904 | } |
| 1905 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1906 | static void *gfs2_glock_seq_next(struct seq_file *seq, void *iter_ptr, |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1907 | loff_t *pos) |
| 1908 | { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1909 | struct gfs2_glock_iter *gi = seq->private; |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1910 | |
| 1911 | (*pos)++; |
Steven Whitehouse | ba1ddcb | 2012-06-08 11:16:22 +0100 | [diff] [blame] | 1912 | gi->last_pos = *pos; |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1913 | if (gfs2_glock_iter_next(gi)) |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1914 | return NULL; |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1915 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1916 | return gi->gl; |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1917 | } |
| 1918 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1919 | static void gfs2_glock_seq_stop(struct seq_file *seq, void *iter_ptr) |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1920 | { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1921 | struct gfs2_glock_iter *gi = seq->private; |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1922 | |
| 1923 | if (gi->gl) |
| 1924 | rcu_read_unlock(); |
| 1925 | gi->gl = NULL; |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1926 | } |
| 1927 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1928 | static int gfs2_glock_seq_show(struct seq_file *seq, void *iter_ptr) |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1929 | { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1930 | return dump_glock(seq, iter_ptr); |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1931 | } |
| 1932 | |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 1933 | static void *gfs2_sbstats_seq_start(struct seq_file *seq, loff_t *pos) |
| 1934 | { |
| 1935 | struct gfs2_glock_iter *gi = seq->private; |
| 1936 | |
| 1937 | gi->hash = *pos; |
| 1938 | if (*pos >= GFS2_NR_SBSTATS) |
| 1939 | return NULL; |
| 1940 | preempt_disable(); |
| 1941 | return SEQ_START_TOKEN; |
| 1942 | } |
| 1943 | |
| 1944 | static void *gfs2_sbstats_seq_next(struct seq_file *seq, void *iter_ptr, |
| 1945 | loff_t *pos) |
| 1946 | { |
| 1947 | struct gfs2_glock_iter *gi = seq->private; |
| 1948 | (*pos)++; |
| 1949 | gi->hash++; |
| 1950 | if (gi->hash >= GFS2_NR_SBSTATS) { |
| 1951 | preempt_enable(); |
| 1952 | return NULL; |
| 1953 | } |
| 1954 | return SEQ_START_TOKEN; |
| 1955 | } |
| 1956 | |
| 1957 | static void gfs2_sbstats_seq_stop(struct seq_file *seq, void *iter_ptr) |
| 1958 | { |
| 1959 | preempt_enable(); |
| 1960 | } |
| 1961 | |
Denis Cheng | 4ef2900 | 2007-07-31 18:31:11 +0800 | [diff] [blame] | 1962 | static const struct seq_operations gfs2_glock_seq_ops = { |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1963 | .start = gfs2_glock_seq_start, |
| 1964 | .next = gfs2_glock_seq_next, |
| 1965 | .stop = gfs2_glock_seq_stop, |
| 1966 | .show = gfs2_glock_seq_show, |
| 1967 | }; |
| 1968 | |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 1969 | static const struct seq_operations gfs2_glstats_seq_ops = { |
| 1970 | .start = gfs2_glock_seq_start, |
| 1971 | .next = gfs2_glock_seq_next, |
| 1972 | .stop = gfs2_glock_seq_stop, |
| 1973 | .show = gfs2_glstats_seq_show, |
| 1974 | }; |
| 1975 | |
| 1976 | static const struct seq_operations gfs2_sbstats_seq_ops = { |
| 1977 | .start = gfs2_sbstats_seq_start, |
| 1978 | .next = gfs2_sbstats_seq_next, |
| 1979 | .stop = gfs2_sbstats_seq_stop, |
| 1980 | .show = gfs2_sbstats_seq_show, |
| 1981 | }; |
| 1982 | |
| 1983 | static int gfs2_glocks_open(struct inode *inode, struct file *file) |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1984 | { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1985 | int ret = seq_open_private(file, &gfs2_glock_seq_ops, |
| 1986 | sizeof(struct gfs2_glock_iter)); |
| 1987 | if (ret == 0) { |
| 1988 | struct seq_file *seq = file->private_data; |
| 1989 | struct gfs2_glock_iter *gi = seq->private; |
| 1990 | gi->sdp = inode->i_private; |
Steven Whitehouse | df5d2f5 | 2012-06-07 13:30:16 +0100 | [diff] [blame] | 1991 | seq->buf = kmalloc(8*PAGE_SIZE, GFP_KERNEL | __GFP_NOWARN); |
| 1992 | if (seq->buf) |
| 1993 | seq->size = 8*PAGE_SIZE; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1994 | } |
| 1995 | return ret; |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1996 | } |
| 1997 | |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 1998 | static int gfs2_glstats_open(struct inode *inode, struct file *file) |
| 1999 | { |
| 2000 | int ret = seq_open_private(file, &gfs2_glstats_seq_ops, |
| 2001 | sizeof(struct gfs2_glock_iter)); |
| 2002 | if (ret == 0) { |
| 2003 | struct seq_file *seq = file->private_data; |
| 2004 | struct gfs2_glock_iter *gi = seq->private; |
| 2005 | gi->sdp = inode->i_private; |
Steven Whitehouse | df5d2f5 | 2012-06-07 13:30:16 +0100 | [diff] [blame] | 2006 | seq->buf = kmalloc(8*PAGE_SIZE, GFP_KERNEL | __GFP_NOWARN); |
| 2007 | if (seq->buf) |
| 2008 | seq->size = 8*PAGE_SIZE; |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2009 | } |
| 2010 | return ret; |
| 2011 | } |
| 2012 | |
| 2013 | static int gfs2_sbstats_open(struct inode *inode, struct file *file) |
| 2014 | { |
| 2015 | int ret = seq_open_private(file, &gfs2_sbstats_seq_ops, |
| 2016 | sizeof(struct gfs2_glock_iter)); |
| 2017 | if (ret == 0) { |
| 2018 | struct seq_file *seq = file->private_data; |
| 2019 | struct gfs2_glock_iter *gi = seq->private; |
| 2020 | gi->sdp = inode->i_private; |
| 2021 | } |
| 2022 | return ret; |
| 2023 | } |
| 2024 | |
| 2025 | static const struct file_operations gfs2_glocks_fops = { |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2026 | .owner = THIS_MODULE, |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2027 | .open = gfs2_glocks_open, |
| 2028 | .read = seq_read, |
| 2029 | .llseek = seq_lseek, |
| 2030 | .release = seq_release_private, |
| 2031 | }; |
| 2032 | |
| 2033 | static const struct file_operations gfs2_glstats_fops = { |
| 2034 | .owner = THIS_MODULE, |
| 2035 | .open = gfs2_glstats_open, |
| 2036 | .read = seq_read, |
| 2037 | .llseek = seq_lseek, |
| 2038 | .release = seq_release_private, |
| 2039 | }; |
| 2040 | |
| 2041 | static const struct file_operations gfs2_sbstats_fops = { |
| 2042 | .owner = THIS_MODULE, |
| 2043 | .open = gfs2_sbstats_open, |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2044 | .read = seq_read, |
| 2045 | .llseek = seq_lseek, |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2046 | .release = seq_release_private, |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2047 | }; |
| 2048 | |
| 2049 | int gfs2_create_debugfs_file(struct gfs2_sbd *sdp) |
| 2050 | { |
Robert Peterson | 5f88209 | 2007-04-18 11:41:11 -0500 | [diff] [blame] | 2051 | sdp->debugfs_dir = debugfs_create_dir(sdp->sd_table_name, gfs2_root); |
| 2052 | if (!sdp->debugfs_dir) |
| 2053 | return -ENOMEM; |
| 2054 | sdp->debugfs_dentry_glocks = debugfs_create_file("glocks", |
| 2055 | S_IFREG | S_IRUGO, |
| 2056 | sdp->debugfs_dir, sdp, |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2057 | &gfs2_glocks_fops); |
Robert Peterson | 5f88209 | 2007-04-18 11:41:11 -0500 | [diff] [blame] | 2058 | if (!sdp->debugfs_dentry_glocks) |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2059 | goto fail; |
| 2060 | |
| 2061 | sdp->debugfs_dentry_glstats = debugfs_create_file("glstats", |
| 2062 | S_IFREG | S_IRUGO, |
| 2063 | sdp->debugfs_dir, sdp, |
| 2064 | &gfs2_glstats_fops); |
| 2065 | if (!sdp->debugfs_dentry_glstats) |
| 2066 | goto fail; |
| 2067 | |
| 2068 | sdp->debugfs_dentry_sbstats = debugfs_create_file("sbstats", |
| 2069 | S_IFREG | S_IRUGO, |
| 2070 | sdp->debugfs_dir, sdp, |
| 2071 | &gfs2_sbstats_fops); |
| 2072 | if (!sdp->debugfs_dentry_sbstats) |
| 2073 | goto fail; |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2074 | |
| 2075 | return 0; |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2076 | fail: |
| 2077 | gfs2_delete_debugfs_file(sdp); |
| 2078 | return -ENOMEM; |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2079 | } |
| 2080 | |
| 2081 | void gfs2_delete_debugfs_file(struct gfs2_sbd *sdp) |
| 2082 | { |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2083 | if (sdp->debugfs_dir) { |
Robert Peterson | 5f88209 | 2007-04-18 11:41:11 -0500 | [diff] [blame] | 2084 | if (sdp->debugfs_dentry_glocks) { |
| 2085 | debugfs_remove(sdp->debugfs_dentry_glocks); |
| 2086 | sdp->debugfs_dentry_glocks = NULL; |
| 2087 | } |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2088 | if (sdp->debugfs_dentry_glstats) { |
| 2089 | debugfs_remove(sdp->debugfs_dentry_glstats); |
| 2090 | sdp->debugfs_dentry_glstats = NULL; |
| 2091 | } |
| 2092 | if (sdp->debugfs_dentry_sbstats) { |
| 2093 | debugfs_remove(sdp->debugfs_dentry_sbstats); |
| 2094 | sdp->debugfs_dentry_sbstats = NULL; |
| 2095 | } |
Robert Peterson | 5f88209 | 2007-04-18 11:41:11 -0500 | [diff] [blame] | 2096 | debugfs_remove(sdp->debugfs_dir); |
| 2097 | sdp->debugfs_dir = NULL; |
| 2098 | } |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2099 | } |
| 2100 | |
| 2101 | int gfs2_register_debugfs(void) |
| 2102 | { |
| 2103 | gfs2_root = debugfs_create_dir("gfs2", NULL); |
| 2104 | return gfs2_root ? 0 : -ENOMEM; |
| 2105 | } |
| 2106 | |
| 2107 | void gfs2_unregister_debugfs(void) |
| 2108 | { |
| 2109 | debugfs_remove(gfs2_root); |
Robert Peterson | 5f88209 | 2007-04-18 11:41:11 -0500 | [diff] [blame] | 2110 | gfs2_root = NULL; |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2111 | } |