aboutsummaryrefslogtreecommitdiff
path: root/sys/alpha
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2002-10-01 20:56:29 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2002-10-01 20:56:29 +0000
commitfcd054483ae1b234eed4c2050cbcbd6bc6fd9894 (patch)
tree8ac70c974a9ed120041c2db364731e7a2b6b7d92 /sys/alpha
parentb29d22f94eeff4beb385f4214894dcf5937095b4 (diff)
Notes
Diffstat (limited to 'sys/alpha')
-rw-r--r--sys/alpha/alpha/pmap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/alpha/alpha/pmap.c b/sys/alpha/alpha/pmap.c
index a2fd14d74d76..72db2bfb6f95 100644
--- a/sys/alpha/alpha/pmap.c
+++ b/sys/alpha/alpha/pmap.c
@@ -2362,9 +2362,9 @@ pmap_object_init_pt(pmap_t pmap, vm_offset_t addr,
#define PAGEORDER_SIZE (PFBAK+PFFOR)
static int pmap_prefault_pageorder[] = {
- -PAGE_SIZE, PAGE_SIZE,
+ -1 * PAGE_SIZE, 1 * PAGE_SIZE,
-2 * PAGE_SIZE, 2 * PAGE_SIZE,
- -3 * PAGE_SIZE, 3 * PAGE_SIZE
+ -3 * PAGE_SIZE, 3 * PAGE_SIZE,
-4 * PAGE_SIZE, 4 * PAGE_SIZE
};