diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2017-10-17 21:37:47 -0700 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2017-10-26 15:38:26 -0700 |
commit | c2fc338c87a31f557b57f5143602444ba3cf2c3e (patch) | |
tree | 566d7b80f029b42e74a2737e4fad7f7577109dc6 /fs/xfs/scrub/scrub.h | |
parent | 29b0767b8beb4c5e3fd94656d51413a4fe8d2d74 (diff) | |
download | lwn-c2fc338c87a31f557b57f5143602444ba3cf2c3e.tar.gz lwn-c2fc338c87a31f557b57f5143602444ba3cf2c3e.zip |
xfs: scrub quota information
Perform some quick sanity testing of the disk quota information.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Diffstat (limited to 'fs/xfs/scrub/scrub.h')
-rw-r--r-- | fs/xfs/scrub/scrub.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/fs/xfs/scrub/scrub.h b/fs/xfs/scrub/scrub.h index 9aff4e2365ec..e9ec041cf713 100644 --- a/fs/xfs/scrub/scrub.h +++ b/fs/xfs/scrub/scrub.h @@ -102,5 +102,14 @@ xfs_scrub_rtsummary(struct xfs_scrub_context *sc) return -ENOENT; } #endif +#ifdef CONFIG_XFS_QUOTA +int xfs_scrub_quota(struct xfs_scrub_context *sc); +#else +static inline int +xfs_scrub_quota(struct xfs_scrub_context *sc) +{ + return -ENOENT; +} +#endif #endif /* __XFS_SCRUB_SCRUB_H__ */ |