Commit f9e5abcf authored by Jie Liu's avatar Jie Liu Committed by Dave Chinner

xfs: use xfs_icluster_size_fsb in xfs_imap

Use xfs_icluster_size_fsb() in xfs_imap().
Signed-off-by: default avatarJie Liu <jeff.liu@oracle.com>
Reviewed-by: default avatarDave Chinner <dchinner@redhat.com>
Signed-off-by: default avatarDave Chinner <david@fromorbit.com>
parent 982e939e
...@@ -1377,7 +1377,7 @@ xfs_imap( ...@@ -1377,7 +1377,7 @@ xfs_imap(
return XFS_ERROR(EINVAL); return XFS_ERROR(EINVAL);
} }
blks_per_cluster = mp->m_inode_cluster_size >> mp->m_sb.sb_blocklog; blks_per_cluster = xfs_icluster_size_fsb(mp);
/* /*
* For bulkstat and handle lookups, we have an untrusted inode number * For bulkstat and handle lookups, we have an untrusted inode number
...@@ -1398,7 +1398,7 @@ xfs_imap( ...@@ -1398,7 +1398,7 @@ xfs_imap(
* If the inode cluster size is the same as the blocksize or * If the inode cluster size is the same as the blocksize or
* smaller we get to the buffer by simple arithmetics. * smaller we get to the buffer by simple arithmetics.
*/ */
if (mp->m_inode_cluster_size <= mp->m_sb.sb_blocksize) { if (blks_per_cluster == 1) {
offset = XFS_INO_TO_OFFSET(mp, ino); offset = XFS_INO_TO_OFFSET(mp, ino);
ASSERT(offset < mp->m_sb.sb_inopblock); ASSERT(offset < mp->m_sb.sb_inopblock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment