Lines Matching refs:map_end
619 * memory_map_top_down - Map [map_start, map_end) top down
621 * @map_end: end address of the target memory range
624 * [map_start, map_end) in top-down. That said, the page tables
629 unsigned long map_end)
645 map_end);
678 if (real_end < map_end)
679 init_range_memory_mapping(real_end, map_end);
683 * memory_map_bottom_up - Map [map_start, map_end) bottom up
685 * @map_end: end address of the target memory range
688 * [map_start, map_end) in bottom-up. Since we have limited the
691 * in [map_start, map_end) in bottom-up.
694 unsigned long map_end)
705 * We start from the bottom (@map_start) and go to the top (@map_end).
710 while (start < map_end) {
711 if (step_size && map_end - start > step_size) {
713 if (next > map_end)
714 next = map_end;
716 next = map_end;