Re: [PATCH] fs: Add additional checks for block devices during mount
From: Zizhi Wo
Date: Mon Jul 21 2025 - 03:05:44 EST
在 2025/7/21 14:47, Christoph Hellwig 写道:
On Mon, Jul 21, 2025 at 09:20:27AM +0800, Zizhi Wo wrote:
Sorry, disk_live() is only declared but not defined when CONFIG_BLOCK is
not set...
You can just add a if (IS_ENABLED(CONFIG_BLOCK)) check around it.
Yes, adding this judgment directly is also fine.
But the layering here feels wrong. sget_dev and it's helper operate
purely on the dev_t. Anything actually dealing with a block device /
gendisk should be in the helpers that otherwise use it.
Do you mean performing the check outside of sget_dev()? That is, after
we obtain an existing superblock, we then check whether the block device
exists, and if it doesn't, we report the error in the outer layer (e.g.,
in get_tree_bdev_flags(), this function seems to be targeted at bdev
rather than just dev)?
Thanks,
Zizhi Wo