Searched refs:busyp (Results 1 – 2 of 2) sorted by relevance
/linux-4.4.14/fs/xfs/ |
D | xfs_extent_busy.c | 43 struct xfs_extent_busy *busyp; in xfs_extent_busy_insert() local 74 busyp = rb_entry(parent, struct xfs_extent_busy, rb_node); in xfs_extent_busy_insert() 76 if (new->bno < busyp->bno) { in xfs_extent_busy_insert() 78 ASSERT(new->bno + new->length <= busyp->bno); in xfs_extent_busy_insert() 79 } else if (new->bno > busyp->bno) { in xfs_extent_busy_insert() 81 ASSERT(bno >= busyp->bno + busyp->length); in xfs_extent_busy_insert() 113 struct xfs_extent_busy *busyp; in xfs_extent_busy_search() local 123 busyp = rb_entry(rbp, struct xfs_extent_busy, rb_node); in xfs_extent_busy_search() 124 if (bno < busyp->bno) { in xfs_extent_busy_search() 126 if (bno + len > busyp->bno) in xfs_extent_busy_search() [all …]
|
D | xfs_discard.c | 217 struct xfs_extent_busy *busyp; in xfs_discard_extents() local 220 list_for_each_entry(busyp, list, list) { in xfs_discard_extents() 221 trace_xfs_discard_extent(mp, busyp->agno, busyp->bno, in xfs_discard_extents() 222 busyp->length); in xfs_discard_extents() 225 XFS_AGB_TO_DADDR(mp, busyp->agno, busyp->bno), in xfs_discard_extents() 226 XFS_FSB_TO_BB(mp, busyp->length), in xfs_discard_extents() 231 (unsigned long long)busyp->bno, in xfs_discard_extents() 232 busyp->length, in xfs_discard_extents()
|