Home
last modified time | relevance | path

Searched refs:busyp (Results 1 – 2 of 2) sorted by relevance

/kernel/linux/linux-5.10/fs/xfs/
Dxfs_extent_busy.c31 struct xfs_extent_busy *busyp; in xfs_extent_busy_insert() local
51 busyp = rb_entry(parent, struct xfs_extent_busy, rb_node); 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()
90 struct xfs_extent_busy *busyp; in xfs_extent_busy_search() local
100 busyp = rb_entry(rbp, struct xfs_extent_busy, rb_node); in xfs_extent_busy_search()
101 if (bno < busyp->bno) { in xfs_extent_busy_search()
103 if (bno + len > busyp->bno) in xfs_extent_busy_search()
[all …]
Dxfs_log_cil.c533 struct xfs_extent_busy *busyp; in xlog_discard_busy_extents() local
541 list_for_each_entry(busyp, list, list) { in xlog_discard_busy_extents()
542 trace_xfs_discard_extent(mp, busyp->agno, busyp->bno, in xlog_discard_busy_extents()
543 busyp->length); in xlog_discard_busy_extents()
546 XFS_AGB_TO_DADDR(mp, busyp->agno, busyp->bno), in xlog_discard_busy_extents()
547 XFS_FSB_TO_BB(mp, busyp->length), in xlog_discard_busy_extents()
552 (unsigned long long)busyp->bno, in xlog_discard_busy_extents()
553 busyp->length, in xlog_discard_busy_extents()