diff options
author | 2025-01-04 12:10:25 -0500 | |
---|---|---|
committer | 2025-01-09 23:38:42 -0500 | |
commit | 4204e3bf63c4b68968fd557f05fed32c99e2b18a (patch) | |
tree | bb5e2492d850990d5401cc3011f670dae7e5a98f | |
parent | bcachefs: Don't use BTREE_ITER_cached when walking alloc btree during fsck (diff) | |
download | wireguard-linux-4204e3bf63c4b68968fd557f05fed32c99e2b18a.tar.xz wireguard-linux-4204e3bf63c4b68968fd557f05fed32c99e2b18a.zip |
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 <kent.overstreet@linux.dev>
Diffstat (limited to '')
-rw-r--r-- | fs/bcachefs/recovery_passes_types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/bcachefs/recovery_passes_types.h b/fs/bcachefs/recovery_passes_types.h index 71baad41d8c5..418557960ed6 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) \ |