aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/glops.c
diff options
context:
space:
mode:
authorBob Peterson <rpeterso@redhat.com>2021-12-14 10:40:12 -0500
committerAndreas Gruenbacher <agruenba@redhat.com>2022-01-11 16:52:44 +0100
commit74382e277ae97b4bcfac6f8b61df7a500d392500 (patch)
tree37901fff5b91a9a0d9219c6bc83c3872a91e2ac7 /fs/gfs2/glops.c
parentgfs2: Fix gfs2_instantiate description (diff)
downloadlinux-dev-74382e277ae97b4bcfac6f8b61df7a500d392500.tar.xz
linux-dev-74382e277ae97b4bcfac6f8b61df7a500d392500.zip
gfs2: dump inode object for iopen glocks
Before this patch, glock dumps would not dump the gl_object for iopen glocks. This information can help us debug problems related to eviction: when AN iopen glock is blocked we can see the status of its underlying inode and its flags, etc. Signed-off-by: Bob Peterson <rpeterso@redhat.com> Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to '')
-rw-r--r--fs/gfs2/glops.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/gfs2/glops.c b/fs/gfs2/glops.c
index e054ddae7834..392800f082a6 100644
--- a/fs/gfs2/glops.c
+++ b/fs/gfs2/glops.c
@@ -763,6 +763,7 @@ const struct gfs2_glock_operations gfs2_freeze_glops = {
const struct gfs2_glock_operations gfs2_iopen_glops = {
.go_type = LM_TYPE_IOPEN,
.go_callback = iopen_go_callback,
+ .go_dump = inode_go_dump,
.go_demote_ok = iopen_go_demote_ok,
.go_flags = GLOF_LRU | GLOF_NONDISK,
.go_subclass = 1,