From: Bob Peterson Date: Tue, 14 Dec 2021 15:40:12 +0000 (-0500) Subject: gfs2: dump inode object for iopen glocks X-Git-Tag: block-5.17-2022-01-21~51^2 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=74382e277ae97b4bcfac6f8b61df7a500d392500;p=linux-2.6-block.git 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 --- 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,