xref: /linux/fs/bcachefs/fsck.h (revision 031fba65fc202abf1f193e321be7a2c274fd88ba)
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_dirents(struct bch_fs *);
8 int bch2_check_xattrs(struct bch_fs *);
9 int bch2_check_root(struct bch_fs *);
10 int bch2_check_directory_structure(struct bch_fs *);
11 int bch2_check_nlinks(struct bch_fs *);
12 int bch2_fix_reflink_p(struct bch_fs *);
13 
14 #endif /* _BCACHEFS_FSCK_H */
15