Lines Matching defs:avoid
9 * to avoid) in order to select a physical memory location that can
312 * when KASLR searches for an appropriate random address. We must avoid any
322 * What is not obvious how to avoid is the range of memory that is used
421 /* Mark the memmap regions we need to avoid */
452 struct mem_vector avoid;
454 avoid.start = (unsigned long)ptr;
455 avoid.size = sizeof(*ptr) + ptr->len;
457 if (mem_overlaps(img, &avoid) && (avoid.start < earliest)) {
458 *overlap = avoid;
465 avoid.start = ((struct setup_indirect *)ptr->data)->addr;
466 avoid.size = ((struct setup_indirect *)ptr->data)->len;
468 if (mem_overlaps(img, &avoid) && (avoid.start < earliest)) {
469 *overlap = avoid;