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