]>
Commit | Line | Data |
---|---|---|
9888c340 | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
5db02760 SB |
2 | /* |
3 | * Copyright (C) STRATO AG 2011. All rights reserved. | |
5db02760 SB |
4 | */ |
5 | ||
9888c340 DS |
6 | #ifndef BTRFS_CHECK_INTEGRITY_H |
7 | #define BTRFS_CHECK_INTEGRITY_H | |
5db02760 SB |
8 | |
9 | #ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY | |
2a222ca9 | 10 | int btrfsic_submit_bh(int op, int op_flags, struct buffer_head *bh); |
4e49ea4a MC |
11 | void btrfsic_submit_bio(struct bio *bio); |
12 | int btrfsic_submit_bio_wait(struct bio *bio); | |
5db02760 SB |
13 | #else |
14 | #define btrfsic_submit_bh submit_bh | |
15 | #define btrfsic_submit_bio submit_bio | |
c170bbb4 | 16 | #define btrfsic_submit_bio_wait submit_bio_wait |
5db02760 SB |
17 | #endif |
18 | ||
2ff7e61e | 19 | int btrfsic_mount(struct btrfs_fs_info *fs_info, |
5db02760 SB |
20 | struct btrfs_fs_devices *fs_devices, |
21 | int including_extent_data, u32 print_mask); | |
2ff7e61e | 22 | void btrfsic_unmount(struct btrfs_fs_devices *fs_devices); |
5db02760 SB |
23 | |
24 | #endif |