0001
0002
0003
0004
0005
0006 #ifndef BTRFS_CHECK_INTEGRITY_H
0007 #define BTRFS_CHECK_INTEGRITY_H
0008
0009 #ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
0010 void btrfsic_check_bio(struct bio *bio);
0011 #else
0012 static inline void btrfsic_check_bio(struct bio *bio) { }
0013 #endif
0014
0015 int btrfsic_mount(struct btrfs_fs_info *fs_info,
0016 struct btrfs_fs_devices *fs_devices,
0017 int including_extent_data, u32 print_mask);
0018 void btrfsic_unmount(struct btrfs_fs_devices *fs_devices);
0019
0020 #endif