diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2006-06-29 10:22:26 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2006-06-29 10:22:26 +0000 |
commit | 76e2455a5bc220088d7ddcc5d11711baf1041761 (patch) | |
tree | 1c930c007a4a4ed7fe352f9e04f3b9e0a7d65afd /sys/arch/amd64 | |
parent | 2a3c92c55eab599af61d9d97dbb92b468e30ab3c (diff) |
make compile w/ debug; from danielcavanagh@aanet.com.au
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r-- | sys/arch/amd64/amd64/pmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/pmap.c b/sys/arch/amd64/amd64/pmap.c index b1acc509e31..96b7e24a8d6 100644 --- a/sys/arch/amd64/amd64/pmap.c +++ b/sys/arch/amd64/amd64/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.14 2005/11/28 16:56:31 martin Exp $ */ +/* $OpenBSD: pmap.c,v 1.15 2006/06/29 10:22:25 mickey Exp $ */ /* $NetBSD: pmap.c,v 1.3 2003/05/08 18:13:13 thorpej Exp $ */ /* @@ -2848,7 +2848,7 @@ pmap_dump(pmap, sva, eva) for (/* null */ ; sva < eva ; sva = blkendva) { /* determine range of block */ - blkendva = round_pdr(sva+1); + blkendva = x86_round_pdr(sva+1); if (blkendva > eva) blkendva = eva; |