Lines Matching refs:hole_end
713 u64 hole_start, hole_end, hole_size; in xe_ggtt_largest_hole() local
718 drm_mm_for_each_hole(entry, mm, hole_start, hole_end) { in xe_ggtt_largest_hole()
721 hole_end = ALIGN_DOWN(hole_end, alignment); in xe_ggtt_largest_hole()
722 if (hole_start >= hole_end) in xe_ggtt_largest_hole()
724 hole_size = hole_end - hole_start; in xe_ggtt_largest_hole()
813 u64 hole_start, hole_end, hole_size; in xe_ggtt_print_holes() local
819 drm_mm_for_each_hole(entry, mm, hole_start, hole_end) { in xe_ggtt_print_holes()
822 hole_end = ALIGN_DOWN(hole_end, alignment); in xe_ggtt_print_holes()
823 if (hole_start >= hole_end) in xe_ggtt_print_holes()
825 hole_size = hole_end - hole_start; in xe_ggtt_print_holes()
830 hole_start, hole_end - 1, buf); in xe_ggtt_print_holes()