diff options
author | Andreas Gruenbacher <agruenba@redhat.com> | 2024-03-18 20:43:17 +0100 |
---|---|---|
committer | Andreas Gruenbacher <agruenba@redhat.com> | 2024-05-28 16:59:53 +0200 |
commit | 121e730112788ab9aceedfb38d59dae2dee83301 (patch) | |
tree | 7111dfba4283cdc2313611b9a991f62ce95d8fd9 /fs/gfs2/util.c | |
parent | 932a9052dc731d99865d478043e84b52937b8d54 (diff) | |
download | lwn-121e730112788ab9aceedfb38d59dae2dee83301.tar.gz lwn-121e730112788ab9aceedfb38d59dae2dee83301.zip |
gfs2: Rename GLF_FREEING to GLF_UNLOCKED
Rename the GLF_FREEING flag to GLF_UNLOCKED, and the ->go_free glock
operation to ->go_unlocked. This mechanism is used to wait for the
underlying DLM lock to be unlocked; being able to free the glock is a
consequence of the DLM lock being unlocked.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to 'fs/gfs2/util.c')
-rw-r--r-- | fs/gfs2/util.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/gfs2/util.c b/fs/gfs2/util.c index af4758d8d894..7e79b1a9e35f 100644 --- a/fs/gfs2/util.c +++ b/fs/gfs2/util.c @@ -206,9 +206,9 @@ static void signal_our_withdraw(struct gfs2_sbd *sdp) * on other nodes to be successful, otherwise we remain the owner of * the glock as far as dlm is concerned. */ - if (i_gl->gl_ops->go_free) { - set_bit(GLF_FREEING, &i_gl->gl_flags); - wait_on_bit(&i_gl->gl_flags, GLF_FREEING, TASK_UNINTERRUPTIBLE); + if (i_gl->gl_ops->go_unlocked) { + set_bit(GLF_UNLOCKED, &i_gl->gl_flags); + wait_on_bit(&i_gl->gl_flags, GLF_UNLOCKED, TASK_UNINTERRUPTIBLE); } /* |