xref: /linux/fs/bcachefs/fsck.h (revision 3d0fe49454652117522f60bfbefb978ba0e5300b)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BCACHEFS_FSCK_H
3 #define _BCACHEFS_FSCK_H
4 
5 int bch2_check_inodes(struct bch_fs *);
6 int bch2_check_extents(struct bch_fs *);
7 int bch2_check_indirect_extents(struct bch_fs *);
8 int bch2_check_dirents(struct bch_fs *);
9 int bch2_check_xattrs(struct bch_fs *);
10 int bch2_check_root(struct bch_fs *);
11 int bch2_check_directory_structure(struct bch_fs *);
12 int bch2_check_nlinks(struct bch_fs *);
13 int bch2_fix_reflink_p(struct bch_fs *);
14 
15 #endif /* _BCACHEFS_FSCK_H */
16