Lines Matching refs:hole_start
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()
719 hole_start = max(hole_start, hole_min_start); in xe_ggtt_largest_hole()
720 hole_start = ALIGN(hole_start, 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()
820 hole_start = max(hole_start, hole_min_start); in xe_ggtt_print_holes()
821 hole_start = ALIGN(hole_start, 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()