Lines Matching refs:bno
26 xfs_agblock_t bno, in xfs_extent_busy_insert() argument
38 new->bno = bno; in xfs_extent_busy_insert()
44 trace_xfs_extent_busy(tp->t_mountp, agno, bno, len); in xfs_extent_busy_insert()
53 if (new->bno < busyp->bno) { in xfs_extent_busy_insert()
55 ASSERT(new->bno + new->length <= busyp->bno); in xfs_extent_busy_insert()
56 } else if (new->bno > busyp->bno) { in xfs_extent_busy_insert()
58 ASSERT(bno >= busyp->bno + busyp->length); in xfs_extent_busy_insert()
85 xfs_agblock_t bno, in xfs_extent_busy_search() argument
101 if (bno < busyp->bno) { in xfs_extent_busy_search()
103 if (bno + len > busyp->bno) in xfs_extent_busy_search()
106 } else if (bno > busyp->bno) { in xfs_extent_busy_search()
108 if (bno < busyp->bno + busyp->length) in xfs_extent_busy_search()
144 xfs_agblock_t bbno = busyp->bno; in xfs_extent_busy_update_extent()
246 busyp->bno = fend; in xfs_extent_busy_update_extent()
261 busyp->length = fbno - busyp->bno; in xfs_extent_busy_update_extent()
301 xfs_agblock_t bbno = busyp->bno; in xfs_extent_busy_reuse()
335 xfs_agblock_t *bno, in xfs_extent_busy_trim() argument
347 fbno = *bno; in xfs_extent_busy_trim()
354 xfs_agblock_t bbno = busyp->bno; in xfs_extent_busy_trim()
489 if (fbno != *bno || flen != *len) { in xfs_extent_busy_trim()
490 trace_xfs_extent_busy_trim(args->mp, args->agno, *bno, *len, in xfs_extent_busy_trim()
492 *bno = fbno; in xfs_extent_busy_trim()
515 trace_xfs_extent_busy_clear(mp, busyp->agno, busyp->bno, in xfs_extent_busy_clear_one()
643 diff = b1->bno - b2->bno; in xfs_extent_busy_ag_cmp()