diff options
| author | Marcel Moolenaar <marcel@FreeBSD.org> | 2003-02-15 20:58:32 +0000 |
|---|---|---|
| committer | Marcel Moolenaar <marcel@FreeBSD.org> | 2003-02-15 20:58:32 +0000 |
| commit | 89c1ecfade87e30bab451ab96c73bf89435e08d4 (patch) | |
| tree | 23f7078bde8233c69ad4f8e4e2f5619da4c11281 | |
| parent | 814f5c92d7fec2b654a30964ed9d5445d8fb9be4 (diff) | |
Notes
| -rw-r--r-- | sys/ia64/ia64/pmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/ia64/ia64/pmap.c b/sys/ia64/ia64/pmap.c index e5587b9b7a2b1..82135fe26a477 100644 --- a/sys/ia64/ia64/pmap.c +++ b/sys/ia64/ia64/pmap.c @@ -362,7 +362,7 @@ pmap_bootstrap() * enough sparse, causing us to (try to) create a huge VHPT. */ vhpt_size = 15; - while ((1<<vhpt_size) < ia64_btop(Maxmem) * 32) + while ((1<<vhpt_size) < Maxmem * 32) vhpt_size++; vhpt_base = 0; |
