Diff for /xfs-linux/xfs_iomap.c between versions 1.50 and 1.51

version 1.50, 2007/02/07 02:50:13 version 1.51, 2007/03/02 02:59:33
Line 543  xfs_iomap_write_direct( Line 543  xfs_iomap_write_direct(
         error = xfs_bmap_finish(&tp, &free_list, &committed);          error = xfs_bmap_finish(&tp, &free_list, &committed);
         if (error)          if (error)
                 goto error0;                  goto error0;
         error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);          error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
         if (error)          if (error)
                 goto error_out;                  goto error_out;
   
Line 840  xfs_iomap_write_allocate( Line 840  xfs_iomap_write_allocate(
                         if (error)                          if (error)
                                 goto trans_cancel;                                  goto trans_cancel;
   
                         error = xfs_trans_commit(tp,                          error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
                                         XFS_TRANS_RELEASE_LOG_RES, NULL);  
                         if (error)                          if (error)
                                 goto error0;                                  goto error0;
   
Line 948  xfs_iomap_write_unwritten( Line 947  xfs_iomap_write_unwritten(
                 if (error)                  if (error)
                         goto error_on_bmapi_transaction;                          goto error_on_bmapi_transaction;
   
                 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);                  error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
                 xfs_iunlock(ip, XFS_ILOCK_EXCL);                  xfs_iunlock(ip, XFS_ILOCK_EXCL);
                 if (error)                  if (error)
                         return XFS_ERROR(error);                          return XFS_ERROR(error);

Removed from v.1.50  
changed lines
  Added in v.1.51


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>