aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_ialloc.c
diff options
context:
space:
mode:
authorJie Liu <jeff.liu@oracle.com>2013-12-12 23:51:49 -0500
committerDave Chinner <david@fromorbit.com>2013-12-12 23:51:49 -0500
commitf9e5abcfc5b299a988cf8f9d0ad11e03da14806b (patch)
tree1a0bbe85b35feb090aa1c81c7481a48744288849 /fs/xfs/xfs_ialloc.c
parent982e939e4ddc8c00cb478fb4d725d0e3d18971cc (diff)
xfs: use xfs_icluster_size_fsb in xfs_imap
Use xfs_icluster_size_fsb() in xfs_imap(). Signed-off-by: Jie Liu <jeff.liu@oracle.com> Reviewed-by: Dave Chinner <dchinner@redhat.com> Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_ialloc.c')
-rw-r--r--fs/xfs/xfs_ialloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_ialloc.c b/fs/xfs/xfs_ialloc.c
index 6ee592cfc0db..5d7f105a1c82 100644
--- a/fs/xfs/xfs_ialloc.c
+++ b/fs/xfs/xfs_ialloc.c
@@ -1377,7 +1377,7 @@ xfs_imap(
1377 return XFS_ERROR(EINVAL); 1377 return XFS_ERROR(EINVAL);
1378 } 1378 }
1379 1379
1380 blks_per_cluster = mp->m_inode_cluster_size >> mp->m_sb.sb_blocklog; 1380 blks_per_cluster = xfs_icluster_size_fsb(mp);
1381 1381
1382 /* 1382 /*
1383 * For bulkstat and handle lookups, we have an untrusted inode number 1383 * For bulkstat and handle lookups, we have an untrusted inode number
@@ -1398,7 +1398,7 @@ xfs_imap(
1398 * If the inode cluster size is the same as the blocksize or 1398 * If the inode cluster size is the same as the blocksize or
1399 * smaller we get to the buffer by simple arithmetics. 1399 * smaller we get to the buffer by simple arithmetics.
1400 */ 1400 */
1401 if (mp->m_inode_cluster_size <= mp->m_sb.sb_blocksize) { 1401 if (blks_per_cluster == 1) {
1402 offset = XFS_INO_TO_OFFSET(mp, ino); 1402 offset = XFS_INO_TO_OFFSET(mp, ino);
1403 ASSERT(offset < mp->m_sb.sb_inopblock); 1403 ASSERT(offset < mp->m_sb.sb_inopblock);
1404 1404