Searched refs:maxoffset (Results 1 – 1 of 1) sorted by relevance
2034 vm_map_offset_t maxoffset; in pmap_bootstrap() local2166 if (PE_parse_boot_argn("arm_maxoffset", &maxoffset, sizeof(maxoffset))) { in pmap_bootstrap()2167 maxoffset = trunc_page(maxoffset); in pmap_bootstrap()2168 if ((maxoffset >= pmap_max_offset(FALSE, ARM_PMAP_MAX_OFFSET_MIN)) in pmap_bootstrap()2169 && (maxoffset <= pmap_max_offset(FALSE, ARM_PMAP_MAX_OFFSET_MAX))) { in pmap_bootstrap()2170 arm_pmap_max_offset_default = maxoffset; in pmap_bootstrap()2174 if (PE_parse_boot_argn("arm64_maxoffset", &maxoffset, sizeof(maxoffset))) { in pmap_bootstrap()2175 maxoffset = trunc_page(maxoffset); in pmap_bootstrap()2176 if ((maxoffset >= pmap_max_offset(TRUE, ARM_PMAP_MAX_OFFSET_MIN)) in pmap_bootstrap()2177 && (maxoffset <= pmap_max_offset(TRUE, ARM_PMAP_MAX_OFFSET_MAX))) { in pmap_bootstrap()[all …]