Module Name: src
Committed By: jruoho
Date: Sun May 16 05:18:35 UTC 2010
Modified Files:
src/share/man/man9: kmem.9 sysctl.9 xcall.9
Log Message:
IMPLEMENTATION NOTES back to NOTES.
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/share/man/man9/kmem.9
cvs rdiff -u -r1.16 -r1.17 src/share/man/man9/sysctl.9
cvs rdiff -u -r1.5 -r1.6 src/share/man/man9/xcall.9
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/share/man/man9/kmem.9
diff -u src/share/man/man9/kmem.9:1.9 src/share/man/man9/kmem.9:1.10
--- src/share/man/man9/kmem.9:1.9 Fri May 14 18:52:46 2010
+++ src/share/man/man9/kmem.9 Sun May 16 05:18:35 2010
@@ -1,4 +1,4 @@
-.\" $NetBSD: kmem.9,v 1.9 2010/05/14 18:52:46 jruoho Exp $
+.\" $NetBSD: kmem.9,v 1.10 2010/05/16 05:18:35 jruoho Exp $
.\"
.\" Copyright (c)2006 YAMAMOTO Takashi,
.\" All rights reserved.
@@ -25,7 +25,7 @@
.\" SUCH DAMAGE.
.\"
.\" ------------------------------------------------------------
-.Dd May 14, 2010
+.Dd May 16, 2010
.Dt KMEM 9
.Os
.\" ------------------------------------------------------------
@@ -136,7 +136,7 @@
.Dv NULL
is illegal.
.\" ------------------------------------------------------------
-.Sh IMPLEMENTATION NOTES
+.Sh NOTES
Making
.Dv KM_SLEEP
allocations while holding mutexes or reader/writer locks is discouraged, as the
Index: src/share/man/man9/sysctl.9
diff -u src/share/man/man9/sysctl.9:1.16 src/share/man/man9/sysctl.9:1.17
--- src/share/man/man9/sysctl.9:1.16 Fri May 14 18:52:46 2010
+++ src/share/man/man9/sysctl.9 Sun May 16 05:18:35 2010
@@ -1,4 +1,4 @@
-.\" $NetBSD: sysctl.9,v 1.16 2010/05/14 18:52:46 jruoho Exp $
+.\" $NetBSD: sysctl.9,v 1.17 2010/05/16 05:18:35 jruoho Exp $
.\"
.\" Copyright (c) 2004 The NetBSD Foundation, Inc.
.\" All rights reserved.
@@ -27,7 +27,7 @@
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd May 14, 2010
+.Dd May 16, 2010
.Dt SYSCTL 9
.Os
.Sh NAME
@@ -613,7 +613,7 @@
.Fa oldp
are interpreted as kernel addresses, and access is performed as for
the superuser.
-.Sh IMPLEMENTATION NOTES
+.Sh NOTES
It is expected that nodes will be added to (or removed from) the tree
during the following stages of a machine's lifetime:
.Pp
Index: src/share/man/man9/xcall.9
diff -u src/share/man/man9/xcall.9:1.5 src/share/man/man9/xcall.9:1.6
--- src/share/man/man9/xcall.9:1.5 Fri May 14 18:52:46 2010
+++ src/share/man/man9/xcall.9 Sun May 16 05:18:35 2010
@@ -1,4 +1,4 @@
-.\" $NetBSD: xcall.9,v 1.5 2010/05/14 18:52:46 jruoho Exp $
+.\" $NetBSD: xcall.9,v 1.6 2010/05/16 05:18:35 jruoho Exp $
.\"
.\" Copyright (c) 2010 The NetBSD Foundation, Inc.
.\" All rights reserved.
@@ -27,7 +27,7 @@
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd May 14, 2010
+.Dd May 16, 2010
.Dt XCALL 9
.Os
.Sh NAME
@@ -81,7 +81,7 @@
not interrupting other code running on the CPU, and so has exclusive
access to the CPU.
Keep in mind that unless disabled, it may cause a kernel preemption.
-.Sh IMPLEMENTATION NOTES
+.Sh NOTES
Functions being called should be relatively lightweight.
They may block on locks, but carefully and minimally, to not interfere
with other cross calls in the system.