diff options
author | Catherine Hoang <catherine.hoang@oracle.com> | 2022-05-10 13:27:59 -0700 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2022-05-11 17:12:09 +1000 |
commit | 2e06df552a7cba13eb0046b9116a9aa26001ee2c (patch) | |
tree | 0fa661a1d3f99a8644813bb14b88c013c45f1ddf /fs/xfs/libxfs/xfs_quota_defs.h | |
parent | 5cc21e522d02d9a10bf856d71032d4dcc10185a8 (diff) |
xfs: remove warning counters from struct xfs_dquot_res
Warning counts are not used anywhere in the kernel. In addition, there
are no use cases, test coverage, or documentation for this functionality.
Remove the 'warnings' field from struct xfs_dquot_res and any other
related code.
Signed-off-by: Catherine Hoang <catherine.hoang@oracle.com>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Allison Henderson <allison.henderson@oracle.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/libxfs/xfs_quota_defs.h')
-rw-r--r-- | fs/xfs/libxfs/xfs_quota_defs.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/xfs/libxfs/xfs_quota_defs.h b/fs/xfs/libxfs/xfs_quota_defs.h index 3076cd74fcaa..cb035da3f990 100644 --- a/fs/xfs/libxfs/xfs_quota_defs.h +++ b/fs/xfs/libxfs/xfs_quota_defs.h @@ -16,7 +16,6 @@ * and quota-limits. This is a waste in the common case, but hey ... */ typedef uint64_t xfs_qcnt_t; -typedef uint16_t xfs_qwarncnt_t; typedef uint8_t xfs_dqtype_t; |