diff options
Diffstat (limited to 'fs/xfs/xfs_bmap.c')
-rw-r--r-- | fs/xfs/xfs_bmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_bmap.c b/fs/xfs/xfs_bmap.c index 87795188cedf..05d43d112843 100644 --- a/fs/xfs/xfs_bmap.c +++ b/fs/xfs/xfs_bmap.c | |||
@@ -4071,7 +4071,7 @@ xfs_bmap_add_attrfork( | |||
4071 | } | 4071 | } |
4072 | if ((error = xfs_bmap_finish(&tp, &flist, &committed))) | 4072 | if ((error = xfs_bmap_finish(&tp, &flist, &committed))) |
4073 | goto error2; | 4073 | goto error2; |
4074 | error = xfs_trans_commit(tp, XFS_TRANS_PERM_LOG_RES, NULL); | 4074 | error = xfs_trans_commit(tp, XFS_TRANS_PERM_LOG_RES); |
4075 | ASSERT(ip->i_df.if_ext_max == | 4075 | ASSERT(ip->i_df.if_ext_max == |
4076 | XFS_IFORK_DSIZE(ip) / (uint)sizeof(xfs_bmbt_rec_t)); | 4076 | XFS_IFORK_DSIZE(ip) / (uint)sizeof(xfs_bmbt_rec_t)); |
4077 | return error; | 4077 | return error; |
@@ -4227,7 +4227,7 @@ xfs_bmap_finish( | |||
4227 | logres = ntp->t_log_res; | 4227 | logres = ntp->t_log_res; |
4228 | logcount = ntp->t_log_count; | 4228 | logcount = ntp->t_log_count; |
4229 | ntp = xfs_trans_dup(*tp); | 4229 | ntp = xfs_trans_dup(*tp); |
4230 | error = xfs_trans_commit(*tp, 0, NULL); | 4230 | error = xfs_trans_commit(*tp, 0); |
4231 | *tp = ntp; | 4231 | *tp = ntp; |
4232 | *committed = 1; | 4232 | *committed = 1; |
4233 | /* | 4233 | /* |