Searched refs:busyp (Results 1 – 2 of 2) sorted by relevance
| /Linux-v6.6/fs/xfs/ |
| D | xfs_extent_busy.c | 31 struct xfs_extent_busy *busyp; in xfs_extent_busy_insert_list() local 49 busyp = rb_entry(parent, struct xfs_extent_busy, rb_node); in xfs_extent_busy_insert_list() 51 if (new->bno < busyp->bno) { in xfs_extent_busy_insert_list() 53 ASSERT(new->bno + new->length <= busyp->bno); in xfs_extent_busy_insert_list() 54 } else if (new->bno > busyp->bno) { in xfs_extent_busy_insert_list() 56 ASSERT(bno >= busyp->bno + busyp->length); in xfs_extent_busy_insert_list() 109 struct xfs_extent_busy *busyp; in xfs_extent_busy_search() local 116 busyp = rb_entry(rbp, struct xfs_extent_busy, rb_node); in xfs_extent_busy_search() 117 if (bno < busyp->bno) { in xfs_extent_busy_search() 119 if (bno + len > busyp->bno) in xfs_extent_busy_search() [all …]
|
| D | xfs_discard.c | 110 struct xfs_extent_busy *busyp; in xfs_discard_extents() local 116 list_for_each_entry(busyp, &extents->extent_list, list) { in xfs_discard_extents() 117 trace_xfs_discard_extent(mp, busyp->agno, busyp->bno, in xfs_discard_extents() 118 busyp->length); in xfs_discard_extents() 121 XFS_AGB_TO_DADDR(mp, busyp->agno, busyp->bno), in xfs_discard_extents() 122 XFS_FSB_TO_BB(mp, busyp->length), in xfs_discard_extents() 127 (unsigned long long)busyp->bno, in xfs_discard_extents() 128 busyp->length, in xfs_discard_extents()
|