From 74382e277ae97b4bcfac6f8b61df7a500d392500 Mon Sep 17 00:00:00 2001 From: Bob Peterson Date: Tue, 14 Dec 2021 10:40:12 -0500 Subject: 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 Signed-off-by: Andreas Gruenbacher --- fs/gfs2/glops.c | 1 + 1 file changed, 1 insertion(+) 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, -- cgit v1.2.3-59-g8ed1b