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