Searched refs:maxoffset (Results 1 – 1 of 1) sorted by relevance
2018 vm_map_offset_t maxoffset; in pmap_bootstrap() local2150 if (PE_parse_boot_argn("arm_maxoffset", &maxoffset, sizeof(maxoffset))) { in pmap_bootstrap()2151 maxoffset = trunc_page(maxoffset); in pmap_bootstrap()2152 if ((maxoffset >= pmap_max_offset(FALSE, ARM_PMAP_MAX_OFFSET_MIN)) in pmap_bootstrap()2153 && (maxoffset <= pmap_max_offset(FALSE, ARM_PMAP_MAX_OFFSET_MAX))) { in pmap_bootstrap()2154 arm_pmap_max_offset_default = maxoffset; in pmap_bootstrap()2158 if (PE_parse_boot_argn("arm64_maxoffset", &maxoffset, sizeof(maxoffset))) { in pmap_bootstrap()2159 maxoffset = trunc_page(maxoffset); in pmap_bootstrap()2160 if ((maxoffset >= pmap_max_offset(TRUE, ARM_PMAP_MAX_OFFSET_MIN)) in pmap_bootstrap()2161 && (maxoffset <= pmap_max_offset(TRUE, ARM_PMAP_MAX_OFFSET_MAX))) { in pmap_bootstrap()[all …]