diff options
author | Pavel Reichl <preichl@redhat.com> | 2019-11-13 02:04:26 +0100 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2019-11-14 03:22:23 +0100 |
commit | c072fbefe48e49be1ee1bfe9a28fdbb4a6830559 (patch) | |
tree | 3c04bd34fb095a52dc48800ddc8430b2096b75b5 /fs/xfs/xfs_trans_dquot.c | |
parent | xfs: remove the xfs_disk_dquot_t and xfs_dquot_t (diff) | |
download | linux-c072fbefe48e49be1ee1bfe9a28fdbb4a6830559.tar.xz linux-c072fbefe48e49be1ee1bfe9a28fdbb4a6830559.zip |
xfs: remove the xfs_quotainfo_t typedef
Signed-off-by: Pavel Reichl <preichl@redhat.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/xfs/xfs_trans_dquot.c')
-rw-r--r-- | fs/xfs/xfs_trans_dquot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_trans_dquot.c b/fs/xfs/xfs_trans_dquot.c index 0b7f6f228662..d319347093d6 100644 --- a/fs/xfs/xfs_trans_dquot.c +++ b/fs/xfs/xfs_trans_dquot.c @@ -585,7 +585,7 @@ xfs_trans_dqresv( xfs_qwarncnt_t warnlimit; xfs_qcnt_t total_count; xfs_qcnt_t *resbcountp; - xfs_quotainfo_t *q = mp->m_quotainfo; + struct xfs_quotainfo *q = mp->m_quotainfo; struct xfs_def_quota *defq; |