mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +00:00
bade9711e0
With inode backpointers, we can write a very simple check_unreachable_inodes() pass that only looks for non-unlinked inodes that are missing backpointers, and reattaches them. This simplifies check_directory_structure() so that it's now only checking for directory structure loops, Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
18 lines
610 B
C
18 lines
610 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _BCACHEFS_FSCK_H
|
|
#define _BCACHEFS_FSCK_H
|
|
|
|
int bch2_check_inodes(struct bch_fs *);
|
|
int bch2_check_extents(struct bch_fs *);
|
|
int bch2_check_indirect_extents(struct bch_fs *);
|
|
int bch2_check_dirents(struct bch_fs *);
|
|
int bch2_check_xattrs(struct bch_fs *);
|
|
int bch2_check_root(struct bch_fs *);
|
|
int bch2_check_subvolume_structure(struct bch_fs *);
|
|
int bch2_check_unreachable_inodes(struct bch_fs *);
|
|
int bch2_check_directory_structure(struct bch_fs *);
|
|
int bch2_check_nlinks(struct bch_fs *);
|
|
int bch2_fix_reflink_p(struct bch_fs *);
|
|
|
|
#endif /* _BCACHEFS_FSCK_H */
|