diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2024-12-09 05:10:27 +0300 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2024-12-21 09:36:23 +0300 |
commit | 25a3123a67d98d4560ec9ee2286f4f7cffe4c22c (patch) | |
tree | 2908a937588aa6dcaf51ea24b7d16e960525d9ed | |
parent | 00fa283a41fedc209ee7eda343828275b8303a61 (diff) | |
download | linux-25a3123a67d98d4560ec9ee2286f4f7cffe4c22c.tar.xz |
bcachefs: check_indirect_extents can run online
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-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 94dc20ca2065..2b3ef3980fc3 100644 --- a/fs/bcachefs/recovery_passes_types.h +++ b/fs/bcachefs/recovery_passes_types.h @@ -43,7 +43,7 @@ x(fs_upgrade_for_subvolumes, 22, 0) \ x(check_inodes, 24, PASS_FSCK) \ x(check_extents, 25, PASS_FSCK) \ - x(check_indirect_extents, 26, PASS_FSCK) \ + x(check_indirect_extents, 26, PASS_ONLINE|PASS_FSCK) \ x(check_dirents, 27, PASS_FSCK) \ x(check_xattrs, 28, PASS_FSCK) \ x(check_root, 29, PASS_ONLINE|PASS_FSCK) \ |