linux/fs/xfs/scrub/quota.h

// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Copyright (C) 2018-2023 Oracle.  All Rights Reserved.
 * Author: Darrick J. Wong <[email protected]>
 */
#ifndef __XFS_SCRUB_QUOTA_H__
#define __XFS_SCRUB_QUOTA_H__

xfs_dqtype_t xchk_quota_to_dqtype(struct xfs_scrub *sc);

/* dquot iteration code */

struct xchk_dqiter {};

void xchk_dqiter_init(struct xchk_dqiter *cursor, struct xfs_scrub *sc,
		xfs_dqtype_t dqtype);
int xchk_dquot_iter(struct xchk_dqiter *cursor, struct xfs_dquot **dqpp);

#endif /* __XFS_SCRUB_QUOTA_H__ */