at for-next 610 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _BCACHEFS_FSCK_H 3#define _BCACHEFS_FSCK_H 4 5int bch2_check_inodes(struct bch_fs *); 6int bch2_check_extents(struct bch_fs *); 7int bch2_check_indirect_extents(struct bch_fs *); 8int bch2_check_dirents(struct bch_fs *); 9int bch2_check_xattrs(struct bch_fs *); 10int bch2_check_root(struct bch_fs *); 11int bch2_check_subvolume_structure(struct bch_fs *); 12int bch2_check_unreachable_inodes(struct bch_fs *); 13int bch2_check_directory_structure(struct bch_fs *); 14int bch2_check_nlinks(struct bch_fs *); 15int bch2_fix_reflink_p(struct bch_fs *); 16 17#endif /* _BCACHEFS_FSCK_H */