Lines Matching refs:map_end
624 * memory_map_top_down - Map [map_start, map_end) top down
626 * @map_end: end address of the target memory range
629 * [map_start, map_end) in top-down. That said, the page tables
634 unsigned long map_end)
642 addr = memblock_find_in_range(map_start, map_end, PMD_SIZE, PMD_SIZE);
672 if (real_end < map_end)
673 init_range_memory_mapping(real_end, map_end);
677 * memory_map_bottom_up - Map [map_start, map_end) bottom up
679 * @map_end: end address of the target memory range
682 * [map_start, map_end) in bottom-up. Since we have limited the
685 * in [map_start, map_end) in bottom-up.
688 unsigned long map_end)
699 * We start from the bottom (@map_start) and go to the top (@map_end).
704 while (start < map_end) {
705 if (step_size && map_end - start > step_size) {
707 if (next > map_end)
708 next = map_end;
710 next = map_end;