]> Gentwo Git Trees - linux/.git/commitdiff
gfs2: Rename gfs2_{gl_dq_holders => withdraw_glocks}
authorAndreas Gruenbacher <agruenba@redhat.com>
Tue, 12 Aug 2025 12:48:28 +0000 (14:48 +0200)
committerAndreas Gruenbacher <agruenba@redhat.com>
Wed, 26 Nov 2025 23:52:27 +0000 (23:52 +0000)
Rename function gfs2_gl_dq_holders() to gfs2_withdraw_glocks().  This
function will soon be used for more than just dequeuing holders.

Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
fs/gfs2/glock.c
fs/gfs2/glock.h
fs/gfs2/util.c

index 2f790fe90f3b3909dec32548b03e6a9d052db3d0..ac9e10a41f00fb694647bba4c9ad323f98cd7710 100644 (file)
@@ -2078,7 +2078,7 @@ static void dump_glock_func(struct gfs2_glock *gl)
        dump_glock(NULL, gl, true);
 }
 
-static void withdraw_dq(struct gfs2_glock *gl)
+static void withdraw_glock(struct gfs2_glock *gl)
 {
        spin_lock(&gl->gl_lockref.lock);
        if (!__lockref_is_dead(&gl->gl_lockref))
@@ -2086,9 +2086,9 @@ static void withdraw_dq(struct gfs2_glock *gl)
        spin_unlock(&gl->gl_lockref.lock);
 }
 
-void gfs2_gl_dq_holders(struct gfs2_sbd *sdp)
+void gfs2_withdraw_glocks(struct gfs2_sbd *sdp)
 {
-       glock_hash_walk(withdraw_dq, sdp);
+       glock_hash_walk(withdraw_glock, sdp);
 }
 
 /**
index e84ef6c6164dd162c2c0eb6f71606e977a768200..55d5985f32a0808bbbbb6eb3322ea6e9f6e9f433 100644 (file)
@@ -263,7 +263,7 @@ bool gfs2_queue_verify_delete(struct gfs2_glock *gl, bool later);
 void gfs2_cancel_delete_work(struct gfs2_glock *gl);
 void gfs2_flush_delete_work(struct gfs2_sbd *sdp);
 void gfs2_gl_hash_clear(struct gfs2_sbd *sdp);
-void gfs2_gl_dq_holders(struct gfs2_sbd *sdp);
+void gfs2_withdraw_glocks(struct gfs2_sbd *sdp);
 void gfs2_glock_thaw(struct gfs2_sbd *sdp);
 void gfs2_glock_free(struct gfs2_glock *gl);
 void gfs2_glock_free_later(struct gfs2_glock *gl);
index 4f1db097212a84aa1a0811467b5d3e74d2e4dea2..09fcfc04769b4cbd6a12b632226723b53efbda00 100644 (file)
@@ -149,7 +149,7 @@ static void do_withdraw(struct gfs2_sbd *sdp)
                 * Dequeue any pending non-system glock holders that can no
                 * longer be granted because the file system is withdrawn.
                 */
-               gfs2_gl_dq_holders(sdp);
+               gfs2_withdraw_glocks(sdp);
        }
 
        gfs2_thaw_freeze_initiator(sdp->sd_vfs);