16 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#ifndef _BCACHEFS_TEST_H3#define _BCACHEFS_TEST_H4 5struct bch_fs;6 7#ifdef CONFIG_BCACHEFS_TESTS8 9int bch2_btree_perf_test(struct bch_fs *, const char *, u64, unsigned);10 11#else12 13#endif /* CONFIG_BCACHEFS_TESTS */14 15#endif /* _BCACHEFS_TEST_H */16