Diff for /xfs-linux/xfs_rtalloc.c between versions 1.105 and 1.106

version 1.105, 2007/02/07 02:51:56 version 1.106, 2007/03/02 02:59:33
Line 150  xfs_growfs_rt_alloc( Line 150  xfs_growfs_rt_alloc(
                 error = xfs_bmap_finish(&tp, &flist, &committed);                  error = xfs_bmap_finish(&tp, &flist, &committed);
                 if (error)                  if (error)
                         goto error_exit;                          goto error_exit;
                 xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES, NULL);                  xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
                 /*                  /*
                  * Now we need to clear the allocated blocks.                   * Now we need to clear the allocated blocks.
                  * Do this one block per transaction, to keep it simple.                   * Do this one block per transaction, to keep it simple.
Line 187  xfs_growfs_rt_alloc( Line 187  xfs_growfs_rt_alloc(
                         /*                          /*
                          * Commit the transaction.                           * Commit the transaction.
                          */                           */
                         xfs_trans_commit(tp, 0, NULL);                          xfs_trans_commit(tp, 0);
                 }                  }
                 /*                  /*
                  * Go on to the next extent, if any.                   * Go on to the next extent, if any.
Line 2042  xfs_growfs_rt( Line 2042  xfs_growfs_rt(
                 /*                  /*
                  * Commit the transaction.                   * Commit the transaction.
                  */                   */
                 xfs_trans_commit(tp, 0, NULL);                  xfs_trans_commit(tp, 0);
         }          }
   
         if (error)          if (error)

Removed from v.1.105  
changed lines
  Added in v.1.106


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