Skip to content

Commit 5788253

Browse files
author
Andreas Gruenbacher
committed
gfs2: Decode missing glock flags in tracepoints
Add a number of glock flags are currently not shown in the text form of glock tracepoints. Signed-off-by: Andreas Gruenbacher <[email protected]>
1 parent 2014c95 commit 5788253

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)