From: Kent Overstreet Date: Sat, 4 Jan 2025 17:10:25 +0000 (-0500) Subject: bcachefs: check_unreachable_inodes is not actually PASS_ONLINE yet X-Git-Tag: v6.14-rc1~204^2~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4204e3bf63c4b68968fd557f05fed32c99e2b18a;p=thirdparty%2Flinux.git bcachefs: check_unreachable_inodes is not actually PASS_ONLINE yet check_unreachable_inodes does work in online mode, with the one caveat that it assumes check_dirents has also run - and check_dirents is not PASS_ONLINE yet. Signed-off-by: Kent Overstreet --- diff --git a/fs/bcachefs/recovery_passes_types.h b/fs/bcachefs/recovery_passes_types.h index 71baad41d8c5b..418557960ed6e 100644 --- a/fs/bcachefs/recovery_passes_types.h +++ b/fs/bcachefs/recovery_passes_types.h @@ -53,7 +53,7 @@ x(check_dirents, 27, PASS_FSCK) \ x(check_xattrs, 28, PASS_FSCK) \ x(check_root, 29, PASS_ONLINE|PASS_FSCK) \ - x(check_unreachable_inodes, 40, PASS_ONLINE|PASS_FSCK) \ + x(check_unreachable_inodes, 40, PASS_FSCK) \ x(check_subvolume_structure, 36, PASS_ONLINE|PASS_FSCK) \ x(check_directory_structure, 30, PASS_ONLINE|PASS_FSCK) \ x(check_nlinks, 31, PASS_FSCK) \