Skip to content

Commit 2a94234

Browse files
committed
gfs2: Decode missing glock flags in tracepoints
jira LE-12345 Rebuild_History Non-Buildable kernel-5.14.0-570.12.1.el9_6 commit-author Andreas Gruenbacher <agruenba@redhat.com> commit 5788253 Add a number of glock flags are currently not shown in the text form of glock tracepoints. Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com> (cherry picked from commit 5788253) Signed-off-by: Jonathan Maple <jmaple@ciq.com>
1 parent 2f5f7f6 commit 2a94234

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

fs/gfs2/trace_gfs2.h

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,12 @@
5858
{(1UL << GLF_HAVE_FROZEN_REPLY), "F" }, \
5959
{(1UL << GLF_LRU), "L" }, \
6060
{(1UL << GLF_OBJECT), "o" }, \
61-
{(1UL << GLF_BLOCKING), "b" })
61+
{(1UL << GLF_BLOCKING), "b" }, \
62+
{(1UL << GLF_UNLOCKED), "x" }, \
63+
{(1UL << GLF_INSTANTIATE_NEEDED), "n" }, \
64+
{(1UL << GLF_INSTANTIATE_IN_PROG), "N" }, \
65+
{(1UL << GLF_TRY_TO_EVICT), "e" }, \
66+
{(1UL << GLF_VERIFY_DELETE), "E" })
6267

6368
#ifndef NUMPTY
6469
#define NUMPTY

0 commit comments

Comments
 (0)