diff options
author | Jie Liu <jeff.liu@oracle.com> | 2013-12-13 15:51:49 +1100 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2013-12-13 15:51:49 +1100 |
commit | f9e5abcfc5b299a988cf8f9d0ad11e03da14806b (patch) | |
tree | 1a0bbe85b35feb090aa1c81c7481a48744288849 /fs/xfs | |
parent | 982e939e4ddc8c00cb478fb4d725d0e3d18971cc (diff) | |
download | linux-stable-f9e5abcfc5b299a988cf8f9d0ad11e03da14806b.tar.gz linux-stable-f9e5abcfc5b299a988cf8f9d0ad11e03da14806b.tar.bz2 linux-stable-f9e5abcfc5b299a988cf8f9d0ad11e03da14806b.zip |
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')
-rw-r--r-- | fs/xfs/xfs_ialloc.c | 4 |
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( 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 @@ -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); |