[PATCH 6/6] use xfs_icluster_size_fsb in xfs_imap
Brian Foster
bfoster at redhat.com
Mon May 5 16:10:39 CDT 2014
On Mon, May 05, 2014 at 08:32:31PM +0800, Jeff Liu wrote:
> From: Jie Liu <jeff.liu at oracle.com>
>
> Use xfs_icluster_size_fsb() in xfs_imap().
>
> Signed-off-by: Jie Liu <jeff.liu at oracle.com>
> ---
Reviewed-by: Brian Foster <bfoster at redhat.com>
> libxfs/xfs_ialloc.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/libxfs/xfs_ialloc.c b/libxfs/xfs_ialloc.c
> index 7d2ae8d..c8967db 100644
> --- a/libxfs/xfs_ialloc.c
> +++ b/libxfs/xfs_ialloc.c
> @@ -1353,7 +1353,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
> @@ -1374,7 +1374,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);
>
> --
> 1.8.3.2
>
> _______________________________________________
> xfs mailing list
> xfs at oss.sgi.com
> http://oss.sgi.com/mailman/listinfo/xfs
More information about the xfs
mailing list