Lines Matching refs:hole_start
845 u64 hole_start, hole_end, hole_size; in xe_ggtt_largest_hole() local
850 drm_mm_for_each_hole(entry, mm, hole_start, hole_end) { in xe_ggtt_largest_hole()
851 hole_start = max(hole_start, hole_min_start); in xe_ggtt_largest_hole()
852 hole_start = ALIGN(hole_start, alignment); in xe_ggtt_largest_hole()
854 if (hole_start >= hole_end) in xe_ggtt_largest_hole()
856 hole_size = hole_end - hole_start; in xe_ggtt_largest_hole()
945 u64 hole_start, hole_end, hole_size; in xe_ggtt_print_holes() local
951 drm_mm_for_each_hole(entry, mm, hole_start, hole_end) { in xe_ggtt_print_holes()
952 hole_start = max(hole_start, hole_min_start); in xe_ggtt_print_holes()
953 hole_start = ALIGN(hole_start, alignment); in xe_ggtt_print_holes()
955 if (hole_start >= hole_end) in xe_ggtt_print_holes()
957 hole_size = hole_end - hole_start; in xe_ggtt_print_holes()
962 hole_start, hole_end - 1, buf); in xe_ggtt_print_holes()