]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
gfs2: glock cancelation flag fix
authorAndreas Gruenbacher <agruenba@redhat.com>
Fri, 12 Dec 2025 16:02:05 +0000 (16:02 +0000)
committerAndreas Gruenbacher <agruenba@redhat.com>
Mon, 26 Jan 2026 13:28:17 +0000 (14:28 +0100)
When an asynchronous glock holder is dequeued that hasn't been granted
yet (HIF_HOLDER not set) and no dlm operation is in progress on behalf
of that holder (GLF_LOCK not set), the dequeuing takes place in
__gfs2_glock_dq().  There, we are not clearing the HIF_WAIT flag and
waking up waiters.  Fix that.

This bug prevents the same holder from being enqueued later (gfs2_glock_nq())
without first reinitializing it (gfs2_holder_reinit()).  The code
doesn't currently use this pattern, but this will change in the next
commit.

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

index 92e029104d8a42ac9440b4499d42ae651d3986cf..47e8809575d5007fb1b512088376f9b011f69da1 100644 (file)
@@ -1545,6 +1545,8 @@ static void __gfs2_glock_dq(struct gfs2_holder *gh)
        list_del_init(&gh->gh_list);
        clear_bit(HIF_HOLDER, &gh->gh_iflags);
        trace_gfs2_glock_queue(gh, 0);
+       if (test_bit(HIF_WAIT, &gh->gh_iflags))
+               gfs2_holder_wake(gh);
 
        /*
         * If there hasn't been a demote request we are done.