Home
last modified time | relevance | path

Searched refs:hole_end (Results 1 – 2 of 2) sorted by relevance

/linux-2.6.39/drivers/gpu/drm/
Ddrm_mm.c125 unsigned long hole_end = drm_mm_hole_node_end(hole_node); in drm_mm_insert_helper() local
146 BUG_ON(node->start + node->size > hole_end); in drm_mm_insert_helper()
148 if (node->start + node->size < hole_end) { in drm_mm_insert_helper()
201 unsigned long hole_end = drm_mm_hole_node_end(hole_node); in drm_mm_insert_helper_range() local
226 BUG_ON(node->start + node->size > hole_end); in drm_mm_insert_helper_range()
229 if (node->start + node->size < hole_end) { in drm_mm_insert_helper_range()
503 unsigned long hole_start, hole_end; in drm_mm_scan_add_block() local
523 hole_end = drm_mm_hole_node_end(prev_node); in drm_mm_scan_add_block()
527 adj_end = hole_end > mm->scan_end ? in drm_mm_scan_add_block()
528 mm->scan_end : hole_end; in drm_mm_scan_add_block()
[all …]
/linux-2.6.39/kernel/
Dkexec.c491 unsigned long hole_start, hole_end, size; in kimage_alloc_crash_control_pages() local
497 hole_end = hole_start + size - 1; in kimage_alloc_crash_control_pages()
498 while (hole_end <= crashk_res.end) { in kimage_alloc_crash_control_pages()
501 if (hole_end > KEXEC_CONTROL_MEMORY_LIMIT) in kimage_alloc_crash_control_pages()
503 if (hole_end > crashk_res.end) in kimage_alloc_crash_control_pages()
511 if ((hole_end >= mstart) && (hole_start <= mend)) { in kimage_alloc_crash_control_pages()
514 hole_end = hole_start + size - 1; in kimage_alloc_crash_control_pages()
525 image->control_page = hole_end; in kimage_alloc_crash_control_pages()