brintos

brintos / linux-shallow public Read only

0
0
Text · 562 B · 99b464e Raw
18 lines · c
1#ifndef _BCACHEFS_RECOVERY_PASSES_H2#define _BCACHEFS_RECOVERY_PASSES_H3 4extern const char * const bch2_recovery_passes[];5 6u64 bch2_recovery_passes_to_stable(u64 v);7u64 bch2_recovery_passes_from_stable(u64 v);8 9u64 bch2_fsck_recovery_passes(void);10 11int bch2_run_explicit_recovery_pass(struct bch_fs *, enum bch_recovery_pass);12int bch2_run_explicit_recovery_pass_persistent(struct bch_fs *, enum bch_recovery_pass);13 14int bch2_run_online_recovery_passes(struct bch_fs *);15int bch2_run_recovery_passes(struct bch_fs *);16 17#endif /* _BCACHEFS_RECOVERY_PASSES_H */18