Lines Matching defs:low_limit
1574 * unmapped_area() - Find an area between the low_limit and the high_limit with
1578 * @info: The unmapped area information including the range [low_limit -
1586 unsigned long low_limit, high_limit;
1596 low_limit = info->low_limit;
1597 if (low_limit < mmap_min_addr)
1598 low_limit = mmap_min_addr;
1601 if (mas_empty_area(&mas, low_limit, high_limit - 1, length))
1609 low_limit = tmp->vm_end;
1616 low_limit = vm_end_gap(tmp);
1626 * unmapped_area_topdown() - Find an area between the low_limit and the
1630 * @info: The unmapped area information including the range [low_limit -
1638 unsigned long low_limit, high_limit;
1647 low_limit = info->low_limit;
1648 if (low_limit < mmap_min_addr)
1649 low_limit = mmap_min_addr;
1652 if (mas_empty_area_rev(&mas, low_limit, high_limit - 1, length))
1682 * - is contained within the [low_limit, high_limit) interval;
1737 info.low_limit = mm->mmap_base;
1787 info.low_limit = PAGE_SIZE;
1802 info.low_limit = TASK_UNMAPPED_BASE;