• Home
  • Raw
  • Download

Lines Matching refs:high

236 	struct xfs_rmap_irec	high;  member
255 if (rec->rm_owner != info->high.rm_owner) in xfs_rmap_find_left_neighbor_helper()
259 rec->rm_offset + rec->rm_blockcount - 1 != info->high.rm_offset) in xfs_rmap_find_left_neighbor_helper()
288 info.high.rm_startblock = bno - 1; in xfs_rmap_find_left_neighbor()
289 info.high.rm_owner = owner; in xfs_rmap_find_left_neighbor()
294 info.high.rm_offset = offset - 1; in xfs_rmap_find_left_neighbor()
296 info.high.rm_offset = 0; in xfs_rmap_find_left_neighbor()
297 info.high.rm_flags = flags; in xfs_rmap_find_left_neighbor()
298 info.high.rm_blockcount = 0; in xfs_rmap_find_left_neighbor()
305 error = xfs_rmap_query_range(cur, &info.high, &info.high, in xfs_rmap_find_left_neighbor()
331 if (rec->rm_owner != info->high.rm_owner) in xfs_rmap_lookup_le_range_helper()
335 (rec->rm_offset > info->high.rm_offset || in xfs_rmap_lookup_le_range_helper()
336 rec->rm_offset + rec->rm_blockcount <= info->high.rm_offset)) in xfs_rmap_lookup_le_range_helper()
363 info.high.rm_startblock = bno; in xfs_rmap_lookup_le_range()
364 info.high.rm_owner = owner; in xfs_rmap_lookup_le_range()
366 info.high.rm_offset = offset; in xfs_rmap_lookup_le_range()
368 info.high.rm_offset = 0; in xfs_rmap_lookup_le_range()
369 info.high.rm_flags = flags; in xfs_rmap_lookup_le_range()
370 info.high.rm_blockcount = 0; in xfs_rmap_lookup_le_range()
377 error = xfs_rmap_query_range(cur, &info.high, &info.high, in xfs_rmap_lookup_le_range()
2434 union xfs_btree_irec high; in xfs_rmap_has_record() local
2438 memset(&high, 0xFF, sizeof(high)); in xfs_rmap_has_record()
2439 high.r.rm_startblock = bno + len - 1; in xfs_rmap_has_record()
2441 return xfs_btree_has_record(cur, &low, &high, exists); in xfs_rmap_has_record()
2528 struct xfs_rmap_irec high; in xfs_rmap_has_other_keys() local
2536 memset(&high, 0xFF, sizeof(high)); in xfs_rmap_has_other_keys()
2537 high.rm_startblock = bno + len - 1; in xfs_rmap_has_other_keys()
2539 error = xfs_rmap_query_range(cur, &low, &high, in xfs_rmap_has_other_keys()