diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2019-04-18 01:30:24 +0200 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2019-04-23 17:36:23 +0200 |
commit | 078f4a7d31092a439f81c21b81b4d9cef9994726 (patch) | |
tree | 1b8de4d01ca8230e63b4c9a103c48330576f2ba4 /fs/xfs/xfs_quota.h | |
parent | xfs: widen inode delalloc block counter to 64-bits (diff) | |
download | linux-078f4a7d31092a439f81c21b81b4d9cef9994726.tar.xz linux-078f4a7d31092a439f81c21b81b4d9cef9994726.zip |
xfs: kill the xfs_dqtrx_t typedef
There's only a few uses left, so just kill the typedef while we're at
it.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/xfs_quota.h')
-rw-r--r-- | fs/xfs/xfs_quota.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_quota.h b/fs/xfs/xfs_quota.h index f3cf4fcf66e8..efe42ae7a2f3 100644 --- a/fs/xfs/xfs_quota.h +++ b/fs/xfs/xfs_quota.h @@ -56,7 +56,7 @@ xfs_quota_chkd_flag( * The structure kept inside the xfs_trans_t keep track of dquot changes * within a transaction and apply them later. */ -typedef struct xfs_dqtrx { +struct xfs_dqtrx { struct xfs_dquot *qt_dquot; /* the dquot this refers to */ uint64_t qt_blk_res; /* blks reserved on a dquot */ @@ -71,7 +71,7 @@ typedef struct xfs_dqtrx { uint64_t qt_ino_res; /* inode reserved on a dquot */ uint64_t qt_ino_res_used; /* inodes used from the reservation */ int64_t qt_icount_delta; /* dquot inode count changes */ -} xfs_dqtrx_t; +}; #ifdef CONFIG_XFS_QUOTA extern void xfs_trans_dup_dqinfo(struct xfs_trans *, struct xfs_trans *); |