diff options
-rw-r--r-- | fs/xfs/xfs_trans_dquot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_trans_dquot.c b/fs/xfs/xfs_trans_dquot.c index 58c0c6b2f4ed..ce78534a047e 100644 --- a/fs/xfs/xfs_trans_dquot.c +++ b/fs/xfs/xfs_trans_dquot.c | |||
@@ -90,7 +90,7 @@ xfs_trans_dup_dqinfo( | |||
90 | xfs_trans_t *ntp) | 90 | xfs_trans_t *ntp) |
91 | { | 91 | { |
92 | xfs_dqtrx_t *oq, *nq; | 92 | xfs_dqtrx_t *oq, *nq; |
93 | int i,j; | 93 | int i, j; |
94 | xfs_dqtrx_t *oqa, *nqa; | 94 | xfs_dqtrx_t *oqa, *nqa; |
95 | ulong blk_res_used; | 95 | ulong blk_res_used; |
96 | 96 | ||
@@ -103,7 +103,7 @@ xfs_trans_dup_dqinfo( | |||
103 | * Because the quota blk reservation is carried forward, | 103 | * Because the quota blk reservation is carried forward, |
104 | * it is also necessary to carry forward the DQ_DIRTY flag. | 104 | * it is also necessary to carry forward the DQ_DIRTY flag. |
105 | */ | 105 | */ |
106 | if(otp->t_flags & XFS_TRANS_DQ_DIRTY) | 106 | if (otp->t_flags & XFS_TRANS_DQ_DIRTY) |
107 | ntp->t_flags |= XFS_TRANS_DQ_DIRTY; | 107 | ntp->t_flags |= XFS_TRANS_DQ_DIRTY; |
108 | 108 | ||
109 | for (j = 0; j < XFS_QM_TRANS_DQTYPES; j++) { | 109 | for (j = 0; j < XFS_QM_TRANS_DQTYPES; j++) { |