Home
last modified time | relevance | path

Searched refs:startrtx (Results 1 – 3 of 3) sorted by relevance

/linux/fs/xfs/scrub/
H A Drtbitmap_repair.c187 xfs_rtxnum_t startrtx; in xrep_rtbitmap_mark_free() local
204 startrtx = xfs_rgbno_to_rtx(mp, rtb->next_rgbno); in xrep_rtbitmap_mark_free()
233 trace_xrep_rtbitmap_record_free(mp, startrtx, nextrtx - 1); in xrep_rtbitmap_mark_free()
236 bit = startrtx & XREP_RTBMP_WORDMASK; in xrep_rtbitmap_mark_free()
238 xfs_rtblock_t len = nextrtx - startrtx; in xrep_rtbitmap_mark_free()
244 error = xrep_rtbitmap_or(rtb, rtx_to_wordoff(mp, startrtx), in xrep_rtbitmap_mark_free()
248 startrtx += XFS_NBWORD - bit; in xrep_rtbitmap_mark_free()
258 if (error || startrtx + bit == nextrtx) in xrep_rtbitmap_mark_free()
263 trace_xrep_rtbitmap_record_free_bulk(mp, startrtx, nextrtx - 1); in xrep_rtbitmap_mark_free()
266 wordoff = rtx_to_wordoff(mp, startrtx); in xrep_rtbitmap_mark_free()
H A Drepair.c1051 xfs_rtxnum_t startrtx; in xrep_require_rtext_inuse() local
1062 startrtx = xfs_rgbno_to_rtx(mp, rgbno); in xrep_require_rtext_inuse()
1065 error = xfs_rtalloc_extent_is_free(sc->sr.rtg, sc->tp, startrtx, in xrep_require_rtext_inuse()
1066 endrtx - startrtx + 1, &is_free); in xrep_require_rtext_inuse()
/linux/fs/xfs/
H A Dxfs_rtalloc.c226 xfs_rtxnum_t startrtx, in xfs_rtallocate_clamp_len() argument
232 ret = min(rtg->rtg_extents, startrtx + rtxlen) - startrtx; in xfs_rtallocate_clamp_len()