Searched refs:rtbno (Results 1 - 9 of 9) sorted by relevance

/linux-master/fs/xfs/libxfs/
H A Dxfs_rtbitmap.h69 xfs_rtblock_t rtbno)
72 return rtbno >> mp->m_rtxblklog;
74 return div_u64(rtbno, mp->m_sb.sb_rextsize);
81 xfs_rtblock_t rtbno)
84 return rtbno & mp->m_rtxblkmask;
86 return do_div(rtbno, mp->m_sb.sb_rextsize);
96 xfs_rtblock_t rtbno,
100 *off = rtbno & mp->m_rtxblkmask;
101 return rtbno >> mp->m_rtxblklog;
104 return div_u64_rem(rtbno, m
67 xfs_rtb_to_rtx( struct xfs_mount *mp, xfs_rtblock_t rtbno) argument
79 xfs_rtb_to_rtxoff( struct xfs_mount *mp, xfs_rtblock_t rtbno) argument
94 xfs_rtb_to_rtxrem( struct xfs_mount *mp, xfs_rtblock_t rtbno, xfs_extlen_t *off) argument
112 xfs_rtb_to_rtxup( struct xfs_mount *mp, xfs_rtblock_t rtbno) argument
129 xfs_rtb_roundup_rtx( struct xfs_mount *mp, xfs_rtblock_t rtbno) argument
138 xfs_rtb_rounddown_rtx( struct xfs_mount *mp, xfs_rtblock_t rtbno) argument
[all...]
H A Dxfs_types.c144 xfs_rtblock_t rtbno)
146 return rtbno < mp->m_sb.sb_rblocks;
153 xfs_rtblock_t rtbno,
156 if (rtbno + len <= rtbno)
159 if (!xfs_verify_rtbno(mp, rtbno))
162 return xfs_verify_rtbno(mp, rtbno + len - 1);
142 xfs_verify_rtbno( struct xfs_mount *mp, xfs_rtblock_t rtbno) argument
151 xfs_verify_rtbext( struct xfs_mount *mp, xfs_rtblock_t rtbno, xfs_filblks_t len) argument
H A Dxfs_types.h227 bool xfs_verify_rtbno(struct xfs_mount *mp, xfs_rtblock_t rtbno);
228 bool xfs_verify_rtbext(struct xfs_mount *mp, xfs_rtblock_t rtbno,
H A Dxfs_rtbitmap.c982 * Free some blocks in the realtime subvolume. rtbno and rtlen are in units of
989 xfs_fsblock_t rtbno,
1005 start = xfs_rtb_to_rtxrem(mp, rtbno, &mod);
987 xfs_rtfree_blocks( struct xfs_trans *tp, xfs_fsblock_t rtbno, xfs_filblks_t rtlen) argument
/linux-master/fs/xfs/scrub/
H A Dscrub.h215 void xchk_xref_is_used_rt_space(struct xfs_scrub *sc, xfs_rtblock_t rtbno,
218 # define xchk_xref_is_used_rt_space(sc, rtbno, len) do { } while (0)
H A Drtbitmap.c207 xfs_rtblock_t rtbno,
218 startext = xfs_rtb_to_rtx(sc->mp, rtbno);
219 endext = xfs_rtb_to_rtx(sc->mp, rtbno + len - 1);
205 xchk_xref_is_used_rt_space( struct xfs_scrub *sc, xfs_rtblock_t rtbno, xfs_extlen_t len) argument
H A Drtsummary.c168 xfs_rtblock_t rtbno; local
184 rtbno = xfs_rtx_to_rtb(mp, rec->ar_startext);
187 if (!xfs_verify_rtbext(mp, rtbno, rtlen)) {
/linux-master/fs/xfs/
H A Dxfs_fsmap.c483 xfs_rtblock_t rtbno; local
486 rtbno = xfs_rtx_to_rtb(mp, rec->ar_startext);
487 rec_daddr = XFS_FSB_TO_BB(mp, rtbno);
488 irec.rm_startblock = rtbno;
490 rtbno = xfs_rtx_to_rtb(mp, rec->ar_extcount);
491 len_daddr = XFS_FSB_TO_BB(mp, rtbno);
492 irec.rm_blockcount = rtbno;
H A Dxfs_trace.h2962 __field(xfs_fsblock_t, rtbno)
2976 __entry->rtbno = bi->bi_bmap.br_startblock;
2983 __entry->rtbno = 0;
2993 TP_printk("dev %d:%d op %s opdev %d:%d ino 0x%llx agno 0x%x agbno 0x%x rtbno 0x%llx %s fileoff 0x%llx fsbcount 0x%llx state %d",
3000 __entry->rtbno,

Completed in 306 milliseconds