[PATCH] jfs: check sb_set_blocksize() return value in jfs_fill_super()
From: Daiki Harada
Date: Thu May 14 2026 - 12:09:42 EST
jfs_fill_super() does not check the return value of sb_set_blocksize().
If the block device's logical block size exceeds PAGE_SIZE,
sb_set_blocksize() fails and returns 0, but jfs_fill_super() continues
regardless. Subsequent sb_bread() calls then trigger a BUG() in
folio_alloc_buffers() because the block size is incompatible with the
folio size.
Fix by checking the return value of sb_set_blocksize() and failing the
mount with -EINVAL if it returns 0.
Reported-by: syzbot+32ec8b5bd050c78741c2@xxxxxxxxxxxxxxxxxxxxxxxxx
Closes: https://syzkaller.appspot.com/bug?extid=32ec8b5bd050c78741c2
Signed-off-by: Daiki Harada <daiky0325@xxxxxxxxx>
diff --git a/fs/jfs/super.c b/fs/jfs/super.c
index 61575f7397ae..c69fc7677a66 100644
--- a/fs/jfs/super.c
+++ b/fs/jfs/super.c
@@ -491,8 +491,12 @@ static int jfs_fill_super(struct super_block *sb, struct fs_context *fc)
/*
* Initialize blocksize to 4K.
*/
- sb_set_blocksize(sb, PSIZE);
-
+ if (!sb_set_blocksize(sb, PSIZE)) {
+ jfs_err("block size %lu > page size %lu not supported",
+ sb->s_blocksize, PAGE_SIZE);
+ ret = -EINVAL;
+ goto out_unload;
+ }
/*
* Set method vectors.
*/
---