gfs2 filesystem and dlm development
 help / color / mirror / Atom feed
* [PATCH] gfs2: fix hung task in gfs2_jhead_process_page
@ 2026-03-24  3:39 Deepanshu Kartikey
  2026-03-24 14:46 ` Matthew Wilcox
  0 siblings, 1 reply; 5+ messages in thread
From: Deepanshu Kartikey @ 2026-03-24  3:39 UTC (permalink / raw)
  To: agruenba, willy
  Cc: gfs2, linux-kernel, Deepanshu Kartikey,
	syzbot+9013411dc43f3582823a, Deepanshu Kartikey

filemap_get_folio() returns an ERR_PTR if the folio is not present
in the page cache. gfs2_jhead_process_page() does not check the
return value and passes it directly to folio_wait_locked(), causing
the kernel task to get stuck in uninterruptible sleep (state D)
forever, triggering the hung task watchdog.

This can be triggered by mounting a crafted or corrupted GFS2
filesystem image.

Fix this by checking the return value of filemap_get_folio() and
returning early if the folio is not found.

Fixes: 240159077d00 ("gfs2: Convert gfs2_jhead_process_page() to use a folio")
Reported-by: syzbot+9013411dc43f3582823a@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=9013411dc43f3582823a
Signed-off-by: Deepanshu Kartikey <Kartikey406@gmail.com>
---
 fs/gfs2/lops.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/fs/gfs2/lops.c b/fs/gfs2/lops.c
index 797931eb5845..005584311eff 100644
--- a/fs/gfs2/lops.c
+++ b/fs/gfs2/lops.c
@@ -467,6 +467,9 @@ static void gfs2_jhead_process_page(struct gfs2_jdesc *jd, unsigned long index,
 
 	folio = filemap_get_folio(jd->jd_inode->i_mapping, index);
 
+	if (IS_ERR(folio))
+		return;
+
 	folio_wait_locked(folio);
 	if (!folio_test_uptodate(folio))
 		*done = true;
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2026-03-25 23:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-24  3:39 [PATCH] gfs2: fix hung task in gfs2_jhead_process_page Deepanshu Kartikey
2026-03-24 14:46 ` Matthew Wilcox
2026-03-25  0:06   ` Deepanshu Kartikey
2026-03-25  1:42     ` Andreas Gruenbacher
2026-03-25 23:54       ` Deepanshu Kartikey

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox