summaryrefslogtreecommitdiffstats
path: root/fs/f2fs/checkpoint.c
diff options
context:
space:
mode:
authorChao Yu <chao@kernel.org>2023-04-10 10:17:22 +0800
committerJaegeuk Kim <jaegeuk@kernel.org>2023-04-10 11:00:31 -0700
commit68f0453dabdb99e76f75ce52ce40bc4bc71389a8 (patch)
treeb30d2b51eb32dcba02eb4f48ca427ed435ed2099 /fs/f2fs/checkpoint.c
parent0c9f4521958ff52b74967c8a39a8b5747ba8df41 (diff)
downloadlinux-stable-68f0453dabdb99e76f75ce52ce40bc4bc71389a8.tar.gz
linux-stable-68f0453dabdb99e76f75ce52ce40bc4bc71389a8.tar.bz2
linux-stable-68f0453dabdb99e76f75ce52ce40bc4bc71389a8.zip
f2fs: use f2fs_hw_is_readonly() instead of bdev_read_only()
f2fs has supported multi-device feature, to check devices' rw status, it should use f2fs_hw_is_readonly() rather than bdev_read_only(), fix it. Meanwhile, it removes f2fs_hw_is_readonly() check condition in: - f2fs_write_checkpoint() - f2fs_convert_inline_inode() As it has checked f2fs_readonly() condition, and if f2fs' devices were readonly, f2fs_readonly() must be true. Signed-off-by: Chao Yu <chao@kernel.org> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/checkpoint.c')
-rw-r--r--fs/f2fs/checkpoint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c
index 1e0164cde23d..64bc85daab35 100644
--- a/fs/f2fs/checkpoint.c
+++ b/fs/f2fs/checkpoint.c
@@ -715,7 +715,7 @@ int f2fs_recover_orphan_inodes(struct f2fs_sb_info *sbi)
if (!is_set_ckpt_flags(sbi, CP_ORPHAN_PRESENT_FLAG))
return 0;
- if (bdev_read_only(sbi->sb->s_bdev)) {
+ if (f2fs_hw_is_readonly(sbi)) {
f2fs_info(sbi, "write access unavailable, skipping orphan cleanup");
return 0;
}