health.h (461B)
1// SPDX-License-Identifier: GPL-2.0+ 2/* 3 * Copyright (C) 2019 Oracle. All Rights Reserved. 4 * Author: Darrick J. Wong <darrick.wong@oracle.com> 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__ */