diff options
author | 2005-04-18 12:19:44 +0000 | |
---|---|---|
committer | 2005-04-18 12:19:44 +0000 | |
commit | 7af736699ac6cc16feeae89c687a0617e1d1dbab (patch) | |
tree | 812a9ca489593ab50526fe6439d1146de7bde409 | |
parent | do not do some of the initmsgbuf()s job (diff) | |
download | wireguard-openbsd-7af736699ac6cc16feeae89c687a0617e1d1dbab.tar.xz wireguard-openbsd-7af736699ac6cc16feeae89c687a0617e1d1dbab.zip |
oops. uvm_page_physload() has different semantics for start and end...
-rw-r--r-- | sys/arch/hppa/hppa/pmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/hppa/pmap.c b/sys/arch/hppa/hppa/pmap.c index e3ef8303438..d67e5b9d508 100644 --- a/sys/arch/hppa/hppa/pmap.c +++ b/sys/arch/hppa/hppa/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.125 2005/04/07 13:16:12 mickey Exp $ */ +/* $OpenBSD: pmap.c,v 1.126 2005/04/18 12:19:44 mickey Exp $ */ /* * Copyright (c) 1998-2004 Michael Shalayeff @@ -560,7 +560,7 @@ pmap_bootstrap(vstart) resvphysmem = atop(addr); eaddr = physmem - atop(round_page(MSGBUFSIZE)); DPRINTF(PDB_INIT, ("physmem: 0x%x - 0x%x\n", resvphysmem, eaddr)); - uvm_page_physload(0, physmem, + uvm_page_physload(0, eaddr, resvphysmem, eaddr, VM_FREELIST_DEFAULT); /* TODO optimize/inline the kenter */ |