diff options
author | 2025-01-23 19:50:19 +0100 | |
---|---|---|
committer | 2025-03-10 18:15:38 +0100 | |
commit | 57882533923ce7842a21b8f5be14de861403dd26 (patch) | |
tree | dd60ed2496f53b40b4e627bc50079d71f72f3d06 | |
parent | Linux 6.14-rc1 (diff) | |
download | wireguard-linux-57882533923ce7842a21b8f5be14de861403dd26.tar.xz wireguard-linux-57882533923ce7842a21b8f5be14de861403dd26.zip |
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 <agruenba@redhat.com>
-rw-r--r-- | fs/gfs2/trace_gfs2.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/fs/gfs2/trace_gfs2.h b/fs/gfs2/trace_gfs2.h index 8eae8d62a413..ac8ca485c46f 100644 --- a/fs/gfs2/trace_gfs2.h +++ b/fs/gfs2/trace_gfs2.h @@ -58,7 +58,12 @@ {(1UL << GLF_HAVE_FROZEN_REPLY), "F" }, \ {(1UL << GLF_LRU), "L" }, \ {(1UL << GLF_OBJECT), "o" }, \ - {(1UL << GLF_BLOCKING), "b" }) + {(1UL << GLF_BLOCKING), "b" }, \ + {(1UL << GLF_UNLOCKED), "x" }, \ + {(1UL << GLF_INSTANTIATE_NEEDED), "n" }, \ + {(1UL << GLF_INSTANTIATE_IN_PROG), "N" }, \ + {(1UL << GLF_TRY_TO_EVICT), "e" }, \ + {(1UL << GLF_VERIFY_DELETE), "E" }) #ifndef NUMPTY #define NUMPTY |