diff options
| author | Jake Burkholder <jake@FreeBSD.org> | 2002-08-16 01:37:49 +0000 |
|---|---|---|
| committer | Jake Burkholder <jake@FreeBSD.org> | 2002-08-16 01:37:49 +0000 |
| commit | 83d5cede4f13016b08a2f463e74041b166d1e651 (patch) | |
| tree | fd8f559f65ae67a552d24e89a398934f3527b33e | |
| parent | 6856ac329452e7d0436f81f0bdf4e93de39a2dce (diff) | |
Notes
| -rw-r--r-- | sys/sparc64/sparc64/pmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sparc64/sparc64/pmap.c b/sys/sparc64/sparc64/pmap.c index b849cb168188..2e497fb19c77 100644 --- a/sys/sparc64/sparc64/pmap.c +++ b/sys/sparc64/sparc64/pmap.c @@ -586,7 +586,7 @@ pmap_init(vm_offset_t phys_start, vm_offset_t phys_end) for (i = 0; i < translations_size; i++) { addr = translations[i].om_start; size = translations[i].om_size; - if (addr < 0xf0000000) /* XXX */ + if (addr < VM_MIN_PROM_ADDRESS || addr > VM_MAX_PROM_ADDRESS) continue; result = vm_map_find(kernel_map, NULL, 0, &addr, size, TRUE, VM_PROT_ALL, VM_PROT_ALL, 0); |
