ASSERT(rtlen <= XFS_MAX_BMBT_EXTLEN);
 
-       mod = xfs_rtb_to_rtxoff(mp, rtlen);
+       mod = xfs_blen_to_rtxoff(mp, rtlen);
        if (mod) {
                ASSERT(mod == 0);
                return -EIO;
 
        return div_u64(blen, mp->m_sb.sb_rextsize);
 }
 
+/* Return the offset of a file block length within an rt extent. */
+static inline xfs_extlen_t
+xfs_blen_to_rtxoff(
+       struct xfs_mount        *mp,
+       xfs_filblks_t           blen)
+{
+       if (likely(mp->m_rtxblklog >= 0))
+               return blen & mp->m_rtxblkmask;
+
+       return do_div(blen, mp->m_sb.sb_rextsize);
+}
+
+/* Round this block count up to the nearest rt extent size. */
+static inline xfs_filblks_t
+xfs_blen_roundup_rtx(
+       struct xfs_mount        *mp,
+       xfs_filblks_t           blen)
+{
+       return roundup_64(blen, mp->m_sb.sb_rextsize);
+}
+
 /* Convert an rt block number into an rt extent number. */
 static inline xfs_rtxnum_t
 xfs_rtb_to_rtx(
        return do_div(rtbno, mp->m_sb.sb_rextsize);
 }
 
-/* Round this rtblock up to the nearest rt extent size. */
-static inline xfs_rtblock_t
-xfs_rtb_roundup_rtx(
-       struct xfs_mount        *mp,
-       xfs_rtblock_t           rtbno)
-{
-       return roundup_64(rtbno, mp->m_sb.sb_rextsize);
-}
-
 /* Round this file block offset up to the nearest rt extent size. */
 static inline xfs_rtblock_t
 xfs_fileoff_roundup_rtx(
 
         * length in @fxr are safe to round up.
         */
        if (xfs_inode_has_bigrtalloc(ip2))
-               req.blockcount = xfs_rtb_roundup_rtx(mp, req.blockcount);
+               req.blockcount = xfs_blen_roundup_rtx(mp, req.blockcount);
 
        error = xfs_exchrange_estimate(&req);
        if (error)