summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormatthew <matthew@openbsd.org>2014-07-02 23:46:52 +0000
committermatthew <matthew@openbsd.org>2014-07-02 23:46:52 +0000
commit3586040748b14e9149dd2f68a3047d294e4e4125 (patch)
tree4ad120d301c41d000d9769647120b3ac1a1e4761
parentDocument the ioctl() argument types for sd(4)'s ioctls (diff)
downloadwireguard-openbsd-3586040748b14e9149dd2f68a3047d294e4e4125.tar.xz
wireguard-openbsd-3586040748b14e9149dd2f68a3047d294e4e4125.zip
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
-rw-r--r--share/man/man9/uvm.94
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