提交 f9e5abcf 编写于 作者: J Jie Liu 提交者: Dave Chinner

xfs: use xfs_icluster_size_fsb in xfs_imap

Use xfs_icluster_size_fsb() in xfs_imap().
Signed-off-by: NJie Liu <jeff.liu@oracle.com>
Reviewed-by: NDave Chinner <dchinner@redhat.com>
Signed-off-by: NDave Chinner <david@fromorbit.com>
上级 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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册