diff options
author | Jeff Liu <jeff.liu@oracle.com> | 2013-01-28 21:27:31 +0800 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2013-02-01 14:47:18 -0600 |
commit | e457274b60a3e3046d9451a199826281ce92023d (patch) | |
tree | 57ec4e3a5943bb92c63a38bfde0edc07002c7a1a /fs/xfs | |
parent | a7bd794a0f489a66ad595f2bcab0eac8f232e409 (diff) | |
download | linux-stable-e457274b60a3e3046d9451a199826281ce92023d.tar.gz linux-stable-e457274b60a3e3046d9451a199826281ce92023d.tar.bz2 linux-stable-e457274b60a3e3046d9451a199826281ce92023d.zip |
xfs: make use of XFS_SB_LOG_RES() at xfs_log_sbcount()
Make use of XFS_SB_LOG_RES() at xfs_log_sbcount().
Signed-off-by: Jie Liu <jeff.liu@oracle.com>
CC: Dave Chinner <david@fromorbit.com>
Reviewed-by: Mark Tinguely <tinguely@sgi.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/xfs_mount.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_mount.c b/fs/xfs/xfs_mount.c index 0db40205778a..a67046191824 100644 --- a/fs/xfs/xfs_mount.c +++ b/fs/xfs/xfs_mount.c @@ -1583,8 +1583,8 @@ xfs_log_sbcount(xfs_mount_t *mp) return 0; tp = _xfs_trans_alloc(mp, XFS_TRANS_SB_COUNT, KM_SLEEP); - error = xfs_trans_reserve(tp, 0, mp->m_sb.sb_sectsize + 128, 0, 0, - XFS_DEFAULT_LOG_COUNT); + error = xfs_trans_reserve(tp, 0, XFS_SB_LOG_RES(mp), 0, 0, + XFS_DEFAULT_LOG_COUNT); if (error) { xfs_trans_cancel(tp, 0); return error; |