diff options
author | Matthew Dempsky <matthew@cvs.openbsd.org> | 2014-07-02 23:46:53 +0000 |
---|---|---|
committer | Matthew Dempsky <matthew@cvs.openbsd.org> | 2014-07-02 23:46:53 +0000 |
commit | 527c53abab1ae3ebf9d30c1c1ae34f5e1886fee4 (patch) | |
tree | 3914f238cd0ca807c58d70fab6a9a8181fd83a74 /share | |
parent | 09be8422540b3e3b3e84a4b3381759072a1cb8b3 (diff) |
Sync uvm_page_physload()'s parameter types with reality
uvm_page.c r1.19 (July 25, 2001) changed them from vaddr_t to paddr_t
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/uvm.9 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/man/man9/uvm.9 b/share/man/man9/uvm.9 index a2065943e2e..4fd5785cc5b 100644 --- a/share/man/man9/uvm.9 +++ b/share/man/man9/uvm.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: uvm.9,v 1.56 2014/07/02 06:09:49 matthew Exp $ +.\" $OpenBSD: uvm.9,v 1.57 2014/07/02 23:46:52 matthew Exp $ .\" $NetBSD: uvm.9,v 1.14 2000/06/29 06:08:44 mrg Exp $ .\" .\" Copyright (c) 1998 Matthew R. Green @@ -642,7 +642,7 @@ on the map before unlocking the map. .Ft void .Fn uvm_pglistfree "struct pglist *list" .Ft void -.Fn uvm_page_physload "vaddr_t start" "vaddr_t end" "vaddr_t avail_start" "vaddr_t avail_end" "int free_list" +.Fn uvm_page_physload "paddr_t start" "paddr_t end" "paddr_t avail_start" "paddr_t avail_end" "int free_list" .nr nS 0 .Pp The |