Searched refs:busyp (Results 1 – 2 of 2) sorted by relevance
/linux-6.1.9/fs/xfs/ |
D | xfs_extent_busy.c | 31 struct xfs_extent_busy *busyp; in xfs_extent_busy_insert() local 49 busyp = rb_entry(parent, struct xfs_extent_busy, rb_node); 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() 86 struct xfs_extent_busy *busyp; in xfs_extent_busy_search() local 93 busyp = rb_entry(rbp, struct xfs_extent_busy, rb_node); in xfs_extent_busy_search() 94 if (bno < busyp->bno) { in xfs_extent_busy_search() 96 if (bno + len > busyp->bno) in xfs_extent_busy_search() [all …]
|
D | xfs_log_cil.c | 733 struct xfs_extent_busy *busyp; in xlog_discard_busy_extents() local 741 list_for_each_entry(busyp, list, list) { in xlog_discard_busy_extents() 742 trace_xfs_discard_extent(mp, busyp->agno, busyp->bno, in xlog_discard_busy_extents() 743 busyp->length); in xlog_discard_busy_extents() 746 XFS_AGB_TO_DADDR(mp, busyp->agno, busyp->bno), in xlog_discard_busy_extents() 747 XFS_FSB_TO_BB(mp, busyp->length), in xlog_discard_busy_extents() 752 (unsigned long long)busyp->bno, in xlog_discard_busy_extents() 753 busyp->length, in xlog_discard_busy_extents()
|