|
|
| version 1.121, 2007/02/07 02:51:06 | version 1.122, 2007/03/02 02:59:33 |
|---|---|
| Line 346 xfs_growfs_data_private( | Line 346 xfs_growfs_data_private( |
| xfs_trans_mod_sb(tp, XFS_TRANS_SB_FDBLOCKS, nfree); | xfs_trans_mod_sb(tp, XFS_TRANS_SB_FDBLOCKS, nfree); |
| if (dpct) | if (dpct) |
| xfs_trans_mod_sb(tp, XFS_TRANS_SB_IMAXPCT, dpct); | xfs_trans_mod_sb(tp, XFS_TRANS_SB_IMAXPCT, dpct); |
| error = xfs_trans_commit(tp, 0, NULL); | error = xfs_trans_commit(tp, 0); |
| if (error) { | if (error) { |
| return error; | return error; |
| } | } |
| Line 605 xfs_fs_log_dummy( | Line 605 xfs_fs_log_dummy( |
| xfs_trans_ihold(tp, ip); | xfs_trans_ihold(tp, ip); |
| xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); |
| xfs_trans_set_sync(tp); | xfs_trans_set_sync(tp); |
| xfs_trans_commit(tp, 0, NULL); | xfs_trans_commit(tp, 0); |
| xfs_iunlock(ip, XFS_ILOCK_EXCL); | xfs_iunlock(ip, XFS_ILOCK_EXCL); |
| } | } |