Thomas Gleixner | 7336d0e | 2019-05-31 01:09:56 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. |
Bob Peterson | cf45b75 | 2008-01-31 10:31:39 -0600 | [diff] [blame] | 4 | * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
Joe Perches | d77d1b5 | 2014-03-06 12:10:45 -0800 | [diff] [blame] | 7 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 8 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 9 | #include <linux/sched.h> |
| 10 | #include <linux/slab.h> |
| 11 | #include <linux/spinlock.h> |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 12 | #include <linux/buffer_head.h> |
| 13 | #include <linux/delay.h> |
| 14 | #include <linux/sort.h> |
Andreas Gruenbacher | 0515480 | 2017-08-01 11:18:26 -0500 | [diff] [blame] | 15 | #include <linux/hash.h> |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 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> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 22 | #include <linux/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> |
Steven Whitehouse | 4506a519 | 2013-02-01 20:36:03 +0000 | [diff] [blame] | 33 | #include <linux/list_sort.h> |
Steven Whitehouse | e66cf16 | 2013-10-15 15:18:08 +0100 | [diff] [blame] | 34 | #include <linux/lockref.h> |
Bob Peterson | 88ffbf3 | 2015-03-16 11:02:46 -0500 | [diff] [blame] | 35 | #include <linux/rhashtable.h> |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 36 | |
| 37 | #include "gfs2.h" |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 38 | #include "incore.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 39 | #include "glock.h" |
| 40 | #include "glops.h" |
| 41 | #include "inode.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 42 | #include "lops.h" |
| 43 | #include "meta_io.h" |
| 44 | #include "quota.h" |
| 45 | #include "super.h" |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 46 | #include "util.h" |
Steven Whitehouse | 813e0c4 | 2008-11-18 13:38:48 +0000 | [diff] [blame] | 47 | #include "bmap.h" |
Steven Whitehouse | 6399777 | 2009-06-12 08:49:20 +0100 | [diff] [blame] | 48 | #define CREATE_TRACE_POINTS |
| 49 | #include "trace_gfs2.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 50 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 51 | struct gfs2_glock_iter { |
Steven Whitehouse | ba1ddcb | 2012-06-08 11:16:22 +0100 | [diff] [blame] | 52 | struct gfs2_sbd *sdp; /* incore superblock */ |
Bob Peterson | 88ffbf3 | 2015-03-16 11:02:46 -0500 | [diff] [blame] | 53 | struct rhashtable_iter hti; /* rhashtable iterator */ |
Steven Whitehouse | ba1ddcb | 2012-06-08 11:16:22 +0100 | [diff] [blame] | 54 | struct gfs2_glock *gl; /* current glock struct */ |
| 55 | loff_t last_pos; /* last position */ |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 56 | }; |
| 57 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 58 | typedef void (*glock_examiner) (struct gfs2_glock * gl); |
| 59 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 60 | static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target); |
Bob Peterson | dc73290 | 2021-08-19 20:51:23 +0200 | [diff] [blame] | 61 | static void __gfs2_glock_dq(struct gfs2_holder *gh); |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 62 | |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 63 | static struct dentry *gfs2_root; |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 64 | static struct workqueue_struct *glock_workqueue; |
Benjamin Marzinski | b94a170 | 2009-07-23 18:52:34 -0500 | [diff] [blame] | 65 | struct workqueue_struct *gfs2_delete_workqueue; |
Steven Whitehouse | 97cc1025 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 66 | static LIST_HEAD(lru_list); |
| 67 | static atomic_t lru_count = ATOMIC_INIT(0); |
Julia Lawall | eb8374e | 2008-12-25 15:35:27 +0100 | [diff] [blame] | 68 | static DEFINE_SPINLOCK(lru_lock); |
Adrian Bunk | 08bc2db | 2006-04-28 10:59:12 -0400 | [diff] [blame] | 69 | |
Steven Whitehouse | b639789 | 2006-09-12 10:10:01 -0400 | [diff] [blame] | 70 | #define GFS2_GL_HASH_SHIFT 15 |
Fabian Frederick | 47a9a52 | 2016-08-02 12:05:27 -0500 | [diff] [blame] | 71 | #define GFS2_GL_HASH_SIZE BIT(GFS2_GL_HASH_SHIFT) |
Steven Whitehouse | 087efdd | 2006-09-09 16:59:11 -0400 | [diff] [blame] | 72 | |
Arvind Yadav | d296b15 | 2017-08-30 07:50:03 -0500 | [diff] [blame] | 73 | static const struct rhashtable_params ht_parms = { |
Bob Peterson | 88ffbf3 | 2015-03-16 11:02:46 -0500 | [diff] [blame] | 74 | .nelem_hint = GFS2_GL_HASH_SIZE * 3 / 4, |
Andreas Gruenbacher | 972b044 | 2017-03-16 09:54:57 -0400 | [diff] [blame] | 75 | .key_len = offsetofend(struct lm_lockname, ln_type), |
Bob Peterson | 88ffbf3 | 2015-03-16 11:02:46 -0500 | [diff] [blame] | 76 | .key_offset = offsetof(struct gfs2_glock, gl_name), |
| 77 | .head_offset = offsetof(struct gfs2_glock, gl_node), |
| 78 | }; |
Steven Whitehouse | 087efdd | 2006-09-09 16:59:11 -0400 | [diff] [blame] | 79 | |
Bob Peterson | 88ffbf3 | 2015-03-16 11:02:46 -0500 | [diff] [blame] | 80 | static struct rhashtable gl_hash_table; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 81 | |
Andreas Gruenbacher | 0515480 | 2017-08-01 11:18:26 -0500 | [diff] [blame] | 82 | #define GLOCK_WAIT_TABLE_BITS 12 |
| 83 | #define GLOCK_WAIT_TABLE_SIZE (1 << GLOCK_WAIT_TABLE_BITS) |
| 84 | static wait_queue_head_t glock_wait_table[GLOCK_WAIT_TABLE_SIZE] __cacheline_aligned; |
| 85 | |
| 86 | struct wait_glock_queue { |
| 87 | struct lm_lockname *name; |
| 88 | wait_queue_entry_t wait; |
| 89 | }; |
| 90 | |
| 91 | static int glock_wake_function(wait_queue_entry_t *wait, unsigned int mode, |
| 92 | int sync, void *key) |
| 93 | { |
| 94 | struct wait_glock_queue *wait_glock = |
| 95 | container_of(wait, struct wait_glock_queue, wait); |
| 96 | struct lm_lockname *wait_name = wait_glock->name; |
| 97 | struct lm_lockname *wake_name = key; |
| 98 | |
| 99 | if (wake_name->ln_sbd != wait_name->ln_sbd || |
| 100 | wake_name->ln_number != wait_name->ln_number || |
| 101 | wake_name->ln_type != wait_name->ln_type) |
| 102 | return 0; |
| 103 | return autoremove_wake_function(wait, mode, sync, key); |
| 104 | } |
| 105 | |
| 106 | static wait_queue_head_t *glock_waitqueue(struct lm_lockname *name) |
| 107 | { |
Andreas Gruenbacher | 605b048 | 2019-03-06 15:41:57 +0100 | [diff] [blame] | 108 | u32 hash = jhash2((u32 *)name, ht_parms.key_len / 4, 0); |
Andreas Gruenbacher | 0515480 | 2017-08-01 11:18:26 -0500 | [diff] [blame] | 109 | |
| 110 | return glock_wait_table + hash_32(hash, GLOCK_WAIT_TABLE_BITS); |
| 111 | } |
| 112 | |
Andreas Gruenbacher | 0515480 | 2017-08-01 11:18:26 -0500 | [diff] [blame] | 113 | /** |
| 114 | * wake_up_glock - Wake up waiters on a glock |
| 115 | * @gl: the glock |
| 116 | */ |
| 117 | static void wake_up_glock(struct gfs2_glock *gl) |
| 118 | { |
| 119 | wait_queue_head_t *wq = glock_waitqueue(&gl->gl_name); |
| 120 | |
| 121 | if (waitqueue_active(wq)) |
| 122 | __wake_up(wq, TASK_NORMAL, 1, &gl->gl_name); |
| 123 | } |
| 124 | |
Andreas Gruenbacher | 961ae1d | 2017-07-07 13:22:05 -0500 | [diff] [blame] | 125 | static void gfs2_glock_dealloc(struct rcu_head *rcu) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 126 | { |
Andreas Gruenbacher | 961ae1d | 2017-07-07 13:22:05 -0500 | [diff] [blame] | 127 | struct gfs2_glock *gl = container_of(rcu, struct gfs2_glock, gl_rcu); |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 128 | |
Bob Peterson | 15f2547 | 2020-01-15 12:47:46 -0600 | [diff] [blame] | 129 | kfree(gl->gl_lksb.sb_lvbptr); |
| 130 | if (gl->gl_ops->go_flags & GLOF_ASPACE) |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 131 | kmem_cache_free(gfs2_glock_aspace_cachep, gl); |
Bob Peterson | 15f2547 | 2020-01-15 12:47:46 -0600 | [diff] [blame] | 132 | else |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 133 | kmem_cache_free(gfs2_glock_cachep, gl); |
Andreas Gruenbacher | 961ae1d | 2017-07-07 13:22:05 -0500 | [diff] [blame] | 134 | } |
| 135 | |
Bob Peterson | a72d240 | 2019-06-13 13:28:45 -0500 | [diff] [blame] | 136 | /** |
| 137 | * glock_blocked_by_withdraw - determine if we can still use a glock |
| 138 | * @gl: the glock |
| 139 | * |
| 140 | * We need to allow some glocks to be enqueued, dequeued, promoted, and demoted |
| 141 | * when we're withdrawn. For example, to maintain metadata integrity, we should |
| 142 | * disallow the use of inode and rgrp glocks when withdrawn. Other glocks, like |
| 143 | * iopen or the transaction glocks may be safely used because none of their |
| 144 | * metadata goes through the journal. So in general, we should disallow all |
| 145 | * glocks that are journaled, and allow all the others. One exception is: |
| 146 | * we need to allow our active journal to be promoted and demoted so others |
| 147 | * may recover it and we can reacquire it when they're done. |
| 148 | */ |
| 149 | static bool glock_blocked_by_withdraw(struct gfs2_glock *gl) |
| 150 | { |
| 151 | struct gfs2_sbd *sdp = gl->gl_name.ln_sbd; |
| 152 | |
| 153 | if (likely(!gfs2_withdrawn(sdp))) |
| 154 | return false; |
| 155 | if (gl->gl_ops->go_flags & GLOF_NONDISK) |
| 156 | return false; |
| 157 | if (!sdp->sd_jdesc || |
| 158 | gl->gl_name.ln_number == sdp->sd_jdesc->jd_no_addr) |
| 159 | return false; |
| 160 | return true; |
| 161 | } |
| 162 | |
Andreas Gruenbacher | 961ae1d | 2017-07-07 13:22:05 -0500 | [diff] [blame] | 163 | void gfs2_glock_free(struct gfs2_glock *gl) |
| 164 | { |
| 165 | struct gfs2_sbd *sdp = gl->gl_name.ln_sbd; |
| 166 | |
Bob Peterson | ea4e61c | 2020-05-23 08:13:50 -0500 | [diff] [blame] | 167 | gfs2_glock_assert_withdraw(gl, atomic_read(&gl->gl_revokes) == 0); |
Andreas Gruenbacher | 0515480 | 2017-08-01 11:18:26 -0500 | [diff] [blame] | 168 | rhashtable_remove_fast(&gl_hash_table, &gl->gl_node, ht_parms); |
| 169 | smp_mb(); |
| 170 | wake_up_glock(gl); |
Andreas Gruenbacher | 961ae1d | 2017-07-07 13:22:05 -0500 | [diff] [blame] | 171 | call_rcu(&gl->gl_rcu, gfs2_glock_dealloc); |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 172 | if (atomic_dec_and_test(&sdp->sd_glock_disposal)) |
| 173 | wake_up(&sdp->sd_glock_wait); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 174 | } |
| 175 | |
| 176 | /** |
| 177 | * gfs2_glock_hold() - increment reference count on glock |
| 178 | * @gl: The glock to hold |
| 179 | * |
| 180 | */ |
| 181 | |
Andreas Gruenbacher | 71c1b213 | 2017-08-01 11:45:23 -0500 | [diff] [blame] | 182 | void gfs2_glock_hold(struct gfs2_glock *gl) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 183 | { |
Steven Whitehouse | e66cf16 | 2013-10-15 15:18:08 +0100 | [diff] [blame] | 184 | GLOCK_BUG_ON(gl, __lockref_is_dead(&gl->gl_lockref)); |
| 185 | lockref_get(&gl->gl_lockref); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | /** |
Benjamin Marzinski | 8ff22a6 | 2009-07-10 18:04:24 -0500 | [diff] [blame] | 189 | * demote_ok - Check to see if it's ok to unlock a glock |
| 190 | * @gl: the glock |
| 191 | * |
| 192 | * Returns: 1 if it's ok |
| 193 | */ |
| 194 | |
| 195 | static int demote_ok(const struct gfs2_glock *gl) |
| 196 | { |
| 197 | const struct gfs2_glock_operations *glops = gl->gl_ops; |
| 198 | |
| 199 | if (gl->gl_state == LM_ST_UNLOCKED) |
| 200 | return 0; |
Bob Peterson | dc73290 | 2021-08-19 20:51:23 +0200 | [diff] [blame] | 201 | /* |
| 202 | * Note that demote_ok is used for the lru process of disposing of |
| 203 | * glocks. For this purpose, we don't care if the glock's holders |
| 204 | * have the HIF_MAY_DEMOTE flag set or not. If someone is using |
| 205 | * them, don't demote. |
| 206 | */ |
Steven Whitehouse | f42ab08 | 2011-04-14 16:50:31 +0100 | [diff] [blame] | 207 | if (!list_empty(&gl->gl_holders)) |
Benjamin Marzinski | 8ff22a6 | 2009-07-10 18:04:24 -0500 | [diff] [blame] | 208 | return 0; |
| 209 | if (glops->go_demote_ok) |
| 210 | return glops->go_demote_ok(gl); |
| 211 | return 1; |
| 212 | } |
| 213 | |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 214 | |
Steven Whitehouse | 29687a2 | 2011-03-30 16:33:25 +0100 | [diff] [blame] | 215 | void gfs2_glock_add_to_lru(struct gfs2_glock *gl) |
| 216 | { |
Ross Lagerwall | 7881ef3 | 2019-03-27 17:09:17 +0000 | [diff] [blame] | 217 | if (!(gl->gl_ops->go_flags & GLOF_LRU)) |
| 218 | return; |
| 219 | |
Steven Whitehouse | 29687a2 | 2011-03-30 16:33:25 +0100 | [diff] [blame] | 220 | spin_lock(&lru_lock); |
| 221 | |
Baokun Li | 38a618d | 2021-06-08 11:12:44 +0800 | [diff] [blame] | 222 | list_move_tail(&gl->gl_lru, &lru_list); |
Ross Lagerwall | 7881ef3 | 2019-03-27 17:09:17 +0000 | [diff] [blame] | 223 | |
| 224 | if (!test_bit(GLF_LRU, &gl->gl_flags)) { |
| 225 | set_bit(GLF_LRU, &gl->gl_flags); |
| 226 | atomic_inc(&lru_count); |
| 227 | } |
| 228 | |
Steven Whitehouse | 29687a2 | 2011-03-30 16:33:25 +0100 | [diff] [blame] | 229 | spin_unlock(&lru_lock); |
| 230 | } |
| 231 | |
Bob Peterson | 8f6cb40 | 2015-01-05 13:25:10 -0500 | [diff] [blame] | 232 | static void gfs2_glock_remove_from_lru(struct gfs2_glock *gl) |
Steven Whitehouse | f42ab08 | 2011-04-14 16:50:31 +0100 | [diff] [blame] | 233 | { |
Bob Peterson | 645ebd4 | 2017-07-26 10:57:35 -0500 | [diff] [blame] | 234 | if (!(gl->gl_ops->go_flags & GLOF_LRU)) |
| 235 | return; |
| 236 | |
Bob Peterson | 8f6cb40 | 2015-01-05 13:25:10 -0500 | [diff] [blame] | 237 | spin_lock(&lru_lock); |
Ross Lagerwall | 7881ef3 | 2019-03-27 17:09:17 +0000 | [diff] [blame] | 238 | if (test_bit(GLF_LRU, &gl->gl_flags)) { |
Steven Whitehouse | f42ab08 | 2011-04-14 16:50:31 +0100 | [diff] [blame] | 239 | list_del_init(&gl->gl_lru); |
| 240 | atomic_dec(&lru_count); |
| 241 | clear_bit(GLF_LRU, &gl->gl_flags); |
| 242 | } |
| 243 | spin_unlock(&lru_lock); |
| 244 | } |
| 245 | |
Andreas Gruenbacher | 6b0c744 | 2017-06-30 08:10:01 -0500 | [diff] [blame] | 246 | /* |
| 247 | * Enqueue the glock on the work queue. Passes one glock reference on to the |
| 248 | * work queue. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 249 | */ |
Andreas Gruenbacher | 6b0c744 | 2017-06-30 08:10:01 -0500 | [diff] [blame] | 250 | static void __gfs2_glock_queue_work(struct gfs2_glock *gl, unsigned long delay) { |
| 251 | if (!queue_delayed_work(glock_workqueue, &gl->gl_work, delay)) { |
| 252 | /* |
| 253 | * We are holding the lockref spinlock, and the work was still |
| 254 | * queued above. The queued work (glock_work_func) takes that |
| 255 | * spinlock before dropping its glock reference(s), so it |
| 256 | * cannot have dropped them in the meantime. |
| 257 | */ |
| 258 | GLOCK_BUG_ON(gl, gl->gl_lockref.count < 2); |
| 259 | gl->gl_lockref.count--; |
| 260 | } |
| 261 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 262 | |
Andreas Gruenbacher | 6b0c744 | 2017-06-30 08:10:01 -0500 | [diff] [blame] | 263 | static void gfs2_glock_queue_work(struct gfs2_glock *gl, unsigned long delay) { |
| 264 | spin_lock(&gl->gl_lockref.lock); |
| 265 | __gfs2_glock_queue_work(gl, delay); |
| 266 | spin_unlock(&gl->gl_lockref.lock); |
| 267 | } |
| 268 | |
| 269 | static void __gfs2_glock_put(struct gfs2_glock *gl) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 270 | { |
Bob Peterson | 15562c4 | 2015-03-16 11:52:05 -0500 | [diff] [blame] | 271 | struct gfs2_sbd *sdp = gl->gl_name.ln_sbd; |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 272 | struct address_space *mapping = gfs2_glock2aspace(gl); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 273 | |
Steven Whitehouse | e66cf16 | 2013-10-15 15:18:08 +0100 | [diff] [blame] | 274 | lockref_mark_dead(&gl->gl_lockref); |
| 275 | |
Bob Peterson | 8f6cb40 | 2015-01-05 13:25:10 -0500 | [diff] [blame] | 276 | gfs2_glock_remove_from_lru(gl); |
Steven Whitehouse | e66cf16 | 2013-10-15 15:18:08 +0100 | [diff] [blame] | 277 | spin_unlock(&gl->gl_lockref.lock); |
Steven Whitehouse | e66cf16 | 2013-10-15 15:18:08 +0100 | [diff] [blame] | 278 | GLOCK_BUG_ON(gl, !list_empty(&gl->gl_holders)); |
Bob Peterson | ee1e2c7 | 2020-09-16 11:06:23 -0500 | [diff] [blame] | 279 | if (mapping) { |
| 280 | truncate_inode_pages_final(mapping); |
| 281 | if (!gfs2_withdrawn(sdp)) |
Matthew Wilcox (Oracle) | 7716506 | 2021-05-04 18:32:45 -0700 | [diff] [blame] | 282 | GLOCK_BUG_ON(gl, !mapping_empty(mapping)); |
Bob Peterson | ee1e2c7 | 2020-09-16 11:06:23 -0500 | [diff] [blame] | 283 | } |
Steven Whitehouse | e66cf16 | 2013-10-15 15:18:08 +0100 | [diff] [blame] | 284 | trace_gfs2_glock_put(gl); |
| 285 | sdp->sd_lockstruct.ls_ops->lm_put_lock(gl); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 286 | } |
| 287 | |
Andreas Gruenbacher | 71c1b213 | 2017-08-01 11:45:23 -0500 | [diff] [blame] | 288 | /* |
| 289 | * Cause the glock to be put in work queue context. |
| 290 | */ |
| 291 | void gfs2_glock_queue_put(struct gfs2_glock *gl) |
| 292 | { |
| 293 | gfs2_glock_queue_work(gl, 0); |
| 294 | } |
| 295 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 296 | /** |
Andreas Gruenbacher | 6b0c744 | 2017-06-30 08:10:01 -0500 | [diff] [blame] | 297 | * gfs2_glock_put() - Decrement reference count on glock |
| 298 | * @gl: The glock to put |
| 299 | * |
| 300 | */ |
| 301 | |
| 302 | void gfs2_glock_put(struct gfs2_glock *gl) |
| 303 | { |
Alexander Aring | 660a612 | 2021-10-13 10:02:00 -0400 | [diff] [blame] | 304 | /* last put could call sleepable dlm api */ |
| 305 | might_sleep(); |
| 306 | |
Andreas Gruenbacher | 6b0c744 | 2017-06-30 08:10:01 -0500 | [diff] [blame] | 307 | if (lockref_put_or_lock(&gl->gl_lockref)) |
| 308 | return; |
| 309 | |
| 310 | __gfs2_glock_put(gl); |
| 311 | } |
| 312 | |
| 313 | /** |
Andreas Gruenbacher | 6144464 | 2021-08-10 00:43:55 +0200 | [diff] [blame] | 314 | * may_grant - check if it's ok to grant a new lock |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 315 | * @gl: The glock |
Andreas Gruenbacher | 6144464 | 2021-08-10 00:43:55 +0200 | [diff] [blame] | 316 | * @current_gh: One of the current holders of @gl |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 317 | * @gh: The lock request which we wish to grant |
| 318 | * |
Andreas Gruenbacher | 6144464 | 2021-08-10 00:43:55 +0200 | [diff] [blame] | 319 | * With our current compatibility rules, if a glock has one or more active |
| 320 | * holders (HIF_HOLDER flag set), any of those holders can be passed in as |
| 321 | * @current_gh; they are all the same as far as compatibility with the new @gh |
| 322 | * goes. |
| 323 | * |
| 324 | * Returns true if it's ok to grant the lock. |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 325 | */ |
| 326 | |
Andreas Gruenbacher | 6144464 | 2021-08-10 00:43:55 +0200 | [diff] [blame] | 327 | static inline bool may_grant(struct gfs2_glock *gl, |
| 328 | struct gfs2_holder *current_gh, |
| 329 | struct gfs2_holder *gh) |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 330 | { |
Andreas Gruenbacher | 6144464 | 2021-08-10 00:43:55 +0200 | [diff] [blame] | 331 | if (current_gh) { |
| 332 | GLOCK_BUG_ON(gl, !test_bit(HIF_HOLDER, ¤t_gh->gh_iflags)); |
Bob Peterson | 06e908c | 2018-04-18 13:58:19 -0700 | [diff] [blame] | 333 | |
Andreas Gruenbacher | 6144464 | 2021-08-10 00:43:55 +0200 | [diff] [blame] | 334 | switch(current_gh->gh_state) { |
| 335 | case LM_ST_EXCLUSIVE: |
| 336 | /* |
| 337 | * Here we make a special exception to grant holders |
| 338 | * who agree to share the EX lock with other holders |
| 339 | * who also have the bit set. If the original holder |
| 340 | * has the LM_FLAG_NODE_SCOPE bit set, we grant more |
| 341 | * holders with the bit set. |
| 342 | */ |
| 343 | return gh->gh_state == LM_ST_EXCLUSIVE && |
| 344 | (current_gh->gh_flags & LM_FLAG_NODE_SCOPE) && |
| 345 | (gh->gh_flags & LM_FLAG_NODE_SCOPE); |
| 346 | |
| 347 | case LM_ST_SHARED: |
| 348 | case LM_ST_DEFERRED: |
| 349 | return gh->gh_state == current_gh->gh_state; |
| 350 | |
| 351 | default: |
| 352 | return false; |
| 353 | } |
Bob Peterson | 06e908c | 2018-04-18 13:58:19 -0700 | [diff] [blame] | 354 | } |
Andreas Gruenbacher | 6144464 | 2021-08-10 00:43:55 +0200 | [diff] [blame] | 355 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 356 | if (gl->gl_state == gh->gh_state) |
Andreas Gruenbacher | 6144464 | 2021-08-10 00:43:55 +0200 | [diff] [blame] | 357 | return true; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 358 | if (gh->gh_flags & GL_EXACT) |
Andreas Gruenbacher | 6144464 | 2021-08-10 00:43:55 +0200 | [diff] [blame] | 359 | return false; |
Steven Whitehouse | 209806a | 2008-07-07 10:07:28 +0100 | [diff] [blame] | 360 | if (gl->gl_state == LM_ST_EXCLUSIVE) { |
Andreas Gruenbacher | 6144464 | 2021-08-10 00:43:55 +0200 | [diff] [blame] | 361 | return gh->gh_state == LM_ST_SHARED || |
| 362 | gh->gh_state == LM_ST_DEFERRED; |
Steven Whitehouse | 209806a | 2008-07-07 10:07:28 +0100 | [diff] [blame] | 363 | } |
Andreas Gruenbacher | 6144464 | 2021-08-10 00:43:55 +0200 | [diff] [blame] | 364 | if (gh->gh_flags & LM_FLAG_ANY) |
| 365 | return gl->gl_state != LM_ST_UNLOCKED; |
| 366 | return false; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 367 | } |
| 368 | |
| 369 | static void gfs2_holder_wake(struct gfs2_holder *gh) |
| 370 | { |
| 371 | clear_bit(HIF_WAIT, &gh->gh_iflags); |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 372 | smp_mb__after_atomic(); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 373 | wake_up_bit(&gh->gh_iflags, HIF_WAIT); |
Bob Peterson | ad26967 | 2019-08-30 12:31:02 -0500 | [diff] [blame] | 374 | if (gh->gh_flags & GL_ASYNC) { |
| 375 | struct gfs2_sbd *sdp = gh->gh_gl->gl_name.ln_sbd; |
| 376 | |
| 377 | wake_up(&sdp->sd_async_glock_wait); |
| 378 | } |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 379 | } |
| 380 | |
| 381 | /** |
Steven Whitehouse | d5341a9 | 2010-07-23 14:05:51 +0100 | [diff] [blame] | 382 | * do_error - Something unexpected has happened during a lock request |
Lee Jones | c551f66 | 2021-03-30 17:44:29 +0100 | [diff] [blame] | 383 | * @gl: The glock |
| 384 | * @ret: The status from the DLM |
Steven Whitehouse | d5341a9 | 2010-07-23 14:05:51 +0100 | [diff] [blame] | 385 | */ |
| 386 | |
Denys Vlasenko | a527b38 | 2016-04-12 12:39:12 -0400 | [diff] [blame] | 387 | static void do_error(struct gfs2_glock *gl, const int ret) |
Steven Whitehouse | d5341a9 | 2010-07-23 14:05:51 +0100 | [diff] [blame] | 388 | { |
| 389 | struct gfs2_holder *gh, *tmp; |
| 390 | |
| 391 | list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) { |
Bob Peterson | dc73290 | 2021-08-19 20:51:23 +0200 | [diff] [blame] | 392 | if (!test_bit(HIF_WAIT, &gh->gh_iflags)) |
Steven Whitehouse | d5341a9 | 2010-07-23 14:05:51 +0100 | [diff] [blame] | 393 | continue; |
| 394 | if (ret & LM_OUT_ERROR) |
| 395 | gh->gh_error = -EIO; |
| 396 | else if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) |
| 397 | gh->gh_error = GLR_TRYFAILED; |
| 398 | else |
| 399 | continue; |
| 400 | list_del_init(&gh->gh_list); |
| 401 | trace_gfs2_glock_queue(gh, 0); |
| 402 | gfs2_holder_wake(gh); |
| 403 | } |
| 404 | } |
| 405 | |
| 406 | /** |
Bob Peterson | dc73290 | 2021-08-19 20:51:23 +0200 | [diff] [blame] | 407 | * demote_incompat_holders - demote incompatible demoteable holders |
| 408 | * @gl: the glock we want to promote |
| 409 | * @new_gh: the new holder to be promoted |
| 410 | */ |
| 411 | static void demote_incompat_holders(struct gfs2_glock *gl, |
| 412 | struct gfs2_holder *new_gh) |
| 413 | { |
Andreas Gruenbacher | a7ac203 | 2021-11-08 16:08:07 +0100 | [diff] [blame] | 414 | struct gfs2_holder *gh, *tmp; |
Bob Peterson | dc73290 | 2021-08-19 20:51:23 +0200 | [diff] [blame] | 415 | |
| 416 | /* |
| 417 | * Demote incompatible holders before we make ourselves eligible. |
| 418 | * (This holder may or may not allow auto-demoting, but we don't want |
| 419 | * to demote the new holder before it's even granted.) |
| 420 | */ |
Andreas Gruenbacher | a7ac203 | 2021-11-08 16:08:07 +0100 | [diff] [blame] | 421 | list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) { |
Bob Peterson | dc73290 | 2021-08-19 20:51:23 +0200 | [diff] [blame] | 422 | /* |
| 423 | * Since holders are at the front of the list, we stop when we |
| 424 | * find the first non-holder. |
| 425 | */ |
| 426 | if (!test_bit(HIF_HOLDER, &gh->gh_iflags)) |
| 427 | return; |
| 428 | if (test_bit(HIF_MAY_DEMOTE, &gh->gh_iflags) && |
| 429 | !may_grant(gl, new_gh, gh)) { |
| 430 | /* |
| 431 | * We should not recurse into do_promote because |
| 432 | * __gfs2_glock_dq only calls handle_callback, |
| 433 | * gfs2_glock_add_to_lru and __gfs2_glock_queue_work. |
| 434 | */ |
| 435 | __gfs2_glock_dq(gh); |
| 436 | } |
| 437 | } |
| 438 | } |
| 439 | |
| 440 | /** |
Andreas Gruenbacher | 6144464 | 2021-08-10 00:43:55 +0200 | [diff] [blame] | 441 | * find_first_holder - find the first "holder" gh |
| 442 | * @gl: the glock |
| 443 | */ |
| 444 | |
| 445 | static inline struct gfs2_holder *find_first_holder(const struct gfs2_glock *gl) |
| 446 | { |
| 447 | struct gfs2_holder *gh; |
| 448 | |
| 449 | if (!list_empty(&gl->gl_holders)) { |
| 450 | gh = list_first_entry(&gl->gl_holders, struct gfs2_holder, |
| 451 | gh_list); |
| 452 | if (test_bit(HIF_HOLDER, &gh->gh_iflags)) |
| 453 | return gh; |
| 454 | } |
| 455 | return NULL; |
| 456 | } |
| 457 | |
| 458 | /** |
Bob Peterson | dc73290 | 2021-08-19 20:51:23 +0200 | [diff] [blame] | 459 | * find_first_strong_holder - find the first non-demoteable holder |
| 460 | * @gl: the glock |
| 461 | * |
| 462 | * Find the first holder that doesn't have the HIF_MAY_DEMOTE flag set. |
| 463 | */ |
| 464 | static inline struct gfs2_holder * |
| 465 | find_first_strong_holder(struct gfs2_glock *gl) |
| 466 | { |
| 467 | struct gfs2_holder *gh; |
| 468 | |
| 469 | list_for_each_entry(gh, &gl->gl_holders, gh_list) { |
| 470 | if (!test_bit(HIF_HOLDER, &gh->gh_iflags)) |
| 471 | return NULL; |
| 472 | if (!test_bit(HIF_MAY_DEMOTE, &gh->gh_iflags)) |
| 473 | return gh; |
| 474 | } |
| 475 | return NULL; |
| 476 | } |
| 477 | |
Bob Peterson | e6f8560 | 2021-10-06 08:59:52 -0500 | [diff] [blame] | 478 | /* |
| 479 | * gfs2_instantiate - Call the glops instantiate function |
Andreas Gruenbacher | 3c5c67e | 2021-11-29 21:56:16 +0100 | [diff] [blame] | 480 | * @gh: The glock holder |
Bob Peterson | e6f8560 | 2021-10-06 08:59:52 -0500 | [diff] [blame] | 481 | * |
| 482 | * Returns: 0 if instantiate was successful, 2 if type specific operation is |
| 483 | * underway, or error. |
| 484 | */ |
Bob Peterson | f2e70d8 | 2021-10-06 09:29:18 -0500 | [diff] [blame] | 485 | int gfs2_instantiate(struct gfs2_holder *gh) |
Bob Peterson | e6f8560 | 2021-10-06 08:59:52 -0500 | [diff] [blame] | 486 | { |
| 487 | struct gfs2_glock *gl = gh->gh_gl; |
| 488 | const struct gfs2_glock_operations *glops = gl->gl_ops; |
Bob Peterson | f2e70d8 | 2021-10-06 09:29:18 -0500 | [diff] [blame] | 489 | int ret; |
Bob Peterson | e6f8560 | 2021-10-06 08:59:52 -0500 | [diff] [blame] | 490 | |
Bob Peterson | f2e70d8 | 2021-10-06 09:29:18 -0500 | [diff] [blame] | 491 | again: |
| 492 | if (!test_bit(GLF_INSTANTIATE_NEEDED, &gl->gl_flags)) |
| 493 | return 0; |
| 494 | |
| 495 | /* |
| 496 | * Since we unlock the lockref lock, we set a flag to indicate |
| 497 | * instantiate is in progress. |
| 498 | */ |
Andreas Gruenbacher | 7a92dea | 2021-11-03 16:15:51 +0100 | [diff] [blame] | 499 | if (test_and_set_bit(GLF_INSTANTIATE_IN_PROG, &gl->gl_flags)) { |
Bob Peterson | f2e70d8 | 2021-10-06 09:29:18 -0500 | [diff] [blame] | 500 | wait_on_bit(&gl->gl_flags, GLF_INSTANTIATE_IN_PROG, |
| 501 | TASK_UNINTERRUPTIBLE); |
| 502 | /* |
| 503 | * Here we just waited for a different instantiate to finish. |
| 504 | * But that may not have been successful, as when a process |
| 505 | * locks an inode glock _before_ it has an actual inode to |
| 506 | * instantiate into. So we check again. This process might |
| 507 | * have an inode to instantiate, so might be successful. |
| 508 | */ |
| 509 | goto again; |
| 510 | } |
| 511 | |
Bob Peterson | f2e70d8 | 2021-10-06 09:29:18 -0500 | [diff] [blame] | 512 | ret = glops->go_instantiate(gh); |
| 513 | if (!ret) |
| 514 | clear_bit(GLF_INSTANTIATE_NEEDED, &gl->gl_flags); |
Andreas Gruenbacher | 7a92dea | 2021-11-03 16:15:51 +0100 | [diff] [blame] | 515 | clear_and_wake_up_bit(GLF_INSTANTIATE_IN_PROG, &gl->gl_flags); |
Bob Peterson | f2e70d8 | 2021-10-06 09:29:18 -0500 | [diff] [blame] | 516 | return ret; |
Bob Peterson | e6f8560 | 2021-10-06 08:59:52 -0500 | [diff] [blame] | 517 | } |
| 518 | |
Bob Peterson | dc73290 | 2021-08-19 20:51:23 +0200 | [diff] [blame] | 519 | /** |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 520 | * do_promote - promote as many requests as possible on the current queue |
| 521 | * @gl: The glock |
| 522 | * |
Steven Whitehouse | 813e0c4 | 2008-11-18 13:38:48 +0000 | [diff] [blame] | 523 | * Returns: 1 if there is a blocked holder at the head of the list, or 2 |
| 524 | * if a type specific operation is underway. |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 525 | */ |
| 526 | |
| 527 | static int do_promote(struct gfs2_glock *gl) |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 528 | __releases(&gl->gl_lockref.lock) |
| 529 | __acquires(&gl->gl_lockref.lock) |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 530 | { |
Andreas Gruenbacher | 6144464 | 2021-08-10 00:43:55 +0200 | [diff] [blame] | 531 | struct gfs2_holder *gh, *tmp, *first_gh; |
Bob Peterson | dc73290 | 2021-08-19 20:51:23 +0200 | [diff] [blame] | 532 | bool incompat_holders_demoted = false; |
Bob Peterson | 60d8bae | 2021-10-06 07:59:59 -0500 | [diff] [blame] | 533 | bool lock_released; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 534 | int ret; |
| 535 | |
| 536 | restart: |
Bob Peterson | dc73290 | 2021-08-19 20:51:23 +0200 | [diff] [blame] | 537 | first_gh = find_first_strong_holder(gl); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 538 | list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) { |
Bob Peterson | 60d8bae | 2021-10-06 07:59:59 -0500 | [diff] [blame] | 539 | lock_released = false; |
| 540 | if (test_bit(HIF_HOLDER, &gh->gh_iflags)) |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 541 | continue; |
Bob Peterson | 17a6ece | 2021-10-06 07:35:04 -0500 | [diff] [blame] | 542 | if (!may_grant(gl, first_gh, gh)) { |
| 543 | /* |
| 544 | * If we get here, it means we may not grant this holder for |
| 545 | * some reason. If this holder is the head of the list, it |
| 546 | * means we have a blocked holder at the head, so return 1. |
| 547 | */ |
| 548 | if (gh->gh_list.prev == &gl->gl_holders) |
| 549 | return 1; |
| 550 | do_error(gl, 0); |
| 551 | break; |
| 552 | } |
| 553 | if (!incompat_holders_demoted) { |
| 554 | demote_incompat_holders(gl, first_gh); |
| 555 | incompat_holders_demoted = true; |
| 556 | first_gh = gh; |
| 557 | } |
Bob Peterson | f2e70d8 | 2021-10-06 09:29:18 -0500 | [diff] [blame] | 558 | if (test_bit(GLF_INSTANTIATE_NEEDED, &gl->gl_flags) && |
Bob Peterson | e6f8560 | 2021-10-06 08:59:52 -0500 | [diff] [blame] | 559 | !(gh->gh_flags & GL_SKIP) && gl->gl_ops->go_instantiate) { |
Bob Peterson | 60d8bae | 2021-10-06 07:59:59 -0500 | [diff] [blame] | 560 | lock_released = true; |
| 561 | spin_unlock(&gl->gl_lockref.lock); |
Bob Peterson | e6f8560 | 2021-10-06 08:59:52 -0500 | [diff] [blame] | 562 | ret = gfs2_instantiate(gh); |
Bob Peterson | 60d8bae | 2021-10-06 07:59:59 -0500 | [diff] [blame] | 563 | spin_lock(&gl->gl_lockref.lock); |
| 564 | if (ret) { |
| 565 | if (ret == 1) |
| 566 | return 2; |
| 567 | gh->gh_error = ret; |
| 568 | list_del_init(&gh->gh_list); |
| 569 | trace_gfs2_glock_queue(gh, 0); |
| 570 | gfs2_holder_wake(gh); |
| 571 | goto restart; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 572 | } |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 573 | } |
Bob Peterson | 17a6ece | 2021-10-06 07:35:04 -0500 | [diff] [blame] | 574 | set_bit(HIF_HOLDER, &gh->gh_iflags); |
| 575 | trace_gfs2_promote(gh); |
| 576 | gfs2_holder_wake(gh); |
Bob Peterson | 60d8bae | 2021-10-06 07:59:59 -0500 | [diff] [blame] | 577 | /* |
| 578 | * If we released the gl_lockref.lock the holders list may have |
| 579 | * changed. For that reason, we start again at the start of |
| 580 | * the holders queue. |
| 581 | */ |
| 582 | if (lock_released) |
| 583 | goto restart; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 584 | } |
| 585 | return 0; |
| 586 | } |
| 587 | |
| 588 | /** |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 589 | * find_first_waiter - find the first gh that's waiting for the glock |
| 590 | * @gl: the glock |
| 591 | */ |
| 592 | |
| 593 | static inline struct gfs2_holder *find_first_waiter(const struct gfs2_glock *gl) |
| 594 | { |
| 595 | struct gfs2_holder *gh; |
| 596 | |
| 597 | list_for_each_entry(gh, &gl->gl_holders, gh_list) { |
| 598 | if (!test_bit(HIF_HOLDER, &gh->gh_iflags)) |
| 599 | return gh; |
| 600 | } |
| 601 | return NULL; |
| 602 | } |
| 603 | |
| 604 | /** |
| 605 | * state_change - record that the glock is now in a different state |
| 606 | * @gl: the glock |
Lee Jones | c551f66 | 2021-03-30 17:44:29 +0100 | [diff] [blame] | 607 | * @new_state: the new state |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 608 | */ |
| 609 | |
| 610 | static void state_change(struct gfs2_glock *gl, unsigned int new_state) |
| 611 | { |
| 612 | int held1, held2; |
| 613 | |
| 614 | held1 = (gl->gl_state != LM_ST_UNLOCKED); |
| 615 | held2 = (new_state != LM_ST_UNLOCKED); |
| 616 | |
| 617 | if (held1 != held2) { |
Steven Whitehouse | e66cf16 | 2013-10-15 15:18:08 +0100 | [diff] [blame] | 618 | GLOCK_BUG_ON(gl, __lockref_is_dead(&gl->gl_lockref)); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 619 | if (held2) |
Steven Whitehouse | e66cf16 | 2013-10-15 15:18:08 +0100 | [diff] [blame] | 620 | gl->gl_lockref.count++; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 621 | else |
Steven Whitehouse | e66cf16 | 2013-10-15 15:18:08 +0100 | [diff] [blame] | 622 | gl->gl_lockref.count--; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 623 | } |
Bob Peterson | 7cf8dcd | 2011-06-15 11:41:48 -0400 | [diff] [blame] | 624 | if (new_state != gl->gl_target) |
| 625 | /* shorten our minimum hold time */ |
| 626 | gl->gl_hold_time = max(gl->gl_hold_time - GL_GLOCK_HOLD_DECR, |
| 627 | GL_GLOCK_MIN_HOLD); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 628 | gl->gl_state = new_state; |
| 629 | gl->gl_tchange = jiffies; |
| 630 | } |
| 631 | |
Andreas Gruenbacher | 35b6f8f | 2020-01-17 13:48:49 +0100 | [diff] [blame] | 632 | static void gfs2_set_demote(struct gfs2_glock *gl) |
| 633 | { |
| 634 | struct gfs2_sbd *sdp = gl->gl_name.ln_sbd; |
| 635 | |
| 636 | set_bit(GLF_DEMOTE, &gl->gl_flags); |
| 637 | smp_mb(); |
| 638 | wake_up(&sdp->sd_async_glock_wait); |
| 639 | } |
| 640 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 641 | static void gfs2_demote_wake(struct gfs2_glock *gl) |
| 642 | { |
| 643 | gl->gl_demote_state = LM_ST_EXCLUSIVE; |
| 644 | clear_bit(GLF_DEMOTE, &gl->gl_flags); |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 645 | smp_mb__after_atomic(); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 646 | wake_up_bit(&gl->gl_flags, GLF_DEMOTE); |
| 647 | } |
| 648 | |
| 649 | /** |
| 650 | * finish_xmote - The DLM has replied to one of our lock requests |
| 651 | * @gl: The glock |
| 652 | * @ret: The status from the DLM |
| 653 | * |
| 654 | */ |
| 655 | |
| 656 | static void finish_xmote(struct gfs2_glock *gl, unsigned int ret) |
| 657 | { |
| 658 | const struct gfs2_glock_operations *glops = gl->gl_ops; |
| 659 | struct gfs2_holder *gh; |
| 660 | unsigned state = ret & LM_OUT_ST_MASK; |
Steven Whitehouse | 813e0c4 | 2008-11-18 13:38:48 +0000 | [diff] [blame] | 661 | int rv; |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 662 | |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 663 | spin_lock(&gl->gl_lockref.lock); |
Steven Whitehouse | 6399777 | 2009-06-12 08:49:20 +0100 | [diff] [blame] | 664 | trace_gfs2_glock_state_change(gl, state); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 665 | state_change(gl, state); |
| 666 | gh = find_first_waiter(gl); |
| 667 | |
| 668 | /* Demote to UN request arrived during demote to SH or DF */ |
| 669 | if (test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags) && |
| 670 | state != LM_ST_UNLOCKED && gl->gl_demote_state == LM_ST_UNLOCKED) |
| 671 | gl->gl_target = LM_ST_UNLOCKED; |
| 672 | |
| 673 | /* Check for state != intended state */ |
| 674 | if (unlikely(state != gl->gl_target)) { |
| 675 | if (gh && !test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags)) { |
| 676 | /* move to back of queue and try next entry */ |
| 677 | if (ret & LM_OUT_CANCELED) { |
| 678 | if ((gh->gh_flags & LM_FLAG_PRIORITY) == 0) |
| 679 | list_move_tail(&gh->gh_list, &gl->gl_holders); |
| 680 | gh = find_first_waiter(gl); |
| 681 | gl->gl_target = gh->gh_state; |
| 682 | goto retry; |
| 683 | } |
| 684 | /* Some error or failed "try lock" - report it */ |
| 685 | if ((ret & LM_OUT_ERROR) || |
| 686 | (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) { |
| 687 | gl->gl_target = gl->gl_state; |
| 688 | do_error(gl, ret); |
| 689 | goto out; |
| 690 | } |
| 691 | } |
| 692 | switch(state) { |
| 693 | /* Unlocked due to conversion deadlock, try again */ |
| 694 | case LM_ST_UNLOCKED: |
| 695 | retry: |
| 696 | do_xmote(gl, gh, gl->gl_target); |
| 697 | break; |
| 698 | /* Conversion fails, unlock and try again */ |
| 699 | case LM_ST_SHARED: |
| 700 | case LM_ST_DEFERRED: |
| 701 | do_xmote(gl, gh, LM_ST_UNLOCKED); |
| 702 | break; |
| 703 | default: /* Everything else */ |
Bob Peterson | e54c78a | 2018-10-03 08:47:36 -0500 | [diff] [blame] | 704 | fs_err(gl->gl_name.ln_sbd, "wanted %u got %u\n", |
| 705 | gl->gl_target, state); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 706 | GLOCK_BUG_ON(gl, 1); |
| 707 | } |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 708 | spin_unlock(&gl->gl_lockref.lock); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 709 | return; |
| 710 | } |
| 711 | |
| 712 | /* Fast path - we got what we asked for */ |
| 713 | if (test_and_clear_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags)) |
| 714 | gfs2_demote_wake(gl); |
| 715 | if (state != LM_ST_UNLOCKED) { |
| 716 | if (glops->go_xmote_bh) { |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 717 | spin_unlock(&gl->gl_lockref.lock); |
Bob Peterson | f68effb | 2021-03-19 07:56:44 -0400 | [diff] [blame] | 718 | rv = glops->go_xmote_bh(gl); |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 719 | spin_lock(&gl->gl_lockref.lock); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 720 | if (rv) { |
| 721 | do_error(gl, rv); |
| 722 | goto out; |
| 723 | } |
| 724 | } |
Steven Whitehouse | 813e0c4 | 2008-11-18 13:38:48 +0000 | [diff] [blame] | 725 | rv = do_promote(gl); |
| 726 | if (rv == 2) |
| 727 | goto out_locked; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 728 | } |
| 729 | out: |
| 730 | clear_bit(GLF_LOCK, &gl->gl_flags); |
Steven Whitehouse | 813e0c4 | 2008-11-18 13:38:48 +0000 | [diff] [blame] | 731 | out_locked: |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 732 | spin_unlock(&gl->gl_lockref.lock); |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 733 | } |
| 734 | |
Bob Peterson | 865cc3e | 2021-05-18 09:14:31 -0400 | [diff] [blame] | 735 | static bool is_system_glock(struct gfs2_glock *gl) |
| 736 | { |
| 737 | struct gfs2_sbd *sdp = gl->gl_name.ln_sbd; |
| 738 | struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode); |
| 739 | |
| 740 | if (gl == m_ip->i_gl) |
| 741 | return true; |
| 742 | return false; |
| 743 | } |
| 744 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 745 | /** |
| 746 | * do_xmote - Calls the DLM to change the state of a lock |
| 747 | * @gl: The lock state |
| 748 | * @gh: The holder (only for promotes) |
| 749 | * @target: The target lock state |
| 750 | * |
| 751 | */ |
| 752 | |
| 753 | static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target) |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 754 | __releases(&gl->gl_lockref.lock) |
| 755 | __acquires(&gl->gl_lockref.lock) |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 756 | { |
| 757 | const struct gfs2_glock_operations *glops = gl->gl_ops; |
Bob Peterson | 15562c4 | 2015-03-16 11:52:05 -0500 | [diff] [blame] | 758 | struct gfs2_sbd *sdp = gl->gl_name.ln_sbd; |
Bob Peterson | b58bf40 | 2015-07-24 09:45:43 -0500 | [diff] [blame] | 759 | unsigned int lck_flags = (unsigned int)(gh ? gh->gh_flags : 0); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 760 | int ret; |
| 761 | |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 762 | if (target != LM_ST_UNLOCKED && glock_blocked_by_withdraw(gl) && |
| 763 | gh && !(gh->gh_flags & LM_FLAG_NOEXP)) |
Bob Peterson | 0d1c7ae | 2017-03-03 12:37:14 -0500 | [diff] [blame] | 764 | return; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 765 | lck_flags &= (LM_FLAG_TRY | LM_FLAG_TRY_1CB | LM_FLAG_NOEXP | |
| 766 | LM_FLAG_PRIORITY); |
Steven Whitehouse | 921169c | 2010-11-29 12:50:38 +0000 | [diff] [blame] | 767 | GLOCK_BUG_ON(gl, gl->gl_state == target); |
| 768 | GLOCK_BUG_ON(gl, gl->gl_state == gl->gl_target); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 769 | if ((target == LM_ST_UNLOCKED || target == LM_ST_DEFERRED) && |
| 770 | glops->go_inval) { |
Bob Peterson | d99724c | 2019-11-15 10:45:41 -0500 | [diff] [blame] | 771 | /* |
| 772 | * If another process is already doing the invalidate, let that |
| 773 | * finish first. The glock state machine will get back to this |
| 774 | * holder again later. |
| 775 | */ |
| 776 | if (test_and_set_bit(GLF_INVALIDATE_IN_PROGRESS, |
| 777 | &gl->gl_flags)) |
| 778 | return; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 779 | do_error(gl, 0); /* Fail queued try locks */ |
| 780 | } |
Steven Whitehouse | 47a2538 | 2010-11-30 15:49:31 +0000 | [diff] [blame] | 781 | gl->gl_req = target; |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 782 | set_bit(GLF_BLOCKING, &gl->gl_flags); |
| 783 | if ((gl->gl_req == LM_ST_UNLOCKED) || |
| 784 | (gl->gl_state == LM_ST_EXCLUSIVE) || |
| 785 | (lck_flags & (LM_FLAG_TRY|LM_FLAG_TRY_1CB))) |
| 786 | clear_bit(GLF_BLOCKING, &gl->gl_flags); |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 787 | spin_unlock(&gl->gl_lockref.lock); |
Bob Peterson | 1c634f9 | 2019-11-13 14:09:28 -0600 | [diff] [blame] | 788 | if (glops->go_sync) { |
| 789 | ret = glops->go_sync(gl); |
| 790 | /* If we had a problem syncing (due to io errors or whatever, |
| 791 | * we should not invalidate the metadata or tell dlm to |
| 792 | * release the glock to other nodes. |
| 793 | */ |
| 794 | if (ret) { |
| 795 | if (cmpxchg(&sdp->sd_log_error, 0, ret)) { |
| 796 | fs_err(sdp, "Error %d syncing glock \n", ret); |
| 797 | gfs2_dump_glock(NULL, gl, true); |
| 798 | } |
Bob Peterson | b11e1a8 | 2020-05-07 12:12:23 -0500 | [diff] [blame] | 799 | goto skip_inval; |
Bob Peterson | 1c634f9 | 2019-11-13 14:09:28 -0600 | [diff] [blame] | 800 | } |
| 801 | } |
Bob Peterson | 33dbd1e | 2019-05-22 09:21:21 -0500 | [diff] [blame] | 802 | if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags)) { |
| 803 | /* |
| 804 | * The call to go_sync should have cleared out the ail list. |
| 805 | * If there are still items, we have a problem. We ought to |
| 806 | * withdraw, but we can't because the withdraw code also uses |
| 807 | * glocks. Warn about the error, dump the glock, then fall |
| 808 | * through and wait for logd to do the withdraw for us. |
| 809 | */ |
| 810 | if ((atomic_read(&gl->gl_ail_count) != 0) && |
| 811 | (!cmpxchg(&sdp->sd_log_error, 0, -EIO))) { |
Bob Peterson | ea4e61c | 2020-05-23 08:13:50 -0500 | [diff] [blame] | 812 | gfs2_glock_assert_warn(gl, |
| 813 | !atomic_read(&gl->gl_ail_count)); |
Bob Peterson | 33dbd1e | 2019-05-22 09:21:21 -0500 | [diff] [blame] | 814 | gfs2_dump_glock(NULL, gl, true); |
| 815 | } |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 816 | glops->go_inval(gl, target == LM_ST_DEFERRED ? 0 : DIO_METADATA); |
Bob Peterson | 33dbd1e | 2019-05-22 09:21:21 -0500 | [diff] [blame] | 817 | clear_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags); |
| 818 | } |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 819 | |
Bob Peterson | b11e1a8 | 2020-05-07 12:12:23 -0500 | [diff] [blame] | 820 | skip_inval: |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 821 | gfs2_glock_hold(gl); |
Bob Peterson | d93ae38 | 2019-04-29 13:14:58 -0600 | [diff] [blame] | 822 | /* |
| 823 | * Check for an error encountered since we called go_sync and go_inval. |
| 824 | * If so, we can't withdraw from the glock code because the withdraw |
| 825 | * code itself uses glocks (see function signal_our_withdraw) to |
| 826 | * change the mount to read-only. Most importantly, we must not call |
| 827 | * dlm to unlock the glock until the journal is in a known good state |
| 828 | * (after journal replay) otherwise other nodes may use the object |
| 829 | * (rgrp or dinode) and then later, journal replay will corrupt the |
| 830 | * file system. The best we can do here is wait for the logd daemon |
| 831 | * to see sd_log_error and withdraw, and in the meantime, requeue the |
| 832 | * work for later. |
| 833 | * |
Bob Peterson | 865cc3e | 2021-05-18 09:14:31 -0400 | [diff] [blame] | 834 | * We make a special exception for some system glocks, such as the |
| 835 | * system statfs inode glock, which needs to be granted before the |
| 836 | * gfs2_quotad daemon can exit, and that exit needs to finish before |
| 837 | * we can unmount the withdrawn file system. |
| 838 | * |
Bob Peterson | d93ae38 | 2019-04-29 13:14:58 -0600 | [diff] [blame] | 839 | * However, if we're just unlocking the lock (say, for unmount, when |
| 840 | * gfs2_gl_hash_clear calls clear_glock) and recovery is complete |
| 841 | * then it's okay to tell dlm to unlock it. |
| 842 | */ |
| 843 | if (unlikely(sdp->sd_log_error && !gfs2_withdrawn(sdp))) |
| 844 | gfs2_withdraw_delayed(sdp); |
Bob Peterson | 865cc3e | 2021-05-18 09:14:31 -0400 | [diff] [blame] | 845 | if (glock_blocked_by_withdraw(gl) && |
| 846 | (target != LM_ST_UNLOCKED || |
| 847 | test_bit(SDF_WITHDRAW_RECOVERY, &sdp->sd_flags))) { |
| 848 | if (!is_system_glock(gl)) { |
Bob Peterson | d93ae38 | 2019-04-29 13:14:58 -0600 | [diff] [blame] | 849 | gfs2_glock_queue_work(gl, GL_GLOCK_DFT_HOLD); |
| 850 | goto out; |
Bob Peterson | 865cc3e | 2021-05-18 09:14:31 -0400 | [diff] [blame] | 851 | } else { |
| 852 | clear_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags); |
Bob Peterson | d93ae38 | 2019-04-29 13:14:58 -0600 | [diff] [blame] | 853 | } |
| 854 | } |
| 855 | |
Steven Whitehouse | 921169c | 2010-11-29 12:50:38 +0000 | [diff] [blame] | 856 | if (sdp->sd_lockstruct.ls_ops->lm_lock) { |
| 857 | /* lock_dlm */ |
| 858 | ret = sdp->sd_lockstruct.ls_ops->lm_lock(gl, target, lck_flags); |
Benjamin Marzinski | 3e11e530 | 2016-03-23 14:29:59 -0400 | [diff] [blame] | 859 | if (ret == -EINVAL && gl->gl_target == LM_ST_UNLOCKED && |
| 860 | target == LM_ST_UNLOCKED && |
| 861 | test_bit(SDF_SKIP_DLM_UNLOCK, &sdp->sd_flags)) { |
| 862 | finish_xmote(gl, target); |
Andreas Gruenbacher | 6b0c744 | 2017-06-30 08:10:01 -0500 | [diff] [blame] | 863 | gfs2_glock_queue_work(gl, 0); |
Bob Peterson | d93ae38 | 2019-04-29 13:14:58 -0600 | [diff] [blame] | 864 | } else if (ret) { |
Bob Peterson | e54c78a | 2018-10-03 08:47:36 -0500 | [diff] [blame] | 865 | fs_err(sdp, "lm_lock ret %d\n", ret); |
Bob Peterson | eb43e66 | 2019-11-14 09:52:15 -0500 | [diff] [blame] | 866 | GLOCK_BUG_ON(gl, !gfs2_withdrawn(sdp)); |
David Teigland | dba2d70 | 2012-11-14 13:46:53 -0500 | [diff] [blame] | 867 | } |
Steven Whitehouse | 921169c | 2010-11-29 12:50:38 +0000 | [diff] [blame] | 868 | } else { /* lock_nolock */ |
| 869 | finish_xmote(gl, target); |
Andreas Gruenbacher | 6b0c744 | 2017-06-30 08:10:01 -0500 | [diff] [blame] | 870 | gfs2_glock_queue_work(gl, 0); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 871 | } |
Bob Peterson | d93ae38 | 2019-04-29 13:14:58 -0600 | [diff] [blame] | 872 | out: |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 873 | spin_lock(&gl->gl_lockref.lock); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 874 | } |
| 875 | |
| 876 | /** |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 877 | * run_queue - do all outstanding tasks related to a glock |
| 878 | * @gl: The glock in question |
| 879 | * @nonblock: True if we must not block in run_queue |
| 880 | * |
| 881 | */ |
| 882 | |
| 883 | static void run_queue(struct gfs2_glock *gl, const int nonblock) |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 884 | __releases(&gl->gl_lockref.lock) |
| 885 | __acquires(&gl->gl_lockref.lock) |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 886 | { |
| 887 | struct gfs2_holder *gh = NULL; |
Steven Whitehouse | 813e0c4 | 2008-11-18 13:38:48 +0000 | [diff] [blame] | 888 | int ret; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 889 | |
| 890 | if (test_and_set_bit(GLF_LOCK, &gl->gl_flags)) |
| 891 | return; |
| 892 | |
| 893 | GLOCK_BUG_ON(gl, test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags)); |
| 894 | |
| 895 | if (test_bit(GLF_DEMOTE, &gl->gl_flags) && |
| 896 | gl->gl_demote_state != gl->gl_state) { |
| 897 | if (find_first_holder(gl)) |
Steven Whitehouse | d8348de | 2009-02-05 10:12:38 +0000 | [diff] [blame] | 898 | goto out_unlock; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 899 | if (nonblock) |
| 900 | goto out_sched; |
| 901 | set_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags); |
Steven Whitehouse | 265d529c | 2008-07-07 10:02:36 +0100 | [diff] [blame] | 902 | GLOCK_BUG_ON(gl, gl->gl_demote_state == LM_ST_EXCLUSIVE); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 903 | gl->gl_target = gl->gl_demote_state; |
| 904 | } else { |
| 905 | if (test_bit(GLF_DEMOTE, &gl->gl_flags)) |
| 906 | gfs2_demote_wake(gl); |
Steven Whitehouse | 813e0c4 | 2008-11-18 13:38:48 +0000 | [diff] [blame] | 907 | ret = do_promote(gl); |
| 908 | if (ret == 0) |
Steven Whitehouse | d8348de | 2009-02-05 10:12:38 +0000 | [diff] [blame] | 909 | goto out_unlock; |
Steven Whitehouse | 813e0c4 | 2008-11-18 13:38:48 +0000 | [diff] [blame] | 910 | if (ret == 2) |
Steven Whitehouse | a228df6 | 2009-04-07 14:01:34 +0100 | [diff] [blame] | 911 | goto out; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 912 | gh = find_first_waiter(gl); |
| 913 | gl->gl_target = gh->gh_state; |
| 914 | if (!(gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) |
| 915 | do_error(gl, 0); /* Fail queued try locks */ |
| 916 | } |
| 917 | do_xmote(gl, gh, gl->gl_target); |
Steven Whitehouse | a228df6 | 2009-04-07 14:01:34 +0100 | [diff] [blame] | 918 | out: |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 919 | return; |
| 920 | |
| 921 | out_sched: |
Steven Whitehouse | 7e71c55 | 2009-09-22 10:56:16 +0100 | [diff] [blame] | 922 | clear_bit(GLF_LOCK, &gl->gl_flags); |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 923 | smp_mb__after_atomic(); |
Steven Whitehouse | e66cf16 | 2013-10-15 15:18:08 +0100 | [diff] [blame] | 924 | gl->gl_lockref.count++; |
Andreas Gruenbacher | 6b0c744 | 2017-06-30 08:10:01 -0500 | [diff] [blame] | 925 | __gfs2_glock_queue_work(gl, 0); |
Steven Whitehouse | 7e71c55 | 2009-09-22 10:56:16 +0100 | [diff] [blame] | 926 | return; |
| 927 | |
Steven Whitehouse | d8348de | 2009-02-05 10:12:38 +0000 | [diff] [blame] | 928 | out_unlock: |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 929 | clear_bit(GLF_LOCK, &gl->gl_flags); |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 930 | smp_mb__after_atomic(); |
Steven Whitehouse | 7e71c55 | 2009-09-22 10:56:16 +0100 | [diff] [blame] | 931 | return; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 932 | } |
| 933 | |
Andreas Gruenbacher | f286d62 | 2020-01-13 21:21:49 +0100 | [diff] [blame] | 934 | void gfs2_inode_remember_delete(struct gfs2_glock *gl, u64 generation) |
| 935 | { |
| 936 | struct gfs2_inode_lvb *ri = (void *)gl->gl_lksb.sb_lvbptr; |
| 937 | |
| 938 | if (ri->ri_magic == 0) |
| 939 | ri->ri_magic = cpu_to_be32(GFS2_MAGIC); |
| 940 | if (ri->ri_magic == cpu_to_be32(GFS2_MAGIC)) |
| 941 | ri->ri_generation_deleted = cpu_to_be64(generation); |
| 942 | } |
| 943 | |
| 944 | bool gfs2_inode_already_deleted(struct gfs2_glock *gl, u64 generation) |
| 945 | { |
| 946 | struct gfs2_inode_lvb *ri = (void *)gl->gl_lksb.sb_lvbptr; |
| 947 | |
| 948 | if (ri->ri_magic != cpu_to_be32(GFS2_MAGIC)) |
| 949 | return false; |
| 950 | return generation <= be64_to_cpu(ri->ri_generation_deleted); |
| 951 | } |
| 952 | |
Andreas Gruenbacher | 9e8990d | 2020-01-17 10:53:23 +0100 | [diff] [blame] | 953 | static void gfs2_glock_poke(struct gfs2_glock *gl) |
| 954 | { |
| 955 | int flags = LM_FLAG_TRY_1CB | LM_FLAG_ANY | GL_SKIP; |
| 956 | struct gfs2_holder gh; |
| 957 | int error; |
| 958 | |
Andreas Gruenbacher | b016d9a | 2021-09-30 13:49:36 -0500 | [diff] [blame] | 959 | __gfs2_holder_init(gl, LM_ST_SHARED, flags, &gh, _RET_IP_); |
Andreas Gruenbacher | c07bfb4 | 2020-07-27 19:18:57 +0200 | [diff] [blame] | 960 | error = gfs2_glock_nq(&gh); |
Andreas Gruenbacher | 9e8990d | 2020-01-17 10:53:23 +0100 | [diff] [blame] | 961 | if (!error) |
| 962 | gfs2_glock_dq(&gh); |
Andreas Gruenbacher | c07bfb4 | 2020-07-27 19:18:57 +0200 | [diff] [blame] | 963 | gfs2_holder_uninit(&gh); |
Andreas Gruenbacher | 9e8990d | 2020-01-17 10:53:23 +0100 | [diff] [blame] | 964 | } |
| 965 | |
Andreas Gruenbacher | 8c7b926 | 2020-01-13 22:16:17 +0100 | [diff] [blame] | 966 | static bool gfs2_try_evict(struct gfs2_glock *gl) |
| 967 | { |
| 968 | struct gfs2_inode *ip; |
| 969 | bool evicted = false; |
| 970 | |
| 971 | /* |
| 972 | * If there is contention on the iopen glock and we have an inode, try |
| 973 | * to grab and release the inode so that it can be evicted. This will |
| 974 | * allow the remote node to go ahead and delete the inode without us |
| 975 | * having to do it, which will avoid rgrp glock thrashing. |
| 976 | * |
| 977 | * The remote node is likely still holding the corresponding inode |
| 978 | * glock, so it will run before we get to verify that the delete has |
| 979 | * happened below. |
| 980 | */ |
| 981 | spin_lock(&gl->gl_lockref.lock); |
| 982 | ip = gl->gl_object; |
| 983 | if (ip && !igrab(&ip->i_inode)) |
| 984 | ip = NULL; |
| 985 | spin_unlock(&gl->gl_lockref.lock); |
| 986 | if (ip) { |
Andreas Gruenbacher | 9e8990d | 2020-01-17 10:53:23 +0100 | [diff] [blame] | 987 | struct gfs2_glock *inode_gl = NULL; |
| 988 | |
Andreas Gruenbacher | b0dcffd | 2020-01-15 09:54:14 +0100 | [diff] [blame] | 989 | gl->gl_no_formal_ino = ip->i_no_formal_ino; |
Andreas Gruenbacher | 8c7b926 | 2020-01-13 22:16:17 +0100 | [diff] [blame] | 990 | set_bit(GIF_DEFERRED_DELETE, &ip->i_flags); |
| 991 | d_prune_aliases(&ip->i_inode); |
| 992 | iput(&ip->i_inode); |
| 993 | |
| 994 | /* If the inode was evicted, gl->gl_object will now be NULL. */ |
| 995 | spin_lock(&gl->gl_lockref.lock); |
| 996 | ip = gl->gl_object; |
Andreas Gruenbacher | 9e8990d | 2020-01-17 10:53:23 +0100 | [diff] [blame] | 997 | if (ip) { |
| 998 | inode_gl = ip->i_gl; |
| 999 | lockref_get(&inode_gl->gl_lockref); |
Andreas Gruenbacher | 8c7b926 | 2020-01-13 22:16:17 +0100 | [diff] [blame] | 1000 | clear_bit(GIF_DEFERRED_DELETE, &ip->i_flags); |
Andreas Gruenbacher | 9e8990d | 2020-01-17 10:53:23 +0100 | [diff] [blame] | 1001 | } |
Andreas Gruenbacher | 8c7b926 | 2020-01-13 22:16:17 +0100 | [diff] [blame] | 1002 | spin_unlock(&gl->gl_lockref.lock); |
Andreas Gruenbacher | 9e8990d | 2020-01-17 10:53:23 +0100 | [diff] [blame] | 1003 | if (inode_gl) { |
| 1004 | gfs2_glock_poke(inode_gl); |
| 1005 | gfs2_glock_put(inode_gl); |
| 1006 | } |
Andreas Gruenbacher | 8c7b926 | 2020-01-13 22:16:17 +0100 | [diff] [blame] | 1007 | evicted = !ip; |
| 1008 | } |
| 1009 | return evicted; |
| 1010 | } |
| 1011 | |
Benjamin Marzinski | b94a170 | 2009-07-23 18:52:34 -0500 | [diff] [blame] | 1012 | static void delete_work_func(struct work_struct *work) |
| 1013 | { |
Andreas Gruenbacher | a0e3cc6 | 2020-01-16 20:12:26 +0100 | [diff] [blame] | 1014 | struct delayed_work *dwork = to_delayed_work(work); |
| 1015 | struct gfs2_glock *gl = container_of(dwork, struct gfs2_glock, gl_delete); |
Bob Peterson | 15562c4 | 2015-03-16 11:52:05 -0500 | [diff] [blame] | 1016 | struct gfs2_sbd *sdp = gl->gl_name.ln_sbd; |
Andreas Gruenbacher | ec5ec66 | 2016-06-14 12:23:59 -0500 | [diff] [blame] | 1017 | struct inode *inode; |
Steven Whitehouse | 044b941 | 2010-11-03 20:01:07 +0000 | [diff] [blame] | 1018 | u64 no_addr = gl->gl_name.ln_number; |
Benjamin Marzinski | b94a170 | 2009-07-23 18:52:34 -0500 | [diff] [blame] | 1019 | |
Andreas Gruenbacher | a0e3cc6 | 2020-01-16 20:12:26 +0100 | [diff] [blame] | 1020 | spin_lock(&gl->gl_lockref.lock); |
| 1021 | clear_bit(GLF_PENDING_DELETE, &gl->gl_flags); |
| 1022 | spin_unlock(&gl->gl_lockref.lock); |
| 1023 | |
Andreas Gruenbacher | 8c7b926 | 2020-01-13 22:16:17 +0100 | [diff] [blame] | 1024 | if (test_bit(GLF_DEMOTE, &gl->gl_flags)) { |
| 1025 | /* |
| 1026 | * If we can evict the inode, give the remote node trying to |
| 1027 | * delete the inode some time before verifying that the delete |
| 1028 | * has happened. Otherwise, if we cause contention on the inode glock |
| 1029 | * immediately, the remote node will think that we still have |
| 1030 | * the inode in use, and so it will give up waiting. |
Andreas Gruenbacher | 9e8990d | 2020-01-17 10:53:23 +0100 | [diff] [blame] | 1031 | * |
| 1032 | * If we can't evict the inode, signal to the remote node that |
| 1033 | * the inode is still in use. We'll later try to delete the |
| 1034 | * inode locally in gfs2_evict_inode. |
| 1035 | * |
| 1036 | * FIXME: We only need to verify that the remote node has |
| 1037 | * deleted the inode because nodes before this remote delete |
| 1038 | * rework won't cooperate. At a later time, when we no longer |
| 1039 | * care about compatibility with such nodes, we can skip this |
| 1040 | * step entirely. |
Andreas Gruenbacher | 8c7b926 | 2020-01-13 22:16:17 +0100 | [diff] [blame] | 1041 | */ |
| 1042 | if (gfs2_try_evict(gl)) { |
| 1043 | if (gfs2_queue_delete_work(gl, 5 * HZ)) |
| 1044 | return; |
Andreas Gruenbacher | 8c7b926 | 2020-01-13 22:16:17 +0100 | [diff] [blame] | 1045 | } |
Andreas Gruenbacher | 9e8990d | 2020-01-17 10:53:23 +0100 | [diff] [blame] | 1046 | goto out; |
Andreas Gruenbacher | 8c7b926 | 2020-01-13 22:16:17 +0100 | [diff] [blame] | 1047 | } |
| 1048 | |
Andreas Gruenbacher | b0dcffd | 2020-01-15 09:54:14 +0100 | [diff] [blame] | 1049 | inode = gfs2_lookup_by_inum(sdp, no_addr, gl->gl_no_formal_ino, |
| 1050 | GFS2_BLKST_UNLINKED); |
Kefeng Wang | 15a798f | 2019-06-05 22:24:24 +0800 | [diff] [blame] | 1051 | if (!IS_ERR_OR_NULL(inode)) { |
Steven Whitehouse | 044b941 | 2010-11-03 20:01:07 +0000 | [diff] [blame] | 1052 | d_prune_aliases(inode); |
| 1053 | iput(inode); |
Benjamin Marzinski | b94a170 | 2009-07-23 18:52:34 -0500 | [diff] [blame] | 1054 | } |
Bob Peterson | a492386 | 2015-12-07 16:24:27 -0600 | [diff] [blame] | 1055 | out: |
Benjamin Marzinski | b94a170 | 2009-07-23 18:52:34 -0500 | [diff] [blame] | 1056 | gfs2_glock_put(gl); |
| 1057 | } |
| 1058 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1059 | static void glock_work_func(struct work_struct *work) |
| 1060 | { |
| 1061 | unsigned long delay = 0; |
| 1062 | struct gfs2_glock *gl = container_of(work, struct gfs2_glock, gl_work.work); |
Andreas Gruenbacher | 6b0c744 | 2017-06-30 08:10:01 -0500 | [diff] [blame] | 1063 | unsigned int drop_refs = 1; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1064 | |
Steven Whitehouse | 26bb750 | 2009-11-27 10:31:11 +0000 | [diff] [blame] | 1065 | if (test_and_clear_bit(GLF_REPLY_PENDING, &gl->gl_flags)) { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1066 | finish_xmote(gl, gl->gl_reply); |
Andreas Gruenbacher | 6b0c744 | 2017-06-30 08:10:01 -0500 | [diff] [blame] | 1067 | drop_refs++; |
Steven Whitehouse | 26bb750 | 2009-11-27 10:31:11 +0000 | [diff] [blame] | 1068 | } |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 1069 | spin_lock(&gl->gl_lockref.lock); |
Bob Peterson | f90e5b5 | 2011-05-24 10:44:42 -0400 | [diff] [blame] | 1070 | if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) && |
Steven Whitehouse | 265d529c | 2008-07-07 10:02:36 +0100 | [diff] [blame] | 1071 | gl->gl_state != LM_ST_UNLOCKED && |
| 1072 | gl->gl_demote_state != LM_ST_EXCLUSIVE) { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1073 | unsigned long holdtime, now = jiffies; |
Bob Peterson | f90e5b5 | 2011-05-24 10:44:42 -0400 | [diff] [blame] | 1074 | |
Bob Peterson | 7cf8dcd | 2011-06-15 11:41:48 -0400 | [diff] [blame] | 1075 | holdtime = gl->gl_tchange + gl->gl_hold_time; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1076 | if (time_before(now, holdtime)) |
| 1077 | delay = holdtime - now; |
Bob Peterson | f90e5b5 | 2011-05-24 10:44:42 -0400 | [diff] [blame] | 1078 | |
| 1079 | if (!delay) { |
| 1080 | clear_bit(GLF_PENDING_DEMOTE, &gl->gl_flags); |
Andreas Gruenbacher | 35b6f8f | 2020-01-17 13:48:49 +0100 | [diff] [blame] | 1081 | gfs2_set_demote(gl); |
Bob Peterson | f90e5b5 | 2011-05-24 10:44:42 -0400 | [diff] [blame] | 1082 | } |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1083 | } |
| 1084 | run_queue(gl, 0); |
Andreas Gruenbacher | 6b0c744 | 2017-06-30 08:10:01 -0500 | [diff] [blame] | 1085 | if (delay) { |
| 1086 | /* Keep one glock reference for the work we requeue. */ |
| 1087 | drop_refs--; |
Bob Peterson | 7cf8dcd | 2011-06-15 11:41:48 -0400 | [diff] [blame] | 1088 | if (gl->gl_name.ln_type != LM_TYPE_INODE) |
| 1089 | delay = 0; |
Andreas Gruenbacher | 6b0c744 | 2017-06-30 08:10:01 -0500 | [diff] [blame] | 1090 | __gfs2_glock_queue_work(gl, delay); |
Bob Peterson | 7cf8dcd | 2011-06-15 11:41:48 -0400 | [diff] [blame] | 1091 | } |
Andreas Gruenbacher | 6b0c744 | 2017-06-30 08:10:01 -0500 | [diff] [blame] | 1092 | |
| 1093 | /* |
| 1094 | * Drop the remaining glock references manually here. (Mind that |
| 1095 | * __gfs2_glock_queue_work depends on the lockref spinlock begin held |
| 1096 | * here as well.) |
| 1097 | */ |
| 1098 | gl->gl_lockref.count -= drop_refs; |
| 1099 | if (!gl->gl_lockref.count) { |
| 1100 | __gfs2_glock_put(gl); |
| 1101 | return; |
| 1102 | } |
| 1103 | spin_unlock(&gl->gl_lockref.lock); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1104 | } |
| 1105 | |
Andreas Gruenbacher | 0515480 | 2017-08-01 11:18:26 -0500 | [diff] [blame] | 1106 | static struct gfs2_glock *find_insert_glock(struct lm_lockname *name, |
| 1107 | struct gfs2_glock *new) |
| 1108 | { |
| 1109 | struct wait_glock_queue wait; |
Andreas Gruenbacher | a91323e | 2017-08-04 07:40:45 -0500 | [diff] [blame] | 1110 | wait_queue_head_t *wq = glock_waitqueue(name); |
Andreas Gruenbacher | 0515480 | 2017-08-01 11:18:26 -0500 | [diff] [blame] | 1111 | struct gfs2_glock *gl; |
| 1112 | |
Andreas Gruenbacher | a91323e | 2017-08-04 07:40:45 -0500 | [diff] [blame] | 1113 | wait.name = name; |
| 1114 | init_wait(&wait.wait); |
| 1115 | wait.wait.func = glock_wake_function; |
| 1116 | |
Andreas Gruenbacher | 0515480 | 2017-08-01 11:18:26 -0500 | [diff] [blame] | 1117 | again: |
Andreas Gruenbacher | a91323e | 2017-08-04 07:40:45 -0500 | [diff] [blame] | 1118 | prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE); |
Andreas Gruenbacher | 0515480 | 2017-08-01 11:18:26 -0500 | [diff] [blame] | 1119 | rcu_read_lock(); |
| 1120 | if (new) { |
| 1121 | gl = rhashtable_lookup_get_insert_fast(&gl_hash_table, |
| 1122 | &new->gl_node, ht_parms); |
| 1123 | if (IS_ERR(gl)) |
| 1124 | goto out; |
| 1125 | } else { |
| 1126 | gl = rhashtable_lookup_fast(&gl_hash_table, |
| 1127 | name, ht_parms); |
| 1128 | } |
| 1129 | if (gl && !lockref_get_not_dead(&gl->gl_lockref)) { |
| 1130 | rcu_read_unlock(); |
| 1131 | schedule(); |
| 1132 | goto again; |
| 1133 | } |
| 1134 | out: |
| 1135 | rcu_read_unlock(); |
Andreas Gruenbacher | a91323e | 2017-08-04 07:40:45 -0500 | [diff] [blame] | 1136 | finish_wait(wq, &wait.wait); |
Andreas Gruenbacher | 0515480 | 2017-08-01 11:18:26 -0500 | [diff] [blame] | 1137 | return gl; |
| 1138 | } |
| 1139 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1140 | /** |
| 1141 | * gfs2_glock_get() - Get a glock, or create one if one doesn't exist |
| 1142 | * @sdp: The GFS2 superblock |
| 1143 | * @number: the lock number |
| 1144 | * @glops: The glock_operations to use |
| 1145 | * @create: If 0, don't create the glock if it doesn't exist |
| 1146 | * @glp: the glock is returned here |
| 1147 | * |
| 1148 | * This does not lock a glock, just finds/creates structures for one. |
| 1149 | * |
| 1150 | * Returns: errno |
| 1151 | */ |
| 1152 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1153 | int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number, |
Steven Whitehouse | 8fb4b53 | 2006-08-30 09:30:00 -0400 | [diff] [blame] | 1154 | const struct gfs2_glock_operations *glops, int create, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1155 | struct gfs2_glock **glp) |
| 1156 | { |
Steven Whitehouse | 009d851 | 2009-12-08 12:12:13 +0000 | [diff] [blame] | 1157 | struct super_block *s = sdp->sd_vfs; |
Bob Peterson | 15562c4 | 2015-03-16 11:52:05 -0500 | [diff] [blame] | 1158 | struct lm_lockname name = { .ln_number = number, |
| 1159 | .ln_type = glops->go_type, |
| 1160 | .ln_sbd = sdp }; |
Andreas Gruenbacher | 0a52aba | 2017-02-21 23:19:10 +0100 | [diff] [blame] | 1161 | struct gfs2_glock *gl, *tmp; |
Steven Whitehouse | 009d851 | 2009-12-08 12:12:13 +0000 | [diff] [blame] | 1162 | struct address_space *mapping; |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1163 | struct kmem_cache *cachep; |
Andreas Gruenbacher | 0a52aba | 2017-02-21 23:19:10 +0100 | [diff] [blame] | 1164 | int ret = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1165 | |
Andreas Gruenbacher | 0515480 | 2017-08-01 11:18:26 -0500 | [diff] [blame] | 1166 | gl = find_insert_glock(&name, NULL); |
| 1167 | if (gl) { |
| 1168 | *glp = gl; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1169 | return 0; |
Andreas Gruenbacher | 0515480 | 2017-08-01 11:18:26 -0500 | [diff] [blame] | 1170 | } |
Steven Whitehouse | 64d576b | 2009-02-12 13:31:58 +0000 | [diff] [blame] | 1171 | if (!create) |
| 1172 | return -ENOENT; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1173 | |
Steven Whitehouse | 009d851 | 2009-12-08 12:12:13 +0000 | [diff] [blame] | 1174 | if (glops->go_flags & GLOF_ASPACE) |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1175 | cachep = gfs2_glock_aspace_cachep; |
Steven Whitehouse | 009d851 | 2009-12-08 12:12:13 +0000 | [diff] [blame] | 1176 | else |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 1177 | cachep = gfs2_glock_cachep; |
Steven Whitehouse | fe0bbd2 | 2014-06-23 14:50:20 +0100 | [diff] [blame] | 1178 | gl = kmem_cache_alloc(cachep, GFP_NOFS); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1179 | if (!gl) |
| 1180 | return -ENOMEM; |
| 1181 | |
David Teigland | dba2d70 | 2012-11-14 13:46:53 -0500 | [diff] [blame] | 1182 | memset(&gl->gl_lksb, 0, sizeof(struct dlm_lksb)); |
David Teigland | dba2d70 | 2012-11-14 13:46:53 -0500 | [diff] [blame] | 1183 | |
| 1184 | if (glops->go_flags & GLOF_LVB) { |
Andreas Gruenbacher | f7be987 | 2020-01-16 00:25:32 +0100 | [diff] [blame] | 1185 | gl->gl_lksb.sb_lvbptr = kzalloc(GDLM_LVB_SIZE, GFP_NOFS); |
David Teigland | 4e2f884 | 2012-11-14 13:47:37 -0500 | [diff] [blame] | 1186 | if (!gl->gl_lksb.sb_lvbptr) { |
David Teigland | dba2d70 | 2012-11-14 13:46:53 -0500 | [diff] [blame] | 1187 | kmem_cache_free(cachep, gl); |
| 1188 | return -ENOMEM; |
| 1189 | } |
David Teigland | dba2d70 | 2012-11-14 13:46:53 -0500 | [diff] [blame] | 1190 | } |
| 1191 | |
Steven Whitehouse | 8f05228 | 2010-01-29 15:21:27 +0000 | [diff] [blame] | 1192 | atomic_inc(&sdp->sd_glock_disposal); |
Bob Peterson | 88ffbf3 | 2015-03-16 11:02:46 -0500 | [diff] [blame] | 1193 | gl->gl_node.next = NULL; |
Bob Peterson | f2e70d8 | 2021-10-06 09:29:18 -0500 | [diff] [blame] | 1194 | gl->gl_flags = glops->go_instantiate ? BIT(GLF_INSTANTIATE_NEEDED) : 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1195 | gl->gl_name = name; |
Alexander Aring | 515b269 | 2020-11-23 10:53:35 -0500 | [diff] [blame] | 1196 | lockdep_set_subclass(&gl->gl_lockref.lock, glops->go_subclass); |
Steven Whitehouse | e66cf16 | 2013-10-15 15:18:08 +0100 | [diff] [blame] | 1197 | gl->gl_lockref.count = 1; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1198 | gl->gl_state = LM_ST_UNLOCKED; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1199 | gl->gl_target = LM_ST_UNLOCKED; |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 1200 | gl->gl_demote_state = LM_ST_EXCLUSIVE; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1201 | gl->gl_ops = glops; |
Thomas Gleixner | 8b0e195 | 2016-12-25 12:30:41 +0100 | [diff] [blame] | 1202 | gl->gl_dstamp = 0; |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 1203 | preempt_disable(); |
| 1204 | /* We use the global stats to estimate the initial per-glock stats */ |
| 1205 | gl->gl_stats = this_cpu_ptr(sdp->sd_lkstats)->lkstats[glops->go_type]; |
| 1206 | preempt_enable(); |
| 1207 | gl->gl_stats.stats[GFS2_LKS_DCOUNT] = 0; |
| 1208 | gl->gl_stats.stats[GFS2_LKS_QCOUNT] = 0; |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 1209 | gl->gl_tchange = jiffies; |
Steven Whitehouse | ec45d9f | 2006-08-30 10:36:52 -0400 | [diff] [blame] | 1210 | gl->gl_object = NULL; |
Bob Peterson | 7cf8dcd | 2011-06-15 11:41:48 -0400 | [diff] [blame] | 1211 | gl->gl_hold_time = GL_GLOCK_DFT_HOLD; |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 1212 | INIT_DELAYED_WORK(&gl->gl_work, glock_work_func); |
Bob Peterson | 2ffed52 | 2020-10-15 11:16:48 -0500 | [diff] [blame] | 1213 | if (gl->gl_name.ln_type == LM_TYPE_IOPEN) |
| 1214 | INIT_DELAYED_WORK(&gl->gl_delete, delete_work_func); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1215 | |
Steven Whitehouse | 009d851 | 2009-12-08 12:12:13 +0000 | [diff] [blame] | 1216 | mapping = gfs2_glock2aspace(gl); |
| 1217 | if (mapping) { |
| 1218 | mapping->a_ops = &gfs2_meta_aops; |
| 1219 | mapping->host = s->s_bdev->bd_inode; |
| 1220 | mapping->flags = 0; |
| 1221 | mapping_set_gfp_mask(mapping, GFP_NOFS); |
Rafael Aquini | 252aa6f | 2012-12-11 16:02:35 -0800 | [diff] [blame] | 1222 | mapping->private_data = NULL; |
Steven Whitehouse | 009d851 | 2009-12-08 12:12:13 +0000 | [diff] [blame] | 1223 | mapping->writeback_index = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1224 | } |
| 1225 | |
Andreas Gruenbacher | 0515480 | 2017-08-01 11:18:26 -0500 | [diff] [blame] | 1226 | tmp = find_insert_glock(&name, gl); |
Andreas Gruenbacher | 0a52aba | 2017-02-21 23:19:10 +0100 | [diff] [blame] | 1227 | if (!tmp) { |
Bob Peterson | 88ffbf3 | 2015-03-16 11:02:46 -0500 | [diff] [blame] | 1228 | *glp = gl; |
Andreas Gruenbacher | 0a52aba | 2017-02-21 23:19:10 +0100 | [diff] [blame] | 1229 | goto out; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1230 | } |
Andreas Gruenbacher | 0a52aba | 2017-02-21 23:19:10 +0100 | [diff] [blame] | 1231 | if (IS_ERR(tmp)) { |
| 1232 | ret = PTR_ERR(tmp); |
| 1233 | goto out_free; |
| 1234 | } |
Andreas Gruenbacher | 0515480 | 2017-08-01 11:18:26 -0500 | [diff] [blame] | 1235 | *glp = tmp; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1236 | |
Andreas Gruenbacher | 0a52aba | 2017-02-21 23:19:10 +0100 | [diff] [blame] | 1237 | out_free: |
Bob Peterson | 88ffbf3 | 2015-03-16 11:02:46 -0500 | [diff] [blame] | 1238 | kfree(gl->gl_lksb.sb_lvbptr); |
| 1239 | kmem_cache_free(cachep, gl); |
Alexander Aring | da7d554 | 2020-10-26 10:52:29 -0400 | [diff] [blame] | 1240 | if (atomic_dec_and_test(&sdp->sd_glock_disposal)) |
| 1241 | wake_up(&sdp->sd_glock_wait); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1242 | |
Andreas Gruenbacher | 0a52aba | 2017-02-21 23:19:10 +0100 | [diff] [blame] | 1243 | out: |
Bob Peterson | 88ffbf3 | 2015-03-16 11:02:46 -0500 | [diff] [blame] | 1244 | return ret; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1245 | } |
| 1246 | |
| 1247 | /** |
Andreas Gruenbacher | ffd0cd3 | 2021-11-18 20:33:00 +0100 | [diff] [blame] | 1248 | * __gfs2_holder_init - initialize a struct gfs2_holder in the default way |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1249 | * @gl: the glock |
| 1250 | * @state: the state we're requesting |
| 1251 | * @flags: the modifier flags |
| 1252 | * @gh: the holder structure |
| 1253 | * |
| 1254 | */ |
| 1255 | |
Andreas Gruenbacher | b016d9a | 2021-09-30 13:49:36 -0500 | [diff] [blame] | 1256 | void __gfs2_holder_init(struct gfs2_glock *gl, unsigned int state, u16 flags, |
| 1257 | struct gfs2_holder *gh, unsigned long ip) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1258 | { |
| 1259 | INIT_LIST_HEAD(&gh->gh_list); |
| 1260 | gh->gh_gl = gl; |
Andreas Gruenbacher | b016d9a | 2021-09-30 13:49:36 -0500 | [diff] [blame] | 1261 | gh->gh_ip = ip; |
Pavel Emelyanov | b1e058d | 2008-02-07 00:13:19 -0800 | [diff] [blame] | 1262 | gh->gh_owner_pid = get_pid(task_pid(current)); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1263 | gh->gh_state = state; |
| 1264 | gh->gh_flags = flags; |
| 1265 | gh->gh_error = 0; |
| 1266 | gh->gh_iflags = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1267 | gfs2_glock_hold(gl); |
| 1268 | } |
| 1269 | |
| 1270 | /** |
| 1271 | * gfs2_holder_reinit - reinitialize a struct gfs2_holder so we can requeue it |
| 1272 | * @state: the state we're requesting |
| 1273 | * @flags: the modifier flags |
| 1274 | * @gh: the holder structure |
| 1275 | * |
| 1276 | * Don't mess with the glock. |
| 1277 | * |
| 1278 | */ |
| 1279 | |
Bob Peterson | b58bf40 | 2015-07-24 09:45:43 -0500 | [diff] [blame] | 1280 | void gfs2_holder_reinit(unsigned int state, u16 flags, struct gfs2_holder *gh) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1281 | { |
| 1282 | gh->gh_state = state; |
Steven Whitehouse | 579b78a | 2006-04-26 14:58:26 -0400 | [diff] [blame] | 1283 | gh->gh_flags = flags; |
Steven Whitehouse | 3b8249f | 2007-03-16 09:40:31 +0000 | [diff] [blame] | 1284 | gh->gh_iflags = 0; |
Fabian Frederick | d29c0af | 2014-10-03 20:15:36 +0200 | [diff] [blame] | 1285 | gh->gh_ip = _RET_IP_; |
Markus Elfring | 30badc9 | 2014-11-18 11:31:23 +0100 | [diff] [blame] | 1286 | put_pid(gh->gh_owner_pid); |
Bob Peterson | 1a0eae8 | 2010-04-14 11:58:16 -0400 | [diff] [blame] | 1287 | gh->gh_owner_pid = get_pid(task_pid(current)); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1288 | } |
| 1289 | |
| 1290 | /** |
| 1291 | * gfs2_holder_uninit - uninitialize a holder structure (drop glock reference) |
| 1292 | * @gh: the holder structure |
| 1293 | * |
| 1294 | */ |
| 1295 | |
| 1296 | void gfs2_holder_uninit(struct gfs2_holder *gh) |
| 1297 | { |
Pavel Emelyanov | b1e058d | 2008-02-07 00:13:19 -0800 | [diff] [blame] | 1298 | put_pid(gh->gh_owner_pid); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1299 | gfs2_glock_put(gh->gh_gl); |
Andreas Gruenbacher | 6df9f9a | 2016-06-17 07:31:27 -0500 | [diff] [blame] | 1300 | gfs2_holder_mark_uninitialized(gh); |
Steven Whitehouse | d0dc80d | 2006-03-29 14:36:49 -0500 | [diff] [blame] | 1301 | gh->gh_ip = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1302 | } |
| 1303 | |
Andreas Gruenbacher | 01123cf | 2019-08-30 12:31:01 -0500 | [diff] [blame] | 1304 | static void gfs2_glock_update_hold_time(struct gfs2_glock *gl, |
| 1305 | unsigned long start_time) |
| 1306 | { |
| 1307 | /* Have we waited longer that a second? */ |
| 1308 | if (time_after(jiffies, start_time + HZ)) { |
| 1309 | /* Lengthen the minimum hold time. */ |
| 1310 | gl->gl_hold_time = min(gl->gl_hold_time + GL_GLOCK_HOLD_INCR, |
| 1311 | GL_GLOCK_MAX_HOLD); |
| 1312 | } |
| 1313 | } |
| 1314 | |
Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 1315 | /** |
Bob Peterson | 07a7904 | 2012-08-09 12:48:44 -0500 | [diff] [blame] | 1316 | * gfs2_glock_wait - wait on a glock acquisition |
| 1317 | * @gh: the glock holder |
| 1318 | * |
| 1319 | * Returns: 0 on success |
| 1320 | */ |
| 1321 | |
| 1322 | int gfs2_glock_wait(struct gfs2_holder *gh) |
Steven Whitehouse | fee852e | 2007-01-17 15:33:23 +0000 | [diff] [blame] | 1323 | { |
Andreas Gruenbacher | 01123cf | 2019-08-30 12:31:01 -0500 | [diff] [blame] | 1324 | unsigned long start_time = jiffies; |
Bob Peterson | 7cf8dcd | 2011-06-15 11:41:48 -0400 | [diff] [blame] | 1325 | |
Steven Whitehouse | fee852e | 2007-01-17 15:33:23 +0000 | [diff] [blame] | 1326 | might_sleep(); |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 1327 | wait_on_bit(&gh->gh_iflags, HIF_WAIT, TASK_UNINTERRUPTIBLE); |
Andreas Gruenbacher | 01123cf | 2019-08-30 12:31:01 -0500 | [diff] [blame] | 1328 | gfs2_glock_update_hold_time(gh->gh_gl, start_time); |
Bob Peterson | 07a7904 | 2012-08-09 12:48:44 -0500 | [diff] [blame] | 1329 | return gh->gh_error; |
Abhijith Das | d93cfa9 | 2007-06-11 08:22:32 +0100 | [diff] [blame] | 1330 | } |
| 1331 | |
Bob Peterson | ad26967 | 2019-08-30 12:31:02 -0500 | [diff] [blame] | 1332 | static int glocks_pending(unsigned int num_gh, struct gfs2_holder *ghs) |
| 1333 | { |
| 1334 | int i; |
| 1335 | |
| 1336 | for (i = 0; i < num_gh; i++) |
| 1337 | if (test_bit(HIF_WAIT, &ghs[i].gh_iflags)) |
| 1338 | return 1; |
| 1339 | return 0; |
| 1340 | } |
| 1341 | |
| 1342 | /** |
| 1343 | * gfs2_glock_async_wait - wait on multiple asynchronous glock acquisitions |
| 1344 | * @num_gh: the number of holders in the array |
| 1345 | * @ghs: the glock holder array |
| 1346 | * |
| 1347 | * Returns: 0 on success, meaning all glocks have been granted and are held. |
| 1348 | * -ESTALE if the request timed out, meaning all glocks were released, |
| 1349 | * and the caller should retry the operation. |
| 1350 | */ |
| 1351 | |
| 1352 | int gfs2_glock_async_wait(unsigned int num_gh, struct gfs2_holder *ghs) |
| 1353 | { |
| 1354 | struct gfs2_sbd *sdp = ghs[0].gh_gl->gl_name.ln_sbd; |
| 1355 | int i, ret = 0, timeout = 0; |
| 1356 | unsigned long start_time = jiffies; |
| 1357 | bool keep_waiting; |
| 1358 | |
| 1359 | might_sleep(); |
| 1360 | /* |
| 1361 | * Total up the (minimum hold time * 2) of all glocks and use that to |
| 1362 | * determine the max amount of time we should wait. |
| 1363 | */ |
| 1364 | for (i = 0; i < num_gh; i++) |
| 1365 | timeout += ghs[i].gh_gl->gl_hold_time << 1; |
| 1366 | |
| 1367 | wait_for_dlm: |
| 1368 | if (!wait_event_timeout(sdp->sd_async_glock_wait, |
| 1369 | !glocks_pending(num_gh, ghs), timeout)) |
| 1370 | ret = -ESTALE; /* request timed out. */ |
| 1371 | |
| 1372 | /* |
| 1373 | * If dlm granted all our requests, we need to adjust the glock |
| 1374 | * minimum hold time values according to how long we waited. |
| 1375 | * |
| 1376 | * If our request timed out, we need to repeatedly release any held |
| 1377 | * glocks we acquired thus far to allow dlm to acquire the remaining |
| 1378 | * glocks without deadlocking. We cannot currently cancel outstanding |
| 1379 | * glock acquisitions. |
| 1380 | * |
| 1381 | * The HIF_WAIT bit tells us which requests still need a response from |
| 1382 | * dlm. |
| 1383 | * |
| 1384 | * If dlm sent us any errors, we return the first error we find. |
| 1385 | */ |
| 1386 | keep_waiting = false; |
| 1387 | for (i = 0; i < num_gh; i++) { |
| 1388 | /* Skip holders we have already dequeued below. */ |
| 1389 | if (!gfs2_holder_queued(&ghs[i])) |
| 1390 | continue; |
| 1391 | /* Skip holders with a pending DLM response. */ |
| 1392 | if (test_bit(HIF_WAIT, &ghs[i].gh_iflags)) { |
| 1393 | keep_waiting = true; |
| 1394 | continue; |
| 1395 | } |
| 1396 | |
| 1397 | if (test_bit(HIF_HOLDER, &ghs[i].gh_iflags)) { |
| 1398 | if (ret == -ESTALE) |
| 1399 | gfs2_glock_dq(&ghs[i]); |
| 1400 | else |
| 1401 | gfs2_glock_update_hold_time(ghs[i].gh_gl, |
| 1402 | start_time); |
| 1403 | } |
| 1404 | if (!ret) |
| 1405 | ret = ghs[i].gh_error; |
| 1406 | } |
| 1407 | |
| 1408 | if (keep_waiting) |
| 1409 | goto wait_for_dlm; |
| 1410 | |
| 1411 | /* |
| 1412 | * At this point, we've either acquired all locks or released them all. |
| 1413 | */ |
| 1414 | return ret; |
| 1415 | } |
| 1416 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1417 | /** |
Steven Whitehouse | 3b8249f | 2007-03-16 09:40:31 +0000 | [diff] [blame] | 1418 | * handle_callback - process a demote request |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1419 | * @gl: the glock |
| 1420 | * @state: the state the caller wants us to change to |
Lee Jones | c551f66 | 2021-03-30 17:44:29 +0100 | [diff] [blame] | 1421 | * @delay: zero to demote immediately; otherwise pending demote |
| 1422 | * @remote: true if this came from a different cluster node |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1423 | * |
Steven Whitehouse | 3b8249f | 2007-03-16 09:40:31 +0000 | [diff] [blame] | 1424 | * There are only two requests that we are going to see in actual |
| 1425 | * practise: LM_ST_SHARED and LM_ST_UNLOCKED |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1426 | */ |
| 1427 | |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 1428 | static void handle_callback(struct gfs2_glock *gl, unsigned int state, |
Steven Whitehouse | 81ffbf6 | 2013-04-10 10:26:55 +0100 | [diff] [blame] | 1429 | unsigned long delay, bool remote) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1430 | { |
Andreas Gruenbacher | 35b6f8f | 2020-01-17 13:48:49 +0100 | [diff] [blame] | 1431 | if (delay) |
| 1432 | set_bit(GLF_PENDING_DEMOTE, &gl->gl_flags); |
| 1433 | else |
| 1434 | gfs2_set_demote(gl); |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 1435 | if (gl->gl_demote_state == LM_ST_EXCLUSIVE) { |
Steven Whitehouse | 3b8249f | 2007-03-16 09:40:31 +0000 | [diff] [blame] | 1436 | gl->gl_demote_state = state; |
| 1437 | gl->gl_demote_time = jiffies; |
Josef Whiter | 26caee5 | 2007-07-23 10:02:40 +0100 | [diff] [blame] | 1438 | } else if (gl->gl_demote_state != LM_ST_UNLOCKED && |
| 1439 | gl->gl_demote_state != state) { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1440 | gl->gl_demote_state = LM_ST_UNLOCKED; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1441 | } |
Benjamin Marzinski | b94a170 | 2009-07-23 18:52:34 -0500 | [diff] [blame] | 1442 | if (gl->gl_ops->go_callback) |
Steven Whitehouse | 81ffbf6 | 2013-04-10 10:26:55 +0100 | [diff] [blame] | 1443 | gl->gl_ops->go_callback(gl, remote); |
Steven Whitehouse | 7bd8b2e | 2013-04-10 10:32:05 +0100 | [diff] [blame] | 1444 | trace_gfs2_demote_rq(gl, remote); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1445 | } |
| 1446 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1447 | void gfs2_print_dbg(struct seq_file *seq, const char *fmt, ...) |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1448 | { |
Joe Perches | 5e69069 | 2010-11-09 16:35:20 -0800 | [diff] [blame] | 1449 | struct va_format vaf; |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1450 | va_list args; |
| 1451 | |
| 1452 | va_start(args, fmt); |
Joe Perches | 5e69069 | 2010-11-09 16:35:20 -0800 | [diff] [blame] | 1453 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1454 | if (seq) { |
Steven Whitehouse | 1bb4930 | 2012-06-11 13:26:50 +0100 | [diff] [blame] | 1455 | seq_vprintf(seq, fmt, args); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1456 | } else { |
Joe Perches | 5e69069 | 2010-11-09 16:35:20 -0800 | [diff] [blame] | 1457 | vaf.fmt = fmt; |
| 1458 | vaf.va = &args; |
| 1459 | |
Joe Perches | d77d1b5 | 2014-03-06 12:10:45 -0800 | [diff] [blame] | 1460 | pr_err("%pV", &vaf); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1461 | } |
Joe Perches | 5e69069 | 2010-11-09 16:35:20 -0800 | [diff] [blame] | 1462 | |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 1463 | va_end(args); |
| 1464 | } |
| 1465 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1466 | /** |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1467 | * add_to_queue - Add a holder to the wait queue (but look for recursion) |
| 1468 | * @gh: the holder structure to add |
| 1469 | * |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1470 | * Eventually we should move the recursive locking trap to a |
| 1471 | * debugging option or something like that. This is the fast |
| 1472 | * path and needs to have the minimum number of distractions. |
| 1473 | * |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1474 | */ |
| 1475 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1476 | static inline void add_to_queue(struct gfs2_holder *gh) |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 1477 | __releases(&gl->gl_lockref.lock) |
| 1478 | __acquires(&gl->gl_lockref.lock) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1479 | { |
| 1480 | struct gfs2_glock *gl = gh->gh_gl; |
Bob Peterson | 15562c4 | 2015-03-16 11:52:05 -0500 | [diff] [blame] | 1481 | struct gfs2_sbd *sdp = gl->gl_name.ln_sbd; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1482 | struct list_head *insert_pt = NULL; |
| 1483 | struct gfs2_holder *gh2; |
Bob Peterson | e5dc76b | 2012-08-09 12:48:46 -0500 | [diff] [blame] | 1484 | int try_futile = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1485 | |
Bob Peterson | ad26967 | 2019-08-30 12:31:02 -0500 | [diff] [blame] | 1486 | GLOCK_BUG_ON(gl, gh->gh_owner_pid == NULL); |
Steven Whitehouse | fee852e | 2007-01-17 15:33:23 +0000 | [diff] [blame] | 1487 | if (test_and_set_bit(HIF_WAIT, &gh->gh_iflags)) |
Bob Peterson | ad26967 | 2019-08-30 12:31:02 -0500 | [diff] [blame] | 1488 | GLOCK_BUG_ON(gl, true); |
Steven Whitehouse | 190562b | 2006-04-20 16:57:23 -0400 | [diff] [blame] | 1489 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1490 | if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) { |
Andreas Gruenbacher | 6144464 | 2021-08-10 00:43:55 +0200 | [diff] [blame] | 1491 | if (test_bit(GLF_LOCK, &gl->gl_flags)) { |
| 1492 | struct gfs2_holder *first_gh; |
| 1493 | |
Bob Peterson | dc73290 | 2021-08-19 20:51:23 +0200 | [diff] [blame] | 1494 | first_gh = find_first_strong_holder(gl); |
Andreas Gruenbacher | 6144464 | 2021-08-10 00:43:55 +0200 | [diff] [blame] | 1495 | try_futile = !may_grant(gl, first_gh, gh); |
| 1496 | } |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1497 | if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags)) |
| 1498 | goto fail; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1499 | } |
| 1500 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1501 | list_for_each_entry(gh2, &gl->gl_holders, gh_list) { |
| 1502 | if (unlikely(gh2->gh_owner_pid == gh->gh_owner_pid && |
Bob Peterson | dc73290 | 2021-08-19 20:51:23 +0200 | [diff] [blame] | 1503 | (gh->gh_gl->gl_ops->go_type != LM_TYPE_FLOCK) && |
| 1504 | !test_bit(HIF_MAY_DEMOTE, &gh2->gh_iflags))) |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1505 | goto trap_recursive; |
Bob Peterson | e5dc76b | 2012-08-09 12:48:46 -0500 | [diff] [blame] | 1506 | if (try_futile && |
| 1507 | !(gh2->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1508 | fail: |
| 1509 | gh->gh_error = GLR_TRYFAILED; |
| 1510 | gfs2_holder_wake(gh); |
| 1511 | return; |
| 1512 | } |
| 1513 | if (test_bit(HIF_HOLDER, &gh2->gh_iflags)) |
| 1514 | continue; |
| 1515 | if (unlikely((gh->gh_flags & LM_FLAG_PRIORITY) && !insert_pt)) |
| 1516 | insert_pt = &gh2->gh_list; |
| 1517 | } |
Steven Whitehouse | edae38a | 2011-01-31 09:38:12 +0000 | [diff] [blame] | 1518 | trace_gfs2_glock_queue(gh, 1); |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 1519 | gfs2_glstats_inc(gl, GFS2_LKS_QCOUNT); |
| 1520 | gfs2_sbstats_inc(gl, GFS2_LKS_QCOUNT); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1521 | if (likely(insert_pt == NULL)) { |
| 1522 | list_add_tail(&gh->gh_list, &gl->gl_holders); |
| 1523 | if (unlikely(gh->gh_flags & LM_FLAG_PRIORITY)) |
| 1524 | goto do_cancel; |
| 1525 | return; |
| 1526 | } |
| 1527 | list_add_tail(&gh->gh_list, insert_pt); |
| 1528 | do_cancel: |
Andreas Gruenbacher | 969183b | 2020-02-03 19:22:45 +0100 | [diff] [blame] | 1529 | gh = list_first_entry(&gl->gl_holders, struct gfs2_holder, gh_list); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1530 | if (!(gh->gh_flags & LM_FLAG_PRIORITY)) { |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 1531 | spin_unlock(&gl->gl_lockref.lock); |
Steven Whitehouse | 048bca2 | 2008-05-23 14:46:04 +0100 | [diff] [blame] | 1532 | if (sdp->sd_lockstruct.ls_ops->lm_cancel) |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1533 | sdp->sd_lockstruct.ls_ops->lm_cancel(gl); |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 1534 | spin_lock(&gl->gl_lockref.lock); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1535 | } |
| 1536 | return; |
| 1537 | |
| 1538 | trap_recursive: |
Bob Peterson | e54c78a | 2018-10-03 08:47:36 -0500 | [diff] [blame] | 1539 | fs_err(sdp, "original: %pSR\n", (void *)gh2->gh_ip); |
| 1540 | fs_err(sdp, "pid: %d\n", pid_nr(gh2->gh_owner_pid)); |
| 1541 | fs_err(sdp, "lock type: %d req lock state : %d\n", |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1542 | gh2->gh_gl->gl_name.ln_type, gh2->gh_state); |
Bob Peterson | e54c78a | 2018-10-03 08:47:36 -0500 | [diff] [blame] | 1543 | fs_err(sdp, "new: %pSR\n", (void *)gh->gh_ip); |
| 1544 | fs_err(sdp, "pid: %d\n", pid_nr(gh->gh_owner_pid)); |
| 1545 | fs_err(sdp, "lock type: %d req lock state : %d\n", |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1546 | gh->gh_gl->gl_name.ln_type, gh->gh_state); |
Bob Peterson | 3792ce9 | 2019-05-09 09:21:48 -0500 | [diff] [blame] | 1547 | gfs2_dump_glock(NULL, gl, true); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1548 | BUG(); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1549 | } |
| 1550 | |
| 1551 | /** |
| 1552 | * gfs2_glock_nq - enqueue a struct gfs2_holder onto a glock (acquire a glock) |
| 1553 | * @gh: the holder structure |
| 1554 | * |
| 1555 | * if (gh->gh_flags & GL_ASYNC), this never returns an error |
| 1556 | * |
| 1557 | * Returns: 0, GLR_TRYFAILED, or errno on failure |
| 1558 | */ |
| 1559 | |
| 1560 | int gfs2_glock_nq(struct gfs2_holder *gh) |
| 1561 | { |
| 1562 | struct gfs2_glock *gl = gh->gh_gl; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1563 | int error = 0; |
| 1564 | |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 1565 | if (glock_blocked_by_withdraw(gl) && !(gh->gh_flags & LM_FLAG_NOEXP)) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1566 | return -EIO; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1567 | |
Steven Whitehouse | f42ab08 | 2011-04-14 16:50:31 +0100 | [diff] [blame] | 1568 | if (test_bit(GLF_LRU, &gl->gl_flags)) |
| 1569 | gfs2_glock_remove_from_lru(gl); |
| 1570 | |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 1571 | spin_lock(&gl->gl_lockref.lock); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1572 | add_to_queue(gh); |
Bob Peterson | 01b172b | 2014-03-12 10:32:20 -0400 | [diff] [blame] | 1573 | if (unlikely((LM_FLAG_NOEXP & gh->gh_flags) && |
| 1574 | test_and_clear_bit(GLF_FROZEN, &gl->gl_flags))) { |
Steven Whitehouse | 0809f6e | 2010-08-02 10:15:17 +0100 | [diff] [blame] | 1575 | set_bit(GLF_REPLY_PENDING, &gl->gl_flags); |
Bob Peterson | 01b172b | 2014-03-12 10:32:20 -0400 | [diff] [blame] | 1576 | gl->gl_lockref.count++; |
Andreas Gruenbacher | 6b0c744 | 2017-06-30 08:10:01 -0500 | [diff] [blame] | 1577 | __gfs2_glock_queue_work(gl, 0); |
Bob Peterson | 01b172b | 2014-03-12 10:32:20 -0400 | [diff] [blame] | 1578 | } |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1579 | run_queue(gl, 1); |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 1580 | spin_unlock(&gl->gl_lockref.lock); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1581 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1582 | if (!(gh->gh_flags & GL_ASYNC)) |
| 1583 | error = gfs2_glock_wait(gh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1584 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1585 | return error; |
| 1586 | } |
| 1587 | |
| 1588 | /** |
| 1589 | * gfs2_glock_poll - poll to see if an async request has been completed |
| 1590 | * @gh: the holder |
| 1591 | * |
| 1592 | * Returns: 1 if the request is ready to be gfs2_glock_wait()ed on |
| 1593 | */ |
| 1594 | |
| 1595 | int gfs2_glock_poll(struct gfs2_holder *gh) |
| 1596 | { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1597 | return test_bit(HIF_WAIT, &gh->gh_iflags) ? 0 : 1; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1598 | } |
| 1599 | |
Bob Peterson | dc73290 | 2021-08-19 20:51:23 +0200 | [diff] [blame] | 1600 | static inline bool needs_demote(struct gfs2_glock *gl) |
| 1601 | { |
| 1602 | return (test_bit(GLF_DEMOTE, &gl->gl_flags) || |
| 1603 | test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags)); |
| 1604 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1605 | |
Bob Peterson | dc73290 | 2021-08-19 20:51:23 +0200 | [diff] [blame] | 1606 | static void __gfs2_glock_dq(struct gfs2_holder *gh) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1607 | { |
| 1608 | struct gfs2_glock *gl = gh->gh_gl; |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 1609 | struct gfs2_sbd *sdp = gl->gl_name.ln_sbd; |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 1610 | unsigned delay = 0; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 1611 | int fast_path = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1612 | |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 1613 | /* |
Bob Peterson | dc73290 | 2021-08-19 20:51:23 +0200 | [diff] [blame] | 1614 | * This while loop is similar to function demote_incompat_holders: |
| 1615 | * If the glock is due to be demoted (which may be from another node |
| 1616 | * or even if this holder is GL_NOCACHE), the weak holders are |
| 1617 | * demoted as well, allowing the glock to be demoted. |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 1618 | */ |
Bob Peterson | dc73290 | 2021-08-19 20:51:23 +0200 | [diff] [blame] | 1619 | while (gh) { |
| 1620 | /* |
| 1621 | * If we're in the process of file system withdraw, we cannot |
| 1622 | * just dequeue any glocks until our journal is recovered, lest |
| 1623 | * we introduce file system corruption. We need two exceptions |
| 1624 | * to this rule: We need to allow unlocking of nondisk glocks |
| 1625 | * and the glock for our own journal that needs recovery. |
| 1626 | */ |
| 1627 | if (test_bit(SDF_WITHDRAW_RECOVERY, &sdp->sd_flags) && |
| 1628 | glock_blocked_by_withdraw(gl) && |
| 1629 | gh->gh_gl != sdp->sd_jinode_gl) { |
| 1630 | sdp->sd_glock_dqs_held++; |
| 1631 | spin_unlock(&gl->gl_lockref.lock); |
| 1632 | might_sleep(); |
| 1633 | wait_on_bit(&sdp->sd_flags, SDF_WITHDRAW_RECOVERY, |
| 1634 | TASK_UNINTERRUPTIBLE); |
| 1635 | spin_lock(&gl->gl_lockref.lock); |
| 1636 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1637 | |
Bob Peterson | dc73290 | 2021-08-19 20:51:23 +0200 | [diff] [blame] | 1638 | /* |
| 1639 | * This holder should not be cached, so mark it for demote. |
| 1640 | * Note: this should be done before the check for needs_demote |
| 1641 | * below. |
| 1642 | */ |
| 1643 | if (gh->gh_flags & GL_NOCACHE) |
| 1644 | handle_callback(gl, LM_ST_UNLOCKED, 0, false); |
| 1645 | |
| 1646 | list_del_init(&gh->gh_list); |
| 1647 | clear_bit(HIF_HOLDER, &gh->gh_iflags); |
| 1648 | trace_gfs2_glock_queue(gh, 0); |
| 1649 | |
| 1650 | /* |
| 1651 | * If there hasn't been a demote request we are done. |
| 1652 | * (Let the remaining holders, if any, keep holding it.) |
| 1653 | */ |
| 1654 | if (!needs_demote(gl)) { |
| 1655 | if (list_empty(&gl->gl_holders)) |
| 1656 | fast_path = 1; |
| 1657 | break; |
| 1658 | } |
| 1659 | /* |
| 1660 | * If we have another strong holder (we cannot auto-demote) |
| 1661 | * we are done. It keeps holding it until it is done. |
| 1662 | */ |
| 1663 | if (find_first_strong_holder(gl)) |
| 1664 | break; |
| 1665 | |
| 1666 | /* |
| 1667 | * If we have a weak holder at the head of the list, it |
| 1668 | * (and all others like it) must be auto-demoted. If there |
| 1669 | * are no more weak holders, we exit the while loop. |
| 1670 | */ |
| 1671 | gh = find_first_holder(gl); |
| 1672 | } |
Bob Peterson | 08d7366 | 2021-08-02 09:08:51 -0500 | [diff] [blame] | 1673 | |
Ross Lagerwall | 7881ef3 | 2019-03-27 17:09:17 +0000 | [diff] [blame] | 1674 | if (!test_bit(GLF_LFLUSH, &gl->gl_flags) && demote_ok(gl)) |
Bob Peterson | 4abb6ad9 | 2012-08-09 12:48:43 -0500 | [diff] [blame] | 1675 | gfs2_glock_add_to_lru(gl); |
| 1676 | |
Andreas Gruenbacher | 6b0c744 | 2017-06-30 08:10:01 -0500 | [diff] [blame] | 1677 | if (unlikely(!fast_path)) { |
| 1678 | gl->gl_lockref.count++; |
| 1679 | if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) && |
| 1680 | !test_bit(GLF_DEMOTE, &gl->gl_flags) && |
| 1681 | gl->gl_name.ln_type == LM_TYPE_INODE) |
| 1682 | delay = gl->gl_hold_time; |
| 1683 | __gfs2_glock_queue_work(gl, delay); |
| 1684 | } |
Bob Peterson | dc73290 | 2021-08-19 20:51:23 +0200 | [diff] [blame] | 1685 | } |
| 1686 | |
| 1687 | /** |
| 1688 | * gfs2_glock_dq - dequeue a struct gfs2_holder from a glock (release a glock) |
| 1689 | * @gh: the glock holder |
| 1690 | * |
| 1691 | */ |
| 1692 | void gfs2_glock_dq(struct gfs2_holder *gh) |
| 1693 | { |
| 1694 | struct gfs2_glock *gl = gh->gh_gl; |
| 1695 | |
| 1696 | spin_lock(&gl->gl_lockref.lock); |
| 1697 | __gfs2_glock_dq(gh); |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 1698 | spin_unlock(&gl->gl_lockref.lock); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1699 | } |
| 1700 | |
Abhijith Das | d93cfa9 | 2007-06-11 08:22:32 +0100 | [diff] [blame] | 1701 | void gfs2_glock_dq_wait(struct gfs2_holder *gh) |
| 1702 | { |
| 1703 | struct gfs2_glock *gl = gh->gh_gl; |
| 1704 | gfs2_glock_dq(gh); |
Bob Peterson | 81e1d45 | 2012-08-09 12:48:45 -0500 | [diff] [blame] | 1705 | might_sleep(); |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 1706 | wait_on_bit(&gl->gl_flags, GLF_DEMOTE, TASK_UNINTERRUPTIBLE); |
Abhijith Das | d93cfa9 | 2007-06-11 08:22:32 +0100 | [diff] [blame] | 1707 | } |
| 1708 | |
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 | * gfs2_glock_dq_uninit - dequeue a holder from a glock and initialize it |
| 1711 | * @gh: the holder structure |
| 1712 | * |
| 1713 | */ |
| 1714 | |
| 1715 | void gfs2_glock_dq_uninit(struct gfs2_holder *gh) |
| 1716 | { |
| 1717 | gfs2_glock_dq(gh); |
| 1718 | gfs2_holder_uninit(gh); |
| 1719 | } |
| 1720 | |
| 1721 | /** |
| 1722 | * gfs2_glock_nq_num - acquire a glock based on lock number |
| 1723 | * @sdp: the filesystem |
| 1724 | * @number: the lock number |
| 1725 | * @glops: the glock operations for the type of glock |
| 1726 | * @state: the state to acquire the glock in |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1727 | * @flags: modifier flags for the acquisition |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1728 | * @gh: the struct gfs2_holder |
| 1729 | * |
| 1730 | * Returns: errno |
| 1731 | */ |
| 1732 | |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1733 | int gfs2_glock_nq_num(struct gfs2_sbd *sdp, u64 number, |
Steven Whitehouse | 8fb4b53 | 2006-08-30 09:30:00 -0400 | [diff] [blame] | 1734 | const struct gfs2_glock_operations *glops, |
Bob Peterson | b58bf40 | 2015-07-24 09:45:43 -0500 | [diff] [blame] | 1735 | unsigned int state, u16 flags, struct gfs2_holder *gh) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1736 | { |
| 1737 | struct gfs2_glock *gl; |
| 1738 | int error; |
| 1739 | |
| 1740 | error = gfs2_glock_get(sdp, number, glops, CREATE, &gl); |
| 1741 | if (!error) { |
| 1742 | error = gfs2_glock_nq_init(gl, state, flags, gh); |
| 1743 | gfs2_glock_put(gl); |
| 1744 | } |
| 1745 | |
| 1746 | return error; |
| 1747 | } |
| 1748 | |
| 1749 | /** |
| 1750 | * glock_compare - Compare two struct gfs2_glock structures for sorting |
| 1751 | * @arg_a: the first structure |
| 1752 | * @arg_b: the second structure |
| 1753 | * |
| 1754 | */ |
| 1755 | |
| 1756 | static int glock_compare(const void *arg_a, const void *arg_b) |
| 1757 | { |
Steven Whitehouse | a5e08a9 | 2006-09-09 17:07:05 -0400 | [diff] [blame] | 1758 | const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a; |
| 1759 | const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b; |
| 1760 | const struct lm_lockname *a = &gh_a->gh_gl->gl_name; |
| 1761 | const struct lm_lockname *b = &gh_b->gh_gl->gl_name; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1762 | |
| 1763 | if (a->ln_number > b->ln_number) |
Steven Whitehouse | a5e08a9 | 2006-09-09 17:07:05 -0400 | [diff] [blame] | 1764 | return 1; |
| 1765 | if (a->ln_number < b->ln_number) |
| 1766 | return -1; |
Steven Whitehouse | 1c0f487 | 2007-01-22 12:10:39 -0500 | [diff] [blame] | 1767 | 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] | 1768 | return 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1769 | } |
| 1770 | |
| 1771 | /** |
| 1772 | * nq_m_sync - synchonously acquire more than one glock in deadlock free order |
| 1773 | * @num_gh: the number of structures |
| 1774 | * @ghs: an array of struct gfs2_holder structures |
Lee Jones | c551f66 | 2021-03-30 17:44:29 +0100 | [diff] [blame] | 1775 | * @p: placeholder for the holder structure to pass back |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1776 | * |
| 1777 | * Returns: 0 on success (all glocks acquired), |
| 1778 | * errno on failure (no glocks acquired) |
| 1779 | */ |
| 1780 | |
| 1781 | static int nq_m_sync(unsigned int num_gh, struct gfs2_holder *ghs, |
| 1782 | struct gfs2_holder **p) |
| 1783 | { |
| 1784 | unsigned int x; |
| 1785 | int error = 0; |
| 1786 | |
| 1787 | for (x = 0; x < num_gh; x++) |
| 1788 | p[x] = &ghs[x]; |
| 1789 | |
| 1790 | sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare, NULL); |
| 1791 | |
| 1792 | for (x = 0; x < num_gh; x++) { |
| 1793 | p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC); |
| 1794 | |
| 1795 | error = gfs2_glock_nq(p[x]); |
| 1796 | if (error) { |
| 1797 | while (x--) |
| 1798 | gfs2_glock_dq(p[x]); |
| 1799 | break; |
| 1800 | } |
| 1801 | } |
| 1802 | |
| 1803 | return error; |
| 1804 | } |
| 1805 | |
| 1806 | /** |
| 1807 | * gfs2_glock_nq_m - acquire multiple glocks |
| 1808 | * @num_gh: the number of structures |
| 1809 | * @ghs: an array of struct gfs2_holder structures |
| 1810 | * |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1811 | * |
| 1812 | * Returns: 0 on success (all glocks acquired), |
| 1813 | * errno on failure (no glocks acquired) |
| 1814 | */ |
| 1815 | |
| 1816 | int gfs2_glock_nq_m(unsigned int num_gh, struct gfs2_holder *ghs) |
| 1817 | { |
Steven Whitehouse | eaf5bd3 | 2007-06-19 15:38:17 +0100 | [diff] [blame] | 1818 | struct gfs2_holder *tmp[4]; |
| 1819 | struct gfs2_holder **pph = tmp; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1820 | int error = 0; |
| 1821 | |
Steven Whitehouse | eaf5bd3 | 2007-06-19 15:38:17 +0100 | [diff] [blame] | 1822 | switch(num_gh) { |
| 1823 | case 0: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1824 | return 0; |
Steven Whitehouse | eaf5bd3 | 2007-06-19 15:38:17 +0100 | [diff] [blame] | 1825 | case 1: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1826 | ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC); |
| 1827 | return gfs2_glock_nq(ghs); |
Steven Whitehouse | eaf5bd3 | 2007-06-19 15:38:17 +0100 | [diff] [blame] | 1828 | default: |
| 1829 | if (num_gh <= 4) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1830 | break; |
Kees Cook | 6da2ec5 | 2018-06-12 13:55:00 -0700 | [diff] [blame] | 1831 | pph = kmalloc_array(num_gh, sizeof(struct gfs2_holder *), |
| 1832 | GFP_NOFS); |
Steven Whitehouse | eaf5bd3 | 2007-06-19 15:38:17 +0100 | [diff] [blame] | 1833 | if (!pph) |
| 1834 | return -ENOMEM; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1835 | } |
| 1836 | |
Steven Whitehouse | eaf5bd3 | 2007-06-19 15:38:17 +0100 | [diff] [blame] | 1837 | error = nq_m_sync(num_gh, ghs, pph); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1838 | |
Steven Whitehouse | eaf5bd3 | 2007-06-19 15:38:17 +0100 | [diff] [blame] | 1839 | if (pph != tmp) |
| 1840 | kfree(pph); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1841 | |
| 1842 | return error; |
| 1843 | } |
| 1844 | |
| 1845 | /** |
| 1846 | * gfs2_glock_dq_m - release multiple glocks |
| 1847 | * @num_gh: the number of structures |
| 1848 | * @ghs: an array of struct gfs2_holder structures |
| 1849 | * |
| 1850 | */ |
| 1851 | |
| 1852 | void gfs2_glock_dq_m(unsigned int num_gh, struct gfs2_holder *ghs) |
| 1853 | { |
Bob Peterson | fa1bbde | 2011-03-10 11:41:57 -0500 | [diff] [blame] | 1854 | while (num_gh--) |
| 1855 | gfs2_glock_dq(&ghs[num_gh]); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1856 | } |
| 1857 | |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1858 | void gfs2_glock_cb(struct gfs2_glock *gl, unsigned int state) |
Steven Whitehouse | da755fd | 2008-01-30 15:34:04 +0000 | [diff] [blame] | 1859 | { |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 1860 | unsigned long delay = 0; |
| 1861 | unsigned long holdtime; |
| 1862 | unsigned long now = jiffies; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1863 | |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1864 | gfs2_glock_hold(gl); |
Bob Peterson | e2c6c8a | 2020-10-12 13:57:37 -0500 | [diff] [blame] | 1865 | spin_lock(&gl->gl_lockref.lock); |
Bob Peterson | 7cf8dcd | 2011-06-15 11:41:48 -0400 | [diff] [blame] | 1866 | holdtime = gl->gl_tchange + gl->gl_hold_time; |
Bob Peterson | e2c6c8a | 2020-10-12 13:57:37 -0500 | [diff] [blame] | 1867 | if (!list_empty(&gl->gl_holders) && |
Bob Peterson | 7cf8dcd | 2011-06-15 11:41:48 -0400 | [diff] [blame] | 1868 | gl->gl_name.ln_type == LM_TYPE_INODE) { |
Steven Whitehouse | 7b5e3d5 | 2010-09-03 09:39:20 +0100 | [diff] [blame] | 1869 | if (time_before(now, holdtime)) |
| 1870 | delay = holdtime - now; |
| 1871 | if (test_bit(GLF_REPLY_PENDING, &gl->gl_flags)) |
Bob Peterson | 7cf8dcd | 2011-06-15 11:41:48 -0400 | [diff] [blame] | 1872 | delay = gl->gl_hold_time; |
Steven Whitehouse | 7b5e3d5 | 2010-09-03 09:39:20 +0100 | [diff] [blame] | 1873 | } |
Bob Peterson | dc73290 | 2021-08-19 20:51:23 +0200 | [diff] [blame] | 1874 | /* |
| 1875 | * Note 1: We cannot call demote_incompat_holders from handle_callback |
| 1876 | * or gfs2_set_demote due to recursion problems like: gfs2_glock_dq -> |
| 1877 | * handle_callback -> demote_incompat_holders -> gfs2_glock_dq |
| 1878 | * Plus, we only want to demote the holders if the request comes from |
| 1879 | * a remote cluster node because local holder conflicts are resolved |
| 1880 | * elsewhere. |
| 1881 | * |
| 1882 | * Note 2: if a remote node wants this glock in EX mode, lock_dlm will |
| 1883 | * request that we set our state to UNLOCKED. Here we mock up a holder |
| 1884 | * to make it look like someone wants the lock EX locally. Any SH |
| 1885 | * and DF requests should be able to share the lock without demoting. |
| 1886 | * |
| 1887 | * Note 3: We only want to demote the demoteable holders when there |
| 1888 | * are no more strong holders. The demoteable holders might as well |
| 1889 | * keep the glock until the last strong holder is done with it. |
| 1890 | */ |
| 1891 | if (!find_first_strong_holder(gl)) { |
Andreas Gruenbacher | e11b02d | 2021-11-22 17:32:35 +0100 | [diff] [blame] | 1892 | struct gfs2_holder mock_gh = { |
| 1893 | .gh_gl = gl, |
| 1894 | .gh_state = (state == LM_ST_UNLOCKED) ? |
| 1895 | LM_ST_EXCLUSIVE : state, |
| 1896 | .gh_iflags = BIT(HIF_HOLDER) |
| 1897 | }; |
| 1898 | |
Bob Peterson | dc73290 | 2021-08-19 20:51:23 +0200 | [diff] [blame] | 1899 | demote_incompat_holders(gl, &mock_gh); |
| 1900 | } |
Steven Whitehouse | 81ffbf6 | 2013-04-10 10:26:55 +0100 | [diff] [blame] | 1901 | handle_callback(gl, state, delay, true); |
Andreas Gruenbacher | 6b0c744 | 2017-06-30 08:10:01 -0500 | [diff] [blame] | 1902 | __gfs2_glock_queue_work(gl, delay); |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 1903 | spin_unlock(&gl->gl_lockref.lock); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1904 | } |
| 1905 | |
| 1906 | /** |
Steven Whitehouse | 0809f6e | 2010-08-02 10:15:17 +0100 | [diff] [blame] | 1907 | * gfs2_should_freeze - Figure out if glock should be frozen |
| 1908 | * @gl: The glock in question |
| 1909 | * |
| 1910 | * Glocks are not frozen if (a) the result of the dlm operation is |
| 1911 | * an error, (b) the locking operation was an unlock operation or |
| 1912 | * (c) if there is a "noexp" flagged request anywhere in the queue |
| 1913 | * |
| 1914 | * Returns: 1 if freezing should occur, 0 otherwise |
| 1915 | */ |
| 1916 | |
| 1917 | static int gfs2_should_freeze(const struct gfs2_glock *gl) |
| 1918 | { |
| 1919 | const struct gfs2_holder *gh; |
| 1920 | |
| 1921 | if (gl->gl_reply & ~LM_OUT_ST_MASK) |
| 1922 | return 0; |
| 1923 | if (gl->gl_target == LM_ST_UNLOCKED) |
| 1924 | return 0; |
| 1925 | |
| 1926 | list_for_each_entry(gh, &gl->gl_holders, gh_list) { |
| 1927 | if (test_bit(HIF_HOLDER, &gh->gh_iflags)) |
| 1928 | continue; |
| 1929 | if (LM_FLAG_NOEXP & gh->gh_flags) |
| 1930 | return 0; |
| 1931 | } |
| 1932 | |
| 1933 | return 1; |
| 1934 | } |
| 1935 | |
| 1936 | /** |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1937 | * gfs2_glock_complete - Callback used by locking |
| 1938 | * @gl: Pointer to the glock |
| 1939 | * @ret: The return value from the dlm |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1940 | * |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 1941 | * The gl_reply field is under the gl_lockref.lock lock so that it is ok |
Steven Whitehouse | 47a2538 | 2010-11-30 15:49:31 +0000 | [diff] [blame] | 1942 | * to use a bitfield shared with other glock state fields. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1943 | */ |
| 1944 | |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1945 | void gfs2_glock_complete(struct gfs2_glock *gl, int ret) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1946 | { |
Bob Peterson | 15562c4 | 2015-03-16 11:52:05 -0500 | [diff] [blame] | 1947 | struct lm_lockstruct *ls = &gl->gl_name.ln_sbd->sd_lockstruct; |
Steven Whitehouse | 0809f6e | 2010-08-02 10:15:17 +0100 | [diff] [blame] | 1948 | |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 1949 | spin_lock(&gl->gl_lockref.lock); |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1950 | gl->gl_reply = ret; |
Steven Whitehouse | 0809f6e | 2010-08-02 10:15:17 +0100 | [diff] [blame] | 1951 | |
David Teigland | e0c2a9a | 2012-01-09 17:18:05 -0500 | [diff] [blame] | 1952 | if (unlikely(test_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags))) { |
Steven Whitehouse | 0809f6e | 2010-08-02 10:15:17 +0100 | [diff] [blame] | 1953 | if (gfs2_should_freeze(gl)) { |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1954 | set_bit(GLF_FROZEN, &gl->gl_flags); |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 1955 | spin_unlock(&gl->gl_lockref.lock); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1956 | return; |
Steven Whitehouse | 0809f6e | 2010-08-02 10:15:17 +0100 | [diff] [blame] | 1957 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1958 | } |
Steven Whitehouse | 47a2538 | 2010-11-30 15:49:31 +0000 | [diff] [blame] | 1959 | |
Steven Whitehouse | e66cf16 | 2013-10-15 15:18:08 +0100 | [diff] [blame] | 1960 | gl->gl_lockref.count++; |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 1961 | set_bit(GLF_REPLY_PENDING, &gl->gl_flags); |
Andreas Gruenbacher | 6b0c744 | 2017-06-30 08:10:01 -0500 | [diff] [blame] | 1962 | __gfs2_glock_queue_work(gl, 0); |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 1963 | spin_unlock(&gl->gl_lockref.lock); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1964 | } |
| 1965 | |
Sami Tolvanen | 4f0f586 | 2021-04-08 11:28:34 -0700 | [diff] [blame] | 1966 | static int glock_cmp(void *priv, const struct list_head *a, |
| 1967 | const struct list_head *b) |
Steven Whitehouse | 4506a519 | 2013-02-01 20:36:03 +0000 | [diff] [blame] | 1968 | { |
| 1969 | struct gfs2_glock *gla, *glb; |
| 1970 | |
| 1971 | gla = list_entry(a, struct gfs2_glock, gl_lru); |
| 1972 | glb = list_entry(b, struct gfs2_glock, gl_lru); |
| 1973 | |
| 1974 | if (gla->gl_name.ln_number > glb->gl_name.ln_number) |
| 1975 | return 1; |
| 1976 | if (gla->gl_name.ln_number < glb->gl_name.ln_number) |
| 1977 | return -1; |
| 1978 | |
| 1979 | return 0; |
| 1980 | } |
| 1981 | |
| 1982 | /** |
| 1983 | * gfs2_dispose_glock_lru - Demote a list of glocks |
| 1984 | * @list: The list to dispose of |
| 1985 | * |
| 1986 | * Disposing of glocks may involve disk accesses, so that here we sort |
| 1987 | * the glocks by number (i.e. disk location of the inodes) so that if |
| 1988 | * there are any such accesses, they'll be sent in order (mostly). |
| 1989 | * |
| 1990 | * Must be called under the lru_lock, but may drop and retake this |
| 1991 | * lock. While the lru_lock is dropped, entries may vanish from the |
| 1992 | * list, but no new entries will appear on the list (since it is |
| 1993 | * private) |
| 1994 | */ |
| 1995 | |
| 1996 | static void gfs2_dispose_glock_lru(struct list_head *list) |
| 1997 | __releases(&lru_lock) |
| 1998 | __acquires(&lru_lock) |
| 1999 | { |
| 2000 | struct gfs2_glock *gl; |
| 2001 | |
| 2002 | list_sort(NULL, list, glock_cmp); |
| 2003 | |
| 2004 | while(!list_empty(list)) { |
Andreas Gruenbacher | 969183b | 2020-02-03 19:22:45 +0100 | [diff] [blame] | 2005 | gl = list_first_entry(list, struct gfs2_glock, gl_lru); |
Steven Whitehouse | 4506a519 | 2013-02-01 20:36:03 +0000 | [diff] [blame] | 2006 | list_del_init(&gl->gl_lru); |
Hillf Danton | 1ab19c5 | 2021-05-18 16:46:25 +0800 | [diff] [blame] | 2007 | clear_bit(GLF_LRU, &gl->gl_flags); |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 2008 | if (!spin_trylock(&gl->gl_lockref.lock)) { |
Steven Whitehouse | 94a09a3 | 2014-06-23 14:43:32 +0100 | [diff] [blame] | 2009 | add_back_to_lru: |
Steven Whitehouse | e66cf16 | 2013-10-15 15:18:08 +0100 | [diff] [blame] | 2010 | list_add(&gl->gl_lru, &lru_list); |
Ross Lagerwall | 7881ef3 | 2019-03-27 17:09:17 +0000 | [diff] [blame] | 2011 | set_bit(GLF_LRU, &gl->gl_flags); |
Steven Whitehouse | e66cf16 | 2013-10-15 15:18:08 +0100 | [diff] [blame] | 2012 | atomic_inc(&lru_count); |
| 2013 | continue; |
| 2014 | } |
Steven Whitehouse | 94a09a3 | 2014-06-23 14:43:32 +0100 | [diff] [blame] | 2015 | if (test_and_set_bit(GLF_LOCK, &gl->gl_flags)) { |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 2016 | spin_unlock(&gl->gl_lockref.lock); |
Steven Whitehouse | 94a09a3 | 2014-06-23 14:43:32 +0100 | [diff] [blame] | 2017 | goto add_back_to_lru; |
| 2018 | } |
Steven Whitehouse | e66cf16 | 2013-10-15 15:18:08 +0100 | [diff] [blame] | 2019 | gl->gl_lockref.count++; |
Steven Whitehouse | 4506a519 | 2013-02-01 20:36:03 +0000 | [diff] [blame] | 2020 | if (demote_ok(gl)) |
Steven Whitehouse | 81ffbf6 | 2013-04-10 10:26:55 +0100 | [diff] [blame] | 2021 | handle_callback(gl, LM_ST_UNLOCKED, 0, false); |
Steven Whitehouse | 4506a519 | 2013-02-01 20:36:03 +0000 | [diff] [blame] | 2022 | WARN_ON(!test_and_clear_bit(GLF_LOCK, &gl->gl_flags)); |
Andreas Gruenbacher | 6b0c744 | 2017-06-30 08:10:01 -0500 | [diff] [blame] | 2023 | __gfs2_glock_queue_work(gl, 0); |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 2024 | spin_unlock(&gl->gl_lockref.lock); |
Steven Whitehouse | 94a09a3 | 2014-06-23 14:43:32 +0100 | [diff] [blame] | 2025 | cond_resched_lock(&lru_lock); |
Steven Whitehouse | 4506a519 | 2013-02-01 20:36:03 +0000 | [diff] [blame] | 2026 | } |
| 2027 | } |
| 2028 | |
Steven Whitehouse | 2a00585 | 2012-12-14 12:28:30 +0000 | [diff] [blame] | 2029 | /** |
| 2030 | * gfs2_scan_glock_lru - Scan the LRU looking for locks to demote |
| 2031 | * @nr: The number of entries to scan |
| 2032 | * |
Steven Whitehouse | 4506a519 | 2013-02-01 20:36:03 +0000 | [diff] [blame] | 2033 | * This function selects the entries on the LRU which are able to |
| 2034 | * be demoted, and then kicks off the process by calling |
| 2035 | * gfs2_dispose_glock_lru() above. |
Steven Whitehouse | 2a00585 | 2012-12-14 12:28:30 +0000 | [diff] [blame] | 2036 | */ |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2037 | |
Dave Chinner | 1ab6c49 | 2013-08-28 10:18:09 +1000 | [diff] [blame] | 2038 | static long gfs2_scan_glock_lru(int nr) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2039 | { |
| 2040 | struct gfs2_glock *gl; |
Steven Whitehouse | 97cc1025 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 2041 | LIST_HEAD(skipped); |
Steven Whitehouse | 4506a519 | 2013-02-01 20:36:03 +0000 | [diff] [blame] | 2042 | LIST_HEAD(dispose); |
Dave Chinner | 1ab6c49 | 2013-08-28 10:18:09 +1000 | [diff] [blame] | 2043 | long freed = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2044 | |
Steven Whitehouse | 97cc1025 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 2045 | spin_lock(&lru_lock); |
Dave Chinner | 1ab6c49 | 2013-08-28 10:18:09 +1000 | [diff] [blame] | 2046 | while ((nr-- >= 0) && !list_empty(&lru_list)) { |
Andreas Gruenbacher | 969183b | 2020-02-03 19:22:45 +0100 | [diff] [blame] | 2047 | gl = list_first_entry(&lru_list, struct gfs2_glock, gl_lru); |
Steven Whitehouse | 97cc1025 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 2048 | |
| 2049 | /* Test for being demotable */ |
Steven Whitehouse | 94a09a3 | 2014-06-23 14:43:32 +0100 | [diff] [blame] | 2050 | if (!test_bit(GLF_LOCK, &gl->gl_flags)) { |
Steven Whitehouse | 4506a519 | 2013-02-01 20:36:03 +0000 | [diff] [blame] | 2051 | list_move(&gl->gl_lru, &dispose); |
| 2052 | atomic_dec(&lru_count); |
Dave Chinner | 1ab6c49 | 2013-08-28 10:18:09 +1000 | [diff] [blame] | 2053 | freed++; |
Steven Whitehouse | 2163b1e | 2009-06-25 16:30:26 +0100 | [diff] [blame] | 2054 | continue; |
Steven Whitehouse | 97cc1025 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 2055 | } |
Steven Whitehouse | 4506a519 | 2013-02-01 20:36:03 +0000 | [diff] [blame] | 2056 | |
| 2057 | list_move(&gl->gl_lru, &skipped); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2058 | } |
Steven Whitehouse | 97cc1025 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 2059 | list_splice(&skipped, &lru_list); |
Steven Whitehouse | 4506a519 | 2013-02-01 20:36:03 +0000 | [diff] [blame] | 2060 | if (!list_empty(&dispose)) |
| 2061 | gfs2_dispose_glock_lru(&dispose); |
Steven Whitehouse | 97cc1025 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 2062 | spin_unlock(&lru_lock); |
Dave Chinner | 1ab6c49 | 2013-08-28 10:18:09 +1000 | [diff] [blame] | 2063 | |
| 2064 | return freed; |
Steven Whitehouse | 2a00585 | 2012-12-14 12:28:30 +0000 | [diff] [blame] | 2065 | } |
| 2066 | |
Dave Chinner | 1ab6c49 | 2013-08-28 10:18:09 +1000 | [diff] [blame] | 2067 | static unsigned long gfs2_glock_shrink_scan(struct shrinker *shrink, |
| 2068 | struct shrink_control *sc) |
Steven Whitehouse | 2a00585 | 2012-12-14 12:28:30 +0000 | [diff] [blame] | 2069 | { |
Dave Chinner | 1ab6c49 | 2013-08-28 10:18:09 +1000 | [diff] [blame] | 2070 | if (!(sc->gfp_mask & __GFP_FS)) |
| 2071 | return SHRINK_STOP; |
| 2072 | return gfs2_scan_glock_lru(sc->nr_to_scan); |
| 2073 | } |
Steven Whitehouse | 2a00585 | 2012-12-14 12:28:30 +0000 | [diff] [blame] | 2074 | |
Dave Chinner | 1ab6c49 | 2013-08-28 10:18:09 +1000 | [diff] [blame] | 2075 | static unsigned long gfs2_glock_shrink_count(struct shrinker *shrink, |
| 2076 | struct shrink_control *sc) |
| 2077 | { |
Glauber Costa | 55f841c | 2013-08-28 10:17:53 +1000 | [diff] [blame] | 2078 | return vfs_pressure_ratio(atomic_read(&lru_count)); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2079 | } |
| 2080 | |
Steven Whitehouse | 97cc1025 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 2081 | static struct shrinker glock_shrinker = { |
Steven Whitehouse | 97cc1025 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 2082 | .seeks = DEFAULT_SEEKS, |
Dave Chinner | 1ab6c49 | 2013-08-28 10:18:09 +1000 | [diff] [blame] | 2083 | .count_objects = gfs2_glock_shrink_count, |
| 2084 | .scan_objects = gfs2_glock_shrink_scan, |
Steven Whitehouse | 97cc1025 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 2085 | }; |
| 2086 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2087 | /** |
Bob Peterson | dbffb29 | 2020-10-12 15:04:20 -0500 | [diff] [blame] | 2088 | * glock_hash_walk - Call a function for glock in a hash bucket |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2089 | * @examiner: the function |
| 2090 | * @sdp: the filesystem |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2091 | * |
Herbert Xu | 98687f4 | 2017-02-11 19:26:45 +0800 | [diff] [blame] | 2092 | * Note that the function can be called multiple times on the same |
| 2093 | * object. So the user must ensure that the function can cope with |
| 2094 | * that. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2095 | */ |
| 2096 | |
Bob Peterson | 88ffbf3 | 2015-03-16 11:02:46 -0500 | [diff] [blame] | 2097 | static void glock_hash_walk(glock_examiner examiner, const struct gfs2_sbd *sdp) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2098 | { |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 2099 | struct gfs2_glock *gl; |
Herbert Xu | 98687f4 | 2017-02-11 19:26:45 +0800 | [diff] [blame] | 2100 | struct rhashtable_iter iter; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2101 | |
Herbert Xu | 98687f4 | 2017-02-11 19:26:45 +0800 | [diff] [blame] | 2102 | rhashtable_walk_enter(&gl_hash_table, &iter); |
| 2103 | |
| 2104 | do { |
Tom Herbert | 97a6ec4 | 2017-12-04 10:31:41 -0800 | [diff] [blame] | 2105 | rhashtable_walk_start(&iter); |
Herbert Xu | 98687f4 | 2017-02-11 19:26:45 +0800 | [diff] [blame] | 2106 | |
Andreas Gruenbacher | 7427f3b | 2021-10-07 15:57:44 +0200 | [diff] [blame] | 2107 | while ((gl = rhashtable_walk_next(&iter)) && !IS_ERR(gl)) { |
| 2108 | if (gl->gl_name.ln_sbd == sdp) |
Bob Peterson | 88ffbf3 | 2015-03-16 11:02:46 -0500 | [diff] [blame] | 2109 | examiner(gl); |
Andreas Gruenbacher | 7427f3b | 2021-10-07 15:57:44 +0200 | [diff] [blame] | 2110 | } |
Herbert Xu | 98687f4 | 2017-02-11 19:26:45 +0800 | [diff] [blame] | 2111 | |
| 2112 | rhashtable_walk_stop(&iter); |
| 2113 | } while (cond_resched(), gl == ERR_PTR(-EAGAIN)); |
| 2114 | |
| 2115 | rhashtable_walk_exit(&iter); |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 2116 | } |
| 2117 | |
Andreas Gruenbacher | a0e3cc6 | 2020-01-16 20:12:26 +0100 | [diff] [blame] | 2118 | bool gfs2_queue_delete_work(struct gfs2_glock *gl, unsigned long delay) |
| 2119 | { |
| 2120 | bool queued; |
| 2121 | |
| 2122 | spin_lock(&gl->gl_lockref.lock); |
| 2123 | queued = queue_delayed_work(gfs2_delete_workqueue, |
| 2124 | &gl->gl_delete, delay); |
| 2125 | if (queued) |
| 2126 | set_bit(GLF_PENDING_DELETE, &gl->gl_flags); |
| 2127 | spin_unlock(&gl->gl_lockref.lock); |
| 2128 | return queued; |
| 2129 | } |
| 2130 | |
| 2131 | void gfs2_cancel_delete_work(struct gfs2_glock *gl) |
| 2132 | { |
Andreas Gruenbacher | 486408d | 2021-10-11 20:53:02 +0200 | [diff] [blame] | 2133 | if (cancel_delayed_work(&gl->gl_delete)) { |
Andreas Gruenbacher | a0e3cc6 | 2020-01-16 20:12:26 +0100 | [diff] [blame] | 2134 | clear_bit(GLF_PENDING_DELETE, &gl->gl_flags); |
| 2135 | gfs2_glock_put(gl); |
| 2136 | } |
| 2137 | } |
| 2138 | |
| 2139 | bool gfs2_delete_work_queued(const struct gfs2_glock *gl) |
| 2140 | { |
| 2141 | return test_bit(GLF_PENDING_DELETE, &gl->gl_flags); |
| 2142 | } |
| 2143 | |
| 2144 | static void flush_delete_work(struct gfs2_glock *gl) |
| 2145 | { |
Bob Peterson | 2ffed52 | 2020-10-15 11:16:48 -0500 | [diff] [blame] | 2146 | if (gl->gl_name.ln_type == LM_TYPE_IOPEN) { |
| 2147 | if (cancel_delayed_work(&gl->gl_delete)) { |
| 2148 | queue_delayed_work(gfs2_delete_workqueue, |
| 2149 | &gl->gl_delete, 0); |
| 2150 | } |
Andreas Gruenbacher | 34244d7 | 2020-06-10 18:31:56 +0200 | [diff] [blame] | 2151 | } |
Andreas Gruenbacher | a0e3cc6 | 2020-01-16 20:12:26 +0100 | [diff] [blame] | 2152 | } |
| 2153 | |
| 2154 | void gfs2_flush_delete_work(struct gfs2_sbd *sdp) |
| 2155 | { |
| 2156 | glock_hash_walk(flush_delete_work, sdp); |
| 2157 | flush_workqueue(gfs2_delete_workqueue); |
| 2158 | } |
| 2159 | |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 2160 | /** |
| 2161 | * thaw_glock - thaw out a glock which has an unprocessed reply waiting |
| 2162 | * @gl: The glock to thaw |
| 2163 | * |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 2164 | */ |
| 2165 | |
| 2166 | static void thaw_glock(struct gfs2_glock *gl) |
| 2167 | { |
Andreas Gruenbacher | 7427f3b | 2021-10-07 15:57:44 +0200 | [diff] [blame] | 2168 | if (!test_and_clear_bit(GLF_FROZEN, &gl->gl_flags)) |
Andreas Gruenbacher | 6b0c744 | 2017-06-30 08:10:01 -0500 | [diff] [blame] | 2169 | return; |
Andreas Gruenbacher | 7427f3b | 2021-10-07 15:57:44 +0200 | [diff] [blame] | 2170 | if (!lockref_get_not_dead(&gl->gl_lockref)) |
| 2171 | return; |
Andreas Gruenbacher | 6b0c744 | 2017-06-30 08:10:01 -0500 | [diff] [blame] | 2172 | set_bit(GLF_REPLY_PENDING, &gl->gl_flags); |
| 2173 | gfs2_glock_queue_work(gl, 0); |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 2174 | } |
| 2175 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2176 | /** |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2177 | * clear_glock - look at a glock and see if we can free it from glock cache |
| 2178 | * @gl: the glock to look at |
| 2179 | * |
| 2180 | */ |
| 2181 | |
| 2182 | static void clear_glock(struct gfs2_glock *gl) |
| 2183 | { |
Steven Whitehouse | f42ab08 | 2011-04-14 16:50:31 +0100 | [diff] [blame] | 2184 | gfs2_glock_remove_from_lru(gl); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2185 | |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 2186 | spin_lock(&gl->gl_lockref.lock); |
Andreas Gruenbacher | 7427f3b | 2021-10-07 15:57:44 +0200 | [diff] [blame] | 2187 | if (!__lockref_is_dead(&gl->gl_lockref)) { |
| 2188 | gl->gl_lockref.count++; |
| 2189 | if (gl->gl_state != LM_ST_UNLOCKED) |
| 2190 | handle_callback(gl, LM_ST_UNLOCKED, 0, false); |
| 2191 | __gfs2_glock_queue_work(gl, 0); |
| 2192 | } |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 2193 | spin_unlock(&gl->gl_lockref.lock); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2194 | } |
| 2195 | |
| 2196 | /** |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 2197 | * gfs2_glock_thaw - Thaw any frozen glocks |
| 2198 | * @sdp: The super block |
| 2199 | * |
| 2200 | */ |
| 2201 | |
| 2202 | void gfs2_glock_thaw(struct gfs2_sbd *sdp) |
| 2203 | { |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 2204 | glock_hash_walk(thaw_glock, sdp); |
| 2205 | } |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 2206 | |
Bob Peterson | 3792ce9 | 2019-05-09 09:21:48 -0500 | [diff] [blame] | 2207 | static void dump_glock(struct seq_file *seq, struct gfs2_glock *gl, bool fsid) |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 2208 | { |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 2209 | spin_lock(&gl->gl_lockref.lock); |
Bob Peterson | 3792ce9 | 2019-05-09 09:21:48 -0500 | [diff] [blame] | 2210 | gfs2_dump_glock(seq, gl, fsid); |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 2211 | spin_unlock(&gl->gl_lockref.lock); |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 2212 | } |
| 2213 | |
| 2214 | static void dump_glock_func(struct gfs2_glock *gl) |
| 2215 | { |
Bob Peterson | 3792ce9 | 2019-05-09 09:21:48 -0500 | [diff] [blame] | 2216 | dump_glock(NULL, gl, true); |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 2217 | } |
| 2218 | |
| 2219 | /** |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2220 | * gfs2_gl_hash_clear - Empty out the glock hash table |
| 2221 | * @sdp: the filesystem |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2222 | * |
Steven Whitehouse | 1bdad60 | 2008-06-03 14:09:53 +0100 | [diff] [blame] | 2223 | * Called when unmounting the filesystem. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2224 | */ |
| 2225 | |
Steven Whitehouse | fefc03b | 2008-12-19 15:32:06 +0000 | [diff] [blame] | 2226 | void gfs2_gl_hash_clear(struct gfs2_sbd *sdp) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2227 | { |
David Teigland | fb6791d | 2012-11-13 10:58:56 -0500 | [diff] [blame] | 2228 | set_bit(SDF_SKIP_DLM_UNLOCK, &sdp->sd_flags); |
Bob Peterson | 222cb53 | 2013-04-25 12:49:17 -0400 | [diff] [blame] | 2229 | flush_workqueue(glock_workqueue); |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 2230 | glock_hash_walk(clear_glock, sdp); |
Steven Whitehouse | 8f05228 | 2010-01-29 15:21:27 +0000 | [diff] [blame] | 2231 | flush_workqueue(glock_workqueue); |
Bob Peterson | 2aba1b5 | 2015-05-19 09:11:23 -0500 | [diff] [blame] | 2232 | wait_event_timeout(sdp->sd_glock_wait, |
| 2233 | atomic_read(&sdp->sd_glock_disposal) == 0, |
| 2234 | HZ * 600); |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 2235 | glock_hash_walk(dump_glock_func, sdp); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2236 | } |
| 2237 | |
Steven Whitehouse | 813e0c4 | 2008-11-18 13:38:48 +0000 | [diff] [blame] | 2238 | void gfs2_glock_finish_truncate(struct gfs2_inode *ip) |
| 2239 | { |
| 2240 | struct gfs2_glock *gl = ip->i_gl; |
| 2241 | int ret; |
| 2242 | |
| 2243 | ret = gfs2_truncatei_resume(ip); |
Bob Peterson | ea4e61c | 2020-05-23 08:13:50 -0500 | [diff] [blame] | 2244 | gfs2_glock_assert_withdraw(gl, ret == 0); |
Steven Whitehouse | 813e0c4 | 2008-11-18 13:38:48 +0000 | [diff] [blame] | 2245 | |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 2246 | spin_lock(&gl->gl_lockref.lock); |
Steven Whitehouse | 813e0c4 | 2008-11-18 13:38:48 +0000 | [diff] [blame] | 2247 | clear_bit(GLF_LOCK, &gl->gl_flags); |
| 2248 | run_queue(gl, 1); |
Andreas Gruenbacher | f3dd164 | 2015-10-29 10:58:09 -0500 | [diff] [blame] | 2249 | spin_unlock(&gl->gl_lockref.lock); |
Steven Whitehouse | 813e0c4 | 2008-11-18 13:38:48 +0000 | [diff] [blame] | 2250 | } |
| 2251 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2252 | static const char *state2str(unsigned state) |
Robert Peterson | 04b933f | 2007-03-23 17:05:15 -0500 | [diff] [blame] | 2253 | { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2254 | switch(state) { |
| 2255 | case LM_ST_UNLOCKED: |
| 2256 | return "UN"; |
| 2257 | case LM_ST_SHARED: |
| 2258 | return "SH"; |
| 2259 | case LM_ST_DEFERRED: |
| 2260 | return "DF"; |
| 2261 | case LM_ST_EXCLUSIVE: |
| 2262 | return "EX"; |
| 2263 | } |
| 2264 | return "??"; |
| 2265 | } |
Robert Peterson | 04b933f | 2007-03-23 17:05:15 -0500 | [diff] [blame] | 2266 | |
Bob Peterson | b58bf40 | 2015-07-24 09:45:43 -0500 | [diff] [blame] | 2267 | static const char *hflags2str(char *buf, u16 flags, unsigned long iflags) |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2268 | { |
| 2269 | char *p = buf; |
| 2270 | if (flags & LM_FLAG_TRY) |
| 2271 | *p++ = 't'; |
| 2272 | if (flags & LM_FLAG_TRY_1CB) |
| 2273 | *p++ = 'T'; |
| 2274 | if (flags & LM_FLAG_NOEXP) |
| 2275 | *p++ = 'e'; |
| 2276 | if (flags & LM_FLAG_ANY) |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 2277 | *p++ = 'A'; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2278 | if (flags & LM_FLAG_PRIORITY) |
| 2279 | *p++ = 'p'; |
Bob Peterson | 06e908c | 2018-04-18 13:58:19 -0700 | [diff] [blame] | 2280 | if (flags & LM_FLAG_NODE_SCOPE) |
| 2281 | *p++ = 'n'; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2282 | if (flags & GL_ASYNC) |
| 2283 | *p++ = 'a'; |
| 2284 | if (flags & GL_EXACT) |
| 2285 | *p++ = 'E'; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2286 | if (flags & GL_NOCACHE) |
| 2287 | *p++ = 'c'; |
| 2288 | if (test_bit(HIF_HOLDER, &iflags)) |
| 2289 | *p++ = 'H'; |
| 2290 | if (test_bit(HIF_WAIT, &iflags)) |
| 2291 | *p++ = 'W'; |
Bob Peterson | dc73290 | 2021-08-19 20:51:23 +0200 | [diff] [blame] | 2292 | if (test_bit(HIF_MAY_DEMOTE, &iflags)) |
| 2293 | *p++ = 'D'; |
Bob Peterson | 4c69038 | 2021-09-13 12:40:09 -0500 | [diff] [blame] | 2294 | if (flags & GL_SKIP) |
| 2295 | *p++ = 's'; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2296 | *p = 0; |
| 2297 | return buf; |
Robert Peterson | 04b933f | 2007-03-23 17:05:15 -0500 | [diff] [blame] | 2298 | } |
| 2299 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2300 | /** |
| 2301 | * dump_holder - print information about a glock holder |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2302 | * @seq: the seq_file struct |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2303 | * @gh: the glock holder |
Bob Peterson | 3792ce9 | 2019-05-09 09:21:48 -0500 | [diff] [blame] | 2304 | * @fs_id_buf: pointer to file system id (if requested) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2305 | * |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2306 | */ |
| 2307 | |
Bob Peterson | 3792ce9 | 2019-05-09 09:21:48 -0500 | [diff] [blame] | 2308 | static void dump_holder(struct seq_file *seq, const struct gfs2_holder *gh, |
| 2309 | const char *fs_id_buf) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2310 | { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2311 | struct task_struct *gh_owner = NULL; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2312 | char flags_buf[32]; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2313 | |
Tetsuo Handa | 0b3a2c9 | 2014-01-02 19:52:20 +0900 | [diff] [blame] | 2314 | rcu_read_lock(); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2315 | if (gh->gh_owner_pid) |
Pavel Emelyanov | b1e058d | 2008-02-07 00:13:19 -0800 | [diff] [blame] | 2316 | gh_owner = pid_task(gh->gh_owner_pid, PIDTYPE_PID); |
Bob Peterson | 3792ce9 | 2019-05-09 09:21:48 -0500 | [diff] [blame] | 2317 | gfs2_print_dbg(seq, "%s H: s:%s f:%s e:%d p:%ld [%s] %pS\n", |
| 2318 | fs_id_buf, state2str(gh->gh_state), |
Joe Perches | cc18152 | 2010-11-05 16:12:36 -0700 | [diff] [blame] | 2319 | hflags2str(flags_buf, gh->gh_flags, gh->gh_iflags), |
| 2320 | gh->gh_error, |
| 2321 | gh->gh_owner_pid ? (long)pid_nr(gh->gh_owner_pid) : -1, |
| 2322 | gh_owner ? gh_owner->comm : "(ended)", |
| 2323 | (void *)gh->gh_ip); |
Tetsuo Handa | 0b3a2c9 | 2014-01-02 19:52:20 +0900 | [diff] [blame] | 2324 | rcu_read_unlock(); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2325 | } |
| 2326 | |
Steven Whitehouse | 627c10b | 2011-04-14 14:09:52 +0100 | [diff] [blame] | 2327 | static const char *gflags2str(char *buf, const struct gfs2_glock *gl) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2328 | { |
Steven Whitehouse | 627c10b | 2011-04-14 14:09:52 +0100 | [diff] [blame] | 2329 | const unsigned long *gflags = &gl->gl_flags; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2330 | char *p = buf; |
Steven Whitehouse | 627c10b | 2011-04-14 14:09:52 +0100 | [diff] [blame] | 2331 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2332 | if (test_bit(GLF_LOCK, gflags)) |
| 2333 | *p++ = 'l'; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2334 | if (test_bit(GLF_DEMOTE, gflags)) |
| 2335 | *p++ = 'D'; |
| 2336 | if (test_bit(GLF_PENDING_DEMOTE, gflags)) |
| 2337 | *p++ = 'd'; |
| 2338 | if (test_bit(GLF_DEMOTE_IN_PROGRESS, gflags)) |
| 2339 | *p++ = 'p'; |
| 2340 | if (test_bit(GLF_DIRTY, gflags)) |
| 2341 | *p++ = 'y'; |
| 2342 | if (test_bit(GLF_LFLUSH, gflags)) |
| 2343 | *p++ = 'f'; |
| 2344 | if (test_bit(GLF_INVALIDATE_IN_PROGRESS, gflags)) |
| 2345 | *p++ = 'i'; |
| 2346 | if (test_bit(GLF_REPLY_PENDING, gflags)) |
| 2347 | *p++ = 'r'; |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 2348 | if (test_bit(GLF_INITIAL, gflags)) |
Steven Whitehouse | d8348de | 2009-02-05 10:12:38 +0000 | [diff] [blame] | 2349 | *p++ = 'I'; |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 2350 | if (test_bit(GLF_FROZEN, gflags)) |
| 2351 | *p++ = 'F'; |
Bob Peterson | e2c6c8a | 2020-10-12 13:57:37 -0500 | [diff] [blame] | 2352 | if (!list_empty(&gl->gl_holders)) |
Steven Whitehouse | 7b5e3d5 | 2010-09-03 09:39:20 +0100 | [diff] [blame] | 2353 | *p++ = 'q'; |
Steven Whitehouse | 627c10b | 2011-04-14 14:09:52 +0100 | [diff] [blame] | 2354 | if (test_bit(GLF_LRU, gflags)) |
| 2355 | *p++ = 'L'; |
| 2356 | if (gl->gl_object) |
| 2357 | *p++ = 'o'; |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2358 | if (test_bit(GLF_BLOCKING, gflags)) |
| 2359 | *p++ = 'b'; |
Bob Peterson | 5deaf1f | 2020-06-09 13:29:08 -0400 | [diff] [blame] | 2360 | if (test_bit(GLF_PENDING_DELETE, gflags)) |
| 2361 | *p++ = 'P'; |
| 2362 | if (test_bit(GLF_FREEING, gflags)) |
| 2363 | *p++ = 'x'; |
Bob Peterson | f2e70d8 | 2021-10-06 09:29:18 -0500 | [diff] [blame] | 2364 | if (test_bit(GLF_INSTANTIATE_NEEDED, gflags)) |
| 2365 | *p++ = 'n'; |
| 2366 | if (test_bit(GLF_INSTANTIATE_IN_PROG, gflags)) |
| 2367 | *p++ = 'N'; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2368 | *p = 0; |
| 2369 | return buf; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2370 | } |
| 2371 | |
| 2372 | /** |
Steven Whitehouse | 8eae1ca0 | 2012-10-15 10:57:02 +0100 | [diff] [blame] | 2373 | * gfs2_dump_glock - print information about a glock |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2374 | * @seq: The seq_file struct |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2375 | * @gl: the glock |
Bob Peterson | 3792ce9 | 2019-05-09 09:21:48 -0500 | [diff] [blame] | 2376 | * @fsid: If true, also dump the file system id |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2377 | * |
| 2378 | * The file format is as follows: |
| 2379 | * One line per object, capital letters are used to indicate objects |
| 2380 | * G = glock, I = Inode, R = rgrp, H = holder. Glocks are not indented, |
| 2381 | * other objects are indented by a single space and follow the glock to |
| 2382 | * which they are related. Fields are indicated by lower case letters |
| 2383 | * followed by a colon and the field value, except for strings which are in |
| 2384 | * [] so that its possible to see if they are composed of spaces for |
| 2385 | * example. The field's are n = number (id of the object), f = flags, |
| 2386 | * t = type, s = state, r = refcount, e = error, p = pid. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2387 | * |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2388 | */ |
| 2389 | |
Bob Peterson | 3792ce9 | 2019-05-09 09:21:48 -0500 | [diff] [blame] | 2390 | void gfs2_dump_glock(struct seq_file *seq, struct gfs2_glock *gl, bool fsid) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2391 | { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2392 | const struct gfs2_glock_operations *glops = gl->gl_ops; |
| 2393 | unsigned long long dtime; |
| 2394 | const struct gfs2_holder *gh; |
| 2395 | char gflags_buf[32]; |
Bob Peterson | 3792ce9 | 2019-05-09 09:21:48 -0500 | [diff] [blame] | 2396 | struct gfs2_sbd *sdp = gl->gl_name.ln_sbd; |
Bob Peterson | 98fb057 | 2019-08-13 09:25:15 -0400 | [diff] [blame] | 2397 | char fs_id_buf[sizeof(sdp->sd_fsname) + 7]; |
Bob Peterson | 7e901d6 | 2020-05-22 13:57:41 -0500 | [diff] [blame] | 2398 | unsigned long nrpages = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2399 | |
Bob Peterson | 7e901d6 | 2020-05-22 13:57:41 -0500 | [diff] [blame] | 2400 | if (gl->gl_ops->go_flags & GLOF_ASPACE) { |
| 2401 | struct address_space *mapping = gfs2_glock2aspace(gl); |
| 2402 | |
| 2403 | nrpages = mapping->nrpages; |
| 2404 | } |
Bob Peterson | 3792ce9 | 2019-05-09 09:21:48 -0500 | [diff] [blame] | 2405 | memset(fs_id_buf, 0, sizeof(fs_id_buf)); |
| 2406 | if (fsid && sdp) /* safety precaution */ |
| 2407 | sprintf(fs_id_buf, "fsid=%s: ", sdp->sd_fsname); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2408 | dtime = jiffies - gl->gl_demote_time; |
| 2409 | dtime *= 1000000/HZ; /* demote time in uSec */ |
| 2410 | if (!test_bit(GLF_DEMOTE, &gl->gl_flags)) |
| 2411 | dtime = 0; |
Bob Peterson | 3792ce9 | 2019-05-09 09:21:48 -0500 | [diff] [blame] | 2412 | gfs2_print_dbg(seq, "%sG: s:%s n:%u/%llx f:%s t:%s d:%s/%llu a:%d " |
Bob Peterson | 7e901d6 | 2020-05-22 13:57:41 -0500 | [diff] [blame] | 2413 | "v:%d r:%d m:%ld p:%lu\n", |
| 2414 | fs_id_buf, state2str(gl->gl_state), |
| 2415 | gl->gl_name.ln_type, |
| 2416 | (unsigned long long)gl->gl_name.ln_number, |
| 2417 | gflags2str(gflags_buf, gl), |
| 2418 | state2str(gl->gl_target), |
| 2419 | state2str(gl->gl_demote_state), dtime, |
| 2420 | atomic_read(&gl->gl_ail_count), |
| 2421 | atomic_read(&gl->gl_revokes), |
| 2422 | (int)gl->gl_lockref.count, gl->gl_hold_time, nrpages); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2423 | |
Steven Whitehouse | ac3beb6 | 2014-01-16 10:31:13 +0000 | [diff] [blame] | 2424 | list_for_each_entry(gh, &gl->gl_holders, gh_list) |
Bob Peterson | 3792ce9 | 2019-05-09 09:21:48 -0500 | [diff] [blame] | 2425 | dump_holder(seq, gh, fs_id_buf); |
Steven Whitehouse | ac3beb6 | 2014-01-16 10:31:13 +0000 | [diff] [blame] | 2426 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2427 | if (gl->gl_state != LM_ST_UNLOCKED && glops->go_dump) |
Bob Peterson | 3792ce9 | 2019-05-09 09:21:48 -0500 | [diff] [blame] | 2428 | glops->go_dump(seq, gl, fs_id_buf); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2429 | } |
| 2430 | |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2431 | static int gfs2_glstats_seq_show(struct seq_file *seq, void *iter_ptr) |
| 2432 | { |
| 2433 | struct gfs2_glock *gl = iter_ptr; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2434 | |
Ben Hutchings | 4d20713 | 2015-08-27 12:51:45 -0500 | [diff] [blame] | 2435 | seq_printf(seq, "G: n:%u/%llx rtt:%llu/%llu rttb:%llu/%llu irt:%llu/%llu dcnt: %llu qcnt: %llu\n", |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2436 | gl->gl_name.ln_type, |
| 2437 | (unsigned long long)gl->gl_name.ln_number, |
Ben Hutchings | 4d20713 | 2015-08-27 12:51:45 -0500 | [diff] [blame] | 2438 | (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SRTT], |
| 2439 | (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SRTTVAR], |
| 2440 | (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SRTTB], |
| 2441 | (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SRTTVARB], |
| 2442 | (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SIRT], |
| 2443 | (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SIRTVAR], |
| 2444 | (unsigned long long)gl->gl_stats.stats[GFS2_LKS_DCOUNT], |
| 2445 | (unsigned long long)gl->gl_stats.stats[GFS2_LKS_QCOUNT]); |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2446 | return 0; |
| 2447 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2448 | |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2449 | static const char *gfs2_gltype[] = { |
| 2450 | "type", |
| 2451 | "reserved", |
| 2452 | "nondisk", |
| 2453 | "inode", |
| 2454 | "rgrp", |
| 2455 | "meta", |
| 2456 | "iopen", |
| 2457 | "flock", |
| 2458 | "plock", |
| 2459 | "quota", |
| 2460 | "journal", |
| 2461 | }; |
| 2462 | |
| 2463 | static const char *gfs2_stype[] = { |
| 2464 | [GFS2_LKS_SRTT] = "srtt", |
| 2465 | [GFS2_LKS_SRTTVAR] = "srttvar", |
| 2466 | [GFS2_LKS_SRTTB] = "srttb", |
| 2467 | [GFS2_LKS_SRTTVARB] = "srttvarb", |
| 2468 | [GFS2_LKS_SIRT] = "sirt", |
| 2469 | [GFS2_LKS_SIRTVAR] = "sirtvar", |
| 2470 | [GFS2_LKS_DCOUNT] = "dlm", |
| 2471 | [GFS2_LKS_QCOUNT] = "queue", |
| 2472 | }; |
| 2473 | |
| 2474 | #define GFS2_NR_SBSTATS (ARRAY_SIZE(gfs2_gltype) * ARRAY_SIZE(gfs2_stype)) |
| 2475 | |
| 2476 | static int gfs2_sbstats_seq_show(struct seq_file *seq, void *iter_ptr) |
| 2477 | { |
Andreas Gruenbacher | 81648d0 | 2015-08-27 11:43:00 -0500 | [diff] [blame] | 2478 | struct gfs2_sbd *sdp = seq->private; |
| 2479 | loff_t pos = *(loff_t *)iter_ptr; |
| 2480 | unsigned index = pos >> 3; |
| 2481 | unsigned subindex = pos & 0x07; |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2482 | int i; |
| 2483 | |
| 2484 | if (index == 0 && subindex != 0) |
| 2485 | return 0; |
| 2486 | |
| 2487 | seq_printf(seq, "%-10s %8s:", gfs2_gltype[index], |
| 2488 | (index == 0) ? "cpu": gfs2_stype[subindex]); |
| 2489 | |
| 2490 | for_each_possible_cpu(i) { |
| 2491 | const struct gfs2_pcpu_lkstats *lkstats = per_cpu_ptr(sdp->sd_lkstats, i); |
Andreas Gruenbacher | 8f7e0a8 | 2015-08-27 13:02:54 -0500 | [diff] [blame] | 2492 | |
| 2493 | if (index == 0) |
| 2494 | seq_printf(seq, " %15u", i); |
| 2495 | else |
| 2496 | seq_printf(seq, " %15llu", (unsigned long long)lkstats-> |
| 2497 | lkstats[index - 1].stats[subindex]); |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2498 | } |
| 2499 | seq_putc(seq, '\n'); |
| 2500 | return 0; |
| 2501 | } |
Steven Whitehouse | 8fbbfd2 | 2007-08-01 13:57:10 +0100 | [diff] [blame] | 2502 | |
Steven Whitehouse | 85d1da6 | 2006-09-07 14:40:21 -0400 | [diff] [blame] | 2503 | int __init gfs2_glock_init(void) |
| 2504 | { |
Andreas Gruenbacher | 0515480 | 2017-08-01 11:18:26 -0500 | [diff] [blame] | 2505 | int i, ret; |
Bob Peterson | 88ffbf3 | 2015-03-16 11:02:46 -0500 | [diff] [blame] | 2506 | |
| 2507 | ret = rhashtable_init(&gl_hash_table, &ht_parms); |
| 2508 | if (ret < 0) |
| 2509 | return ret; |
Steven Whitehouse | 8fbbfd2 | 2007-08-01 13:57:10 +0100 | [diff] [blame] | 2510 | |
Steven Whitehouse | d211577 | 2010-11-03 19:58:53 +0000 | [diff] [blame] | 2511 | glock_workqueue = alloc_workqueue("glock_workqueue", WQ_MEM_RECLAIM | |
Tejun Heo | 58a69cb | 2011-02-16 09:25:31 +0100 | [diff] [blame] | 2512 | WQ_HIGHPRI | WQ_FREEZABLE, 0); |
Bob Peterson | 88ffbf3 | 2015-03-16 11:02:46 -0500 | [diff] [blame] | 2513 | if (!glock_workqueue) { |
| 2514 | rhashtable_destroy(&gl_hash_table); |
Dan Carpenter | dfc4616 | 2013-08-15 10:54:43 +0300 | [diff] [blame] | 2515 | return -ENOMEM; |
Bob Peterson | 88ffbf3 | 2015-03-16 11:02:46 -0500 | [diff] [blame] | 2516 | } |
Steven Whitehouse | d211577 | 2010-11-03 19:58:53 +0000 | [diff] [blame] | 2517 | gfs2_delete_workqueue = alloc_workqueue("delete_workqueue", |
Tejun Heo | 58a69cb | 2011-02-16 09:25:31 +0100 | [diff] [blame] | 2518 | WQ_MEM_RECLAIM | WQ_FREEZABLE, |
Steven Whitehouse | d211577 | 2010-11-03 19:58:53 +0000 | [diff] [blame] | 2519 | 0); |
Dan Carpenter | dfc4616 | 2013-08-15 10:54:43 +0300 | [diff] [blame] | 2520 | if (!gfs2_delete_workqueue) { |
Benjamin Marzinski | b94a170 | 2009-07-23 18:52:34 -0500 | [diff] [blame] | 2521 | destroy_workqueue(glock_workqueue); |
Bob Peterson | 88ffbf3 | 2015-03-16 11:02:46 -0500 | [diff] [blame] | 2522 | rhashtable_destroy(&gl_hash_table); |
Dan Carpenter | dfc4616 | 2013-08-15 10:54:43 +0300 | [diff] [blame] | 2523 | return -ENOMEM; |
Benjamin Marzinski | b94a170 | 2009-07-23 18:52:34 -0500 | [diff] [blame] | 2524 | } |
Steven Whitehouse | 97cc1025 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 2525 | |
Chao Yu | e0d735c | 2016-09-21 12:09:40 -0500 | [diff] [blame] | 2526 | ret = register_shrinker(&glock_shrinker); |
| 2527 | if (ret) { |
| 2528 | destroy_workqueue(gfs2_delete_workqueue); |
| 2529 | destroy_workqueue(glock_workqueue); |
| 2530 | rhashtable_destroy(&gl_hash_table); |
| 2531 | return ret; |
| 2532 | } |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 2533 | |
Andreas Gruenbacher | 0515480 | 2017-08-01 11:18:26 -0500 | [diff] [blame] | 2534 | for (i = 0; i < GLOCK_WAIT_TABLE_SIZE; i++) |
| 2535 | init_waitqueue_head(glock_wait_table + i); |
| 2536 | |
Steven Whitehouse | 85d1da6 | 2006-09-07 14:40:21 -0400 | [diff] [blame] | 2537 | return 0; |
| 2538 | } |
| 2539 | |
Steven Whitehouse | 8fbbfd2 | 2007-08-01 13:57:10 +0100 | [diff] [blame] | 2540 | void gfs2_glock_exit(void) |
| 2541 | { |
Steven Whitehouse | 97cc1025 | 2008-11-20 13:39:47 +0000 | [diff] [blame] | 2542 | unregister_shrinker(&glock_shrinker); |
Bob Peterson | 88ffbf3 | 2015-03-16 11:02:46 -0500 | [diff] [blame] | 2543 | rhashtable_destroy(&gl_hash_table); |
Benjamin Marzinski | c4f68a1 | 2007-08-23 13:19:05 -0500 | [diff] [blame] | 2544 | destroy_workqueue(glock_workqueue); |
Benjamin Marzinski | b94a170 | 2009-07-23 18:52:34 -0500 | [diff] [blame] | 2545 | destroy_workqueue(gfs2_delete_workqueue); |
Steven Whitehouse | 8fbbfd2 | 2007-08-01 13:57:10 +0100 | [diff] [blame] | 2546 | } |
| 2547 | |
Andreas Gruenbacher | 7ac07fd | 2018-01-08 22:35:43 +0100 | [diff] [blame] | 2548 | static void gfs2_glock_iter_next(struct gfs2_glock_iter *gi, loff_t n) |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 2549 | { |
Andreas Gruenbacher | 3fd5d3a | 2018-03-28 12:05:35 +0200 | [diff] [blame] | 2550 | struct gfs2_glock *gl = gi->gl; |
| 2551 | |
| 2552 | if (gl) { |
| 2553 | if (n == 0) |
| 2554 | return; |
| 2555 | if (!lockref_put_not_zero(&gl->gl_lockref)) |
| 2556 | gfs2_glock_queue_put(gl); |
Andreas Gruenbacher | 7ac07fd | 2018-01-08 22:35:43 +0100 | [diff] [blame] | 2557 | } |
| 2558 | for (;;) { |
Andreas Gruenbacher | 3fd5d3a | 2018-03-28 12:05:35 +0200 | [diff] [blame] | 2559 | gl = rhashtable_walk_next(&gi->hti); |
| 2560 | if (IS_ERR_OR_NULL(gl)) { |
| 2561 | if (gl == ERR_PTR(-EAGAIN)) { |
| 2562 | n = 1; |
| 2563 | continue; |
Andreas Gruenbacher | 7ac07fd | 2018-01-08 22:35:43 +0100 | [diff] [blame] | 2564 | } |
Andreas Gruenbacher | 3fd5d3a | 2018-03-28 12:05:35 +0200 | [diff] [blame] | 2565 | gl = NULL; |
| 2566 | break; |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 2567 | } |
Andreas Gruenbacher | 3fd5d3a | 2018-03-28 12:05:35 +0200 | [diff] [blame] | 2568 | if (gl->gl_name.ln_sbd != gi->sdp) |
| 2569 | continue; |
| 2570 | if (n <= 1) { |
| 2571 | if (!lockref_get_not_dead(&gl->gl_lockref)) |
| 2572 | continue; |
| 2573 | break; |
| 2574 | } else { |
| 2575 | if (__lockref_is_dead(&gl->gl_lockref)) |
| 2576 | continue; |
| 2577 | n--; |
| 2578 | } |
Dan Carpenter | 14d3756 | 2016-12-14 08:02:03 -0600 | [diff] [blame] | 2579 | } |
Andreas Gruenbacher | 3fd5d3a | 2018-03-28 12:05:35 +0200 | [diff] [blame] | 2580 | gi->gl = gl; |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2581 | } |
| 2582 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2583 | static void *gfs2_glock_seq_start(struct seq_file *seq, loff_t *pos) |
Bob Peterson | 27c3b41 | 2017-08-18 09:15:13 -0500 | [diff] [blame] | 2584 | __acquires(RCU) |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2585 | { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2586 | struct gfs2_glock_iter *gi = seq->private; |
Andreas Gruenbacher | 7ac07fd | 2018-01-08 22:35:43 +0100 | [diff] [blame] | 2587 | loff_t n; |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2588 | |
Andreas Gruenbacher | 7ac07fd | 2018-01-08 22:35:43 +0100 | [diff] [blame] | 2589 | /* |
| 2590 | * We can either stay where we are, skip to the next hash table |
| 2591 | * entry, or start from the beginning. |
| 2592 | */ |
| 2593 | if (*pos < gi->last_pos) { |
| 2594 | rhashtable_walk_exit(&gi->hti); |
| 2595 | rhashtable_walk_enter(&gl_hash_table, &gi->hti); |
| 2596 | n = *pos + 1; |
| 2597 | } else { |
| 2598 | n = *pos - gi->last_pos; |
| 2599 | } |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2600 | |
Andreas Gruenbacher | 7ac07fd | 2018-01-08 22:35:43 +0100 | [diff] [blame] | 2601 | rhashtable_walk_start(&gi->hti); |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2602 | |
Andreas Gruenbacher | 7ac07fd | 2018-01-08 22:35:43 +0100 | [diff] [blame] | 2603 | gfs2_glock_iter_next(gi, n); |
Steven Whitehouse | ba1ddcb | 2012-06-08 11:16:22 +0100 | [diff] [blame] | 2604 | gi->last_pos = *pos; |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2605 | return gi->gl; |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2606 | } |
| 2607 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2608 | 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] | 2609 | loff_t *pos) |
| 2610 | { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2611 | struct gfs2_glock_iter *gi = seq->private; |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2612 | |
| 2613 | (*pos)++; |
Steven Whitehouse | ba1ddcb | 2012-06-08 11:16:22 +0100 | [diff] [blame] | 2614 | gi->last_pos = *pos; |
Andreas Gruenbacher | 7ac07fd | 2018-01-08 22:35:43 +0100 | [diff] [blame] | 2615 | gfs2_glock_iter_next(gi, 1); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2616 | return gi->gl; |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2617 | } |
| 2618 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2619 | static void gfs2_glock_seq_stop(struct seq_file *seq, void *iter_ptr) |
Bob Peterson | 27c3b41 | 2017-08-18 09:15:13 -0500 | [diff] [blame] | 2620 | __releases(RCU) |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2621 | { |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2622 | struct gfs2_glock_iter *gi = seq->private; |
Steven Whitehouse | bc015cb | 2011-01-19 09:30:01 +0000 | [diff] [blame] | 2623 | |
Bob Peterson | 88ffbf3 | 2015-03-16 11:02:46 -0500 | [diff] [blame] | 2624 | rhashtable_walk_stop(&gi->hti); |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2625 | } |
| 2626 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2627 | 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] | 2628 | { |
Bob Peterson | 3792ce9 | 2019-05-09 09:21:48 -0500 | [diff] [blame] | 2629 | dump_glock(seq, iter_ptr, false); |
Steven Whitehouse | ac3beb6 | 2014-01-16 10:31:13 +0000 | [diff] [blame] | 2630 | return 0; |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2631 | } |
| 2632 | |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2633 | static void *gfs2_sbstats_seq_start(struct seq_file *seq, loff_t *pos) |
| 2634 | { |
Andreas Gruenbacher | 81648d0 | 2015-08-27 11:43:00 -0500 | [diff] [blame] | 2635 | preempt_disable(); |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2636 | if (*pos >= GFS2_NR_SBSTATS) |
| 2637 | return NULL; |
Andreas Gruenbacher | 81648d0 | 2015-08-27 11:43:00 -0500 | [diff] [blame] | 2638 | return pos; |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2639 | } |
| 2640 | |
| 2641 | static void *gfs2_sbstats_seq_next(struct seq_file *seq, void *iter_ptr, |
| 2642 | loff_t *pos) |
| 2643 | { |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2644 | (*pos)++; |
Andreas Gruenbacher | 81648d0 | 2015-08-27 11:43:00 -0500 | [diff] [blame] | 2645 | if (*pos >= GFS2_NR_SBSTATS) |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2646 | return NULL; |
Andreas Gruenbacher | 81648d0 | 2015-08-27 11:43:00 -0500 | [diff] [blame] | 2647 | return pos; |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2648 | } |
| 2649 | |
| 2650 | static void gfs2_sbstats_seq_stop(struct seq_file *seq, void *iter_ptr) |
| 2651 | { |
| 2652 | preempt_enable(); |
| 2653 | } |
| 2654 | |
Denis Cheng | 4ef2900 | 2007-07-31 18:31:11 +0800 | [diff] [blame] | 2655 | static const struct seq_operations gfs2_glock_seq_ops = { |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2656 | .start = gfs2_glock_seq_start, |
| 2657 | .next = gfs2_glock_seq_next, |
| 2658 | .stop = gfs2_glock_seq_stop, |
| 2659 | .show = gfs2_glock_seq_show, |
| 2660 | }; |
| 2661 | |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2662 | static const struct seq_operations gfs2_glstats_seq_ops = { |
| 2663 | .start = gfs2_glock_seq_start, |
| 2664 | .next = gfs2_glock_seq_next, |
| 2665 | .stop = gfs2_glock_seq_stop, |
| 2666 | .show = gfs2_glstats_seq_show, |
| 2667 | }; |
| 2668 | |
Liu Shixin | e8a8023 | 2020-09-16 10:50:21 +0800 | [diff] [blame] | 2669 | static const struct seq_operations gfs2_sbstats_sops = { |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2670 | .start = gfs2_sbstats_seq_start, |
| 2671 | .next = gfs2_sbstats_seq_next, |
| 2672 | .stop = gfs2_sbstats_seq_stop, |
| 2673 | .show = gfs2_sbstats_seq_show, |
| 2674 | }; |
| 2675 | |
Steven Whitehouse | 0fe2f1e | 2012-06-11 13:49:47 +0100 | [diff] [blame] | 2676 | #define GFS2_SEQ_GOODSIZE min(PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER, 65536UL) |
| 2677 | |
Andreas Gruenbacher | 92ecd73 | 2017-03-09 09:48:05 -0500 | [diff] [blame] | 2678 | static int __gfs2_glocks_open(struct inode *inode, struct file *file, |
| 2679 | const struct seq_operations *ops) |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2680 | { |
Andreas Gruenbacher | 92ecd73 | 2017-03-09 09:48:05 -0500 | [diff] [blame] | 2681 | int ret = seq_open_private(file, ops, sizeof(struct gfs2_glock_iter)); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2682 | if (ret == 0) { |
| 2683 | struct seq_file *seq = file->private_data; |
| 2684 | struct gfs2_glock_iter *gi = seq->private; |
Bob Peterson | 88ffbf3 | 2015-03-16 11:02:46 -0500 | [diff] [blame] | 2685 | |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2686 | gi->sdp = inode->i_private; |
Steven Whitehouse | 0fe2f1e | 2012-06-11 13:49:47 +0100 | [diff] [blame] | 2687 | seq->buf = kmalloc(GFS2_SEQ_GOODSIZE, GFP_KERNEL | __GFP_NOWARN); |
Steven Whitehouse | df5d2f5 | 2012-06-07 13:30:16 +0100 | [diff] [blame] | 2688 | if (seq->buf) |
Steven Whitehouse | 0fe2f1e | 2012-06-11 13:49:47 +0100 | [diff] [blame] | 2689 | seq->size = GFS2_SEQ_GOODSIZE; |
Andreas Gruenbacher | 7ac07fd | 2018-01-08 22:35:43 +0100 | [diff] [blame] | 2690 | /* |
| 2691 | * Initially, we are "before" the first hash table entry; the |
| 2692 | * first call to rhashtable_walk_next gets us the first entry. |
| 2693 | */ |
| 2694 | gi->last_pos = -1; |
Bob Peterson | 88ffbf3 | 2015-03-16 11:02:46 -0500 | [diff] [blame] | 2695 | gi->gl = NULL; |
Andreas Gruenbacher | 7ac07fd | 2018-01-08 22:35:43 +0100 | [diff] [blame] | 2696 | rhashtable_walk_enter(&gl_hash_table, &gi->hti); |
Steven Whitehouse | 6802e34 | 2008-05-21 17:03:22 +0100 | [diff] [blame] | 2697 | } |
| 2698 | return ret; |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2699 | } |
| 2700 | |
Andreas Gruenbacher | 92ecd73 | 2017-03-09 09:48:05 -0500 | [diff] [blame] | 2701 | static int gfs2_glocks_open(struct inode *inode, struct file *file) |
| 2702 | { |
| 2703 | return __gfs2_glocks_open(inode, file, &gfs2_glock_seq_ops); |
| 2704 | } |
| 2705 | |
Bob Peterson | 88ffbf3 | 2015-03-16 11:02:46 -0500 | [diff] [blame] | 2706 | static int gfs2_glocks_release(struct inode *inode, struct file *file) |
| 2707 | { |
| 2708 | struct seq_file *seq = file->private_data; |
| 2709 | struct gfs2_glock_iter *gi = seq->private; |
| 2710 | |
Andreas Gruenbacher | 3fd5d3a | 2018-03-28 12:05:35 +0200 | [diff] [blame] | 2711 | if (gi->gl) |
| 2712 | gfs2_glock_put(gi->gl); |
Andreas Gruenbacher | 7ac07fd | 2018-01-08 22:35:43 +0100 | [diff] [blame] | 2713 | rhashtable_walk_exit(&gi->hti); |
Bob Peterson | 88ffbf3 | 2015-03-16 11:02:46 -0500 | [diff] [blame] | 2714 | return seq_release_private(inode, file); |
| 2715 | } |
| 2716 | |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2717 | static int gfs2_glstats_open(struct inode *inode, struct file *file) |
| 2718 | { |
Andreas Gruenbacher | 92ecd73 | 2017-03-09 09:48:05 -0500 | [diff] [blame] | 2719 | return __gfs2_glocks_open(inode, file, &gfs2_glstats_seq_ops); |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2720 | } |
| 2721 | |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2722 | static const struct file_operations gfs2_glocks_fops = { |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2723 | .owner = THIS_MODULE, |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2724 | .open = gfs2_glocks_open, |
| 2725 | .read = seq_read, |
| 2726 | .llseek = seq_lseek, |
Bob Peterson | 88ffbf3 | 2015-03-16 11:02:46 -0500 | [diff] [blame] | 2727 | .release = gfs2_glocks_release, |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2728 | }; |
| 2729 | |
| 2730 | static const struct file_operations gfs2_glstats_fops = { |
| 2731 | .owner = THIS_MODULE, |
| 2732 | .open = gfs2_glstats_open, |
| 2733 | .read = seq_read, |
| 2734 | .llseek = seq_lseek, |
Bob Peterson | 88ffbf3 | 2015-03-16 11:02:46 -0500 | [diff] [blame] | 2735 | .release = gfs2_glocks_release, |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2736 | }; |
| 2737 | |
Liu Shixin | e8a8023 | 2020-09-16 10:50:21 +0800 | [diff] [blame] | 2738 | DEFINE_SEQ_ATTRIBUTE(gfs2_sbstats); |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2739 | |
Greg Kroah-Hartman | 2abbf9a | 2019-01-22 16:21:51 +0100 | [diff] [blame] | 2740 | void gfs2_create_debugfs_file(struct gfs2_sbd *sdp) |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2741 | { |
Greg Kroah-Hartman | 2abbf9a | 2019-01-22 16:21:51 +0100 | [diff] [blame] | 2742 | sdp->debugfs_dir = debugfs_create_dir(sdp->sd_table_name, gfs2_root); |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2743 | |
Greg Kroah-Hartman | 2abbf9a | 2019-01-22 16:21:51 +0100 | [diff] [blame] | 2744 | debugfs_create_file("glocks", S_IFREG | S_IRUGO, sdp->debugfs_dir, sdp, |
| 2745 | &gfs2_glocks_fops); |
Steven Whitehouse | a245769 | 2012-01-20 10:38:36 +0000 | [diff] [blame] | 2746 | |
Greg Kroah-Hartman | 2abbf9a | 2019-01-22 16:21:51 +0100 | [diff] [blame] | 2747 | debugfs_create_file("glstats", S_IFREG | S_IRUGO, sdp->debugfs_dir, sdp, |
| 2748 | &gfs2_glstats_fops); |
Chengyu Song | 7b4ddfa | 2015-03-24 09:37:53 -0500 | [diff] [blame] | 2749 | |
Greg Kroah-Hartman | 2abbf9a | 2019-01-22 16:21:51 +0100 | [diff] [blame] | 2750 | debugfs_create_file("sbstats", S_IFREG | S_IRUGO, sdp->debugfs_dir, sdp, |
| 2751 | &gfs2_sbstats_fops); |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2752 | } |
| 2753 | |
| 2754 | void gfs2_delete_debugfs_file(struct gfs2_sbd *sdp) |
| 2755 | { |
Greg Kroah-Hartman | 2abbf9a | 2019-01-22 16:21:51 +0100 | [diff] [blame] | 2756 | debugfs_remove_recursive(sdp->debugfs_dir); |
| 2757 | sdp->debugfs_dir = NULL; |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2758 | } |
| 2759 | |
Greg Kroah-Hartman | 2abbf9a | 2019-01-22 16:21:51 +0100 | [diff] [blame] | 2760 | void gfs2_register_debugfs(void) |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2761 | { |
| 2762 | gfs2_root = debugfs_create_dir("gfs2", NULL); |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2763 | } |
| 2764 | |
| 2765 | void gfs2_unregister_debugfs(void) |
| 2766 | { |
| 2767 | debugfs_remove(gfs2_root); |
Robert Peterson | 5f88209 | 2007-04-18 11:41:11 -0500 | [diff] [blame] | 2768 | gfs2_root = NULL; |
Robert Peterson | 7c52b16 | 2007-03-16 10:26:37 +0000 | [diff] [blame] | 2769 | } |