xref: /kernel/linux/linux-6.6/fs/xfs/scrub/health.h (revision 62306a36)
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Copyright (C) 2019-2023 Oracle.  All Rights Reserved.
4 * Author: Darrick J. Wong <djwong@kernel.org>
5 */
6#ifndef __XFS_SCRUB_HEALTH_H__
7#define __XFS_SCRUB_HEALTH_H__
8
9unsigned int xchk_health_mask_for_scrub_type(__u32 scrub_type);
10void xchk_update_health(struct xfs_scrub *sc);
11bool xchk_ag_btree_healthy_enough(struct xfs_scrub *sc, struct xfs_perag *pag,
12		xfs_btnum_t btnum);
13
14#endif /* __XFS_SCRUB_HEALTH_H__ */
15