Skip to content

Commit

Permalink
xfs: use xfs_icluster_size_fsb in xfs_imap
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jie Liu authored and Dave Chinner committed Dec 13, 2013
1 parent 982e939 commit f9e5abc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fs/xfs/xfs_ialloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1377,7 +1377,7 @@ xfs_imap(
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
Expand All @@ -1398,7 +1398,7 @@ xfs_imap(
* If the inode cluster size is the same as the blocksize or
* 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);
ASSERT(offset < mp->m_sb.sb_inopblock);

Expand Down

0 comments on commit f9e5abc

Please sign in to comment.