Loading...
Note: File does not exist in v6.8.
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Copyright (C) STRATO AG 2011. All rights reserved.
4 */
5
6#ifndef BTRFS_CHECK_INTEGRITY_H
7#define BTRFS_CHECK_INTEGRITY_H
8
9#ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
10void btrfsic_submit_bio(struct bio *bio);
11int btrfsic_submit_bio_wait(struct bio *bio);
12#else
13#define btrfsic_submit_bio submit_bio
14#define btrfsic_submit_bio_wait submit_bio_wait
15#endif
16
17int btrfsic_mount(struct btrfs_fs_info *fs_info,
18 struct btrfs_fs_devices *fs_devices,
19 int including_extent_data, u32 print_mask);
20void btrfsic_unmount(struct btrfs_fs_devices *fs_devices);
21
22#endif