Lines Matching refs:bno
26 xfs_agblock_t bno, in xfs_extent_busy_insert() argument
37 new->bno = bno; in xfs_extent_busy_insert()
43 trace_xfs_extent_busy(tp->t_mountp, pag->pag_agno, bno, len); in xfs_extent_busy_insert()
51 if (new->bno < busyp->bno) { in xfs_extent_busy_insert()
53 ASSERT(new->bno + new->length <= busyp->bno); in xfs_extent_busy_insert()
54 } else if (new->bno > busyp->bno) { in xfs_extent_busy_insert()
56 ASSERT(bno >= busyp->bno + busyp->length); in xfs_extent_busy_insert()
82 xfs_agblock_t bno, in xfs_extent_busy_search() argument
94 if (bno < busyp->bno) { in xfs_extent_busy_search()
96 if (bno + len > busyp->bno) in xfs_extent_busy_search()
99 } else if (bno > busyp->bno) { in xfs_extent_busy_search()
101 if (bno < busyp->bno + busyp->length) in xfs_extent_busy_search()
136 xfs_agblock_t bbno = busyp->bno; in xfs_extent_busy_update_extent()
238 busyp->bno = fend; in xfs_extent_busy_update_extent()
253 busyp->length = fbno - busyp->bno; in xfs_extent_busy_update_extent()
290 xfs_agblock_t bbno = busyp->bno; in xfs_extent_busy_reuse()
323 xfs_agblock_t *bno, in xfs_extent_busy_trim() argument
335 fbno = *bno; in xfs_extent_busy_trim()
342 xfs_agblock_t bbno = busyp->bno; in xfs_extent_busy_trim()
477 if (fbno != *bno || flen != *len) { in xfs_extent_busy_trim()
478 trace_xfs_extent_busy_trim(args->mp, args->agno, *bno, *len, in xfs_extent_busy_trim()
480 *bno = fbno; in xfs_extent_busy_trim()
503 trace_xfs_extent_busy_clear(mp, busyp->agno, busyp->bno, in xfs_extent_busy_clear_one()
628 diff = b1->bno - b2->bno; in xfs_extent_busy_ag_cmp()