health.h 461 B

1234567891011121314
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (C) 2019 Oracle. All Rights Reserved.
  4. * Author: Darrick J. Wong <[email protected]>
  5. */
  6. #ifndef __XFS_SCRUB_HEALTH_H__
  7. #define __XFS_SCRUB_HEALTH_H__
  8. unsigned int xchk_health_mask_for_scrub_type(__u32 scrub_type);
  9. void xchk_update_health(struct xfs_scrub *sc);
  10. bool xchk_ag_btree_healthy_enough(struct xfs_scrub *sc, struct xfs_perag *pag,
  11. xfs_btnum_t btnum);
  12. #endif /* __XFS_SCRUB_HEALTH_H__ */