162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 262306a36Sopenharmony_ci/* 362306a36Sopenharmony_ci * Copyright (C) STRATO AG 2011. All rights reserved. 462306a36Sopenharmony_ci */ 562306a36Sopenharmony_ci 662306a36Sopenharmony_ci#ifndef BTRFS_CHECK_INTEGRITY_H 762306a36Sopenharmony_ci#define BTRFS_CHECK_INTEGRITY_H 862306a36Sopenharmony_ci 962306a36Sopenharmony_ci#ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY 1062306a36Sopenharmony_civoid btrfsic_check_bio(struct bio *bio); 1162306a36Sopenharmony_ci#else 1262306a36Sopenharmony_cistatic inline void btrfsic_check_bio(struct bio *bio) { } 1362306a36Sopenharmony_ci#endif 1462306a36Sopenharmony_ci 1562306a36Sopenharmony_ciint btrfsic_mount(struct btrfs_fs_info *fs_info, 1662306a36Sopenharmony_ci struct btrfs_fs_devices *fs_devices, 1762306a36Sopenharmony_ci int including_extent_data, u32 print_mask); 1862306a36Sopenharmony_civoid btrfsic_unmount(struct btrfs_fs_devices *fs_devices); 1962306a36Sopenharmony_ci 2062306a36Sopenharmony_ci#endif 21