Home
last modified time | relevance | path

Searched refs:next_bno (Results 1 – 5 of 5) sorted by relevance

/linux/fs/xfs/scrub/
H A Drcbag.c157 uint32_t next_bno = NULLAGBLOCK; in rcbag_next_edge() local
162 next_bno = next_rmap->rm_startblock; in rcbag_next_edge()
184 next_bno = min(next_bno, rcbag_rec_next_bno(&bagrec)); in rcbag_next_edge()
193 if (next_bno == NULLAGBLOCK) { in rcbag_next_edge()
200 *next_bnop = next_bno; in rcbag_next_edge()
213 uint32_t next_bno) in rcbag_remove_ending_at() argument
243 if (rcbag_rec_next_bno(&bagrec) != next_bno) in rcbag_remove_ending_at()
H A Dcow_repair.c80 unsigned int next_bno; member
183 if (xc->next_bno >= rrec.rc_startblock) in xrep_cow_mark_missing_staging()
187 xfs_gbno_to_fsb(cur->bc_group, xc->next_bno), in xrep_cow_mark_missing_staging()
188 rrec.rc_startblock - xc->next_bno); in xrep_cow_mark_missing_staging()
193 xc->next_bno = rrec.rc_startblock + rrec.rc_blockcount; in xrep_cow_mark_missing_staging()
274 xc->next_bno = xc->irec_startbno; in xrep_cow_find_bad()
280 if (xc->next_bno < xc->irec_startbno + xc->irec.br_blockcount) { in xrep_cow_find_bad()
282 xfs_agbno_to_fsb(pag, xc->next_bno), in xrep_cow_find_bad()
284 xc->next_bno); in xrep_cow_find_bad()
358 xc->next_bno = xc->irec_startbno; in xrep_cow_find_bad_rt()
[all …]
H A Drefcount.c365 xfs_agblock_t *next_bno = priv; in xchk_refcountbt_rmap_check_gap() local
367 if (*next_bno != NULLAGBLOCK && rec->rm_startblock < *next_bno) in xchk_refcountbt_rmap_check_gap()
370 *next_bno = rec->rm_startblock + rec->rm_blockcount; in xchk_refcountbt_rmap_check_gap()
386 xfs_agblock_t next_bno = NULLAGBLOCK; in xchk_refcountbt_xref_gaps() local
399 xchk_refcountbt_rmap_check_gap, &next_bno); in xchk_refcountbt_xref_gaps()
H A Drtrefcount.c415 xfs_rgblock_t *next_bno = priv; in xchk_rtrefcountbt_rmap_check_gap() local
417 if (*next_bno != NULLRGBLOCK && rec->rm_startblock < *next_bno) in xchk_rtrefcountbt_rmap_check_gap()
420 *next_bno = rec->rm_startblock + rec->rm_blockcount; in xchk_rtrefcountbt_rmap_check_gap()
436 xfs_rgblock_t next_bno = NULLRGBLOCK; in xchk_rtrefcountbt_xref_gaps() local
449 xchk_rtrefcountbt_rmap_check_gap, &next_bno); in xchk_rtrefcountbt_xref_gaps()
H A Drcbag.h24 uint32_t next_bno);