Home
last modified time | relevance | path

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

/kernel/
Dkexec_core.c441 unsigned long hole_start, hole_end, size; in kimage_alloc_crash_control_pages() local
446 hole_start = (image->control_page + (size - 1)) & ~(size - 1); in kimage_alloc_crash_control_pages()
447 hole_end = hole_start + size - 1; in kimage_alloc_crash_control_pages()
461 if ((hole_end >= mstart) && (hole_start <= mend)) { in kimage_alloc_crash_control_pages()
463 hole_start = (mend + (size - 1)) & ~(size - 1); in kimage_alloc_crash_control_pages()
464 hole_end = hole_start + size - 1; in kimage_alloc_crash_control_pages()
470 pages = pfn_to_page(hole_start >> PAGE_SHIFT); in kimage_alloc_crash_control_pages()