summaryrefslogtreecommitdiffstats
path: root/share/man/man9
diff options
context:
space:
mode:
Diffstat (limited to 'share/man/man9')
-rw-r--r--share/man/man9/DECLARE_MODULE.93
-rw-r--r--share/man/man9/DEVICE_IDENTIFY.910
-rw-r--r--share/man/man9/DEV_MODULE.94
-rw-r--r--share/man/man9/DRIVER_MODULE.92
-rw-r--r--share/man/man9/MODULE_DEPEND.94
-rw-r--r--share/man/man9/MODULE_VERSION.94
-rw-r--r--share/man/man9/VFS.94
-rw-r--r--share/man/man9/VFS_FHTOVP.92
-rw-r--r--share/man/man9/VOP_GETVOBJECT.94
-rw-r--r--share/man/man9/accept_filter.94
-rw-r--r--share/man/man9/accf_data.94
-rw-r--r--share/man/man9/bus_alloc_resource.94
-rw-r--r--share/man/man9/bus_release_resource.94
-rw-r--r--share/man/man9/driver.94
-rw-r--r--share/man/man9/kthread.94
-rw-r--r--share/man/man9/mdchain.94
-rw-r--r--share/man/man9/module.95
-rw-r--r--share/man/man9/namei.93
-rw-r--r--share/man/man9/time.92
19 files changed, 39 insertions, 36 deletions
diff --git a/share/man/man9/DECLARE_MODULE.9 b/share/man/man9/DECLARE_MODULE.9
index 56b4093..7a4759e 100644
--- a/share/man/man9/DECLARE_MODULE.9
+++ b/share/man/man9/DECLARE_MODULE.9
@@ -101,8 +101,9 @@ enumeration
.Sh SEE ALSO
.Xr DEV_MODULE 9 ,
.Xr DRIVER_MODULE 9 ,
-.Xr SYSCALL_MODULE 9 ,
.Xr module 9 ,
+.Xr SYSCALL_MODULE 9
+.Pp
.Pa /usr/include/sys/kernel.h ,
.Pa /usr/share/examples/kld
.Sh AUTHORS
diff --git a/share/man/man9/DEVICE_IDENTIFY.9 b/share/man/man9/DEVICE_IDENTIFY.9
index 19dc805..ebb729c 100644
--- a/share/man/man9/DEVICE_IDENTIFY.9
+++ b/share/man/man9/DEVICE_IDENTIFY.9
@@ -82,16 +82,16 @@ Zero is returned on success,
otherwise an appropriate error is returned (see
.Xr errno 2 ) .
.Sh SEE ALSO
-.Xr device 9 ,
.Xr BUS_ADD_CHILD 9 ,
+.Xr bus_set_resource 9 ,
+.Xr device 9 ,
.Xr device_add_child 9 ,
-.Xr device_set_desc_copy 9 ,
-.Xr device_set_driver 9 ,
.Xr DEVICE_ATTACH 9 ,
.Xr DEVICE_DETACH 9 ,
.Xr DEVICE_PROBE 9 ,
-.Xr DEVICE_SHUTDOWN 9 ,
-.Xr bus_set_resource 9
+.Xr device_set_desc_copy 9 ,
+.Xr device_set_driver 9 ,
+.Xr DEVICE_SHUTDOWN 9
.Sh AUTHORS
This man page was written by
.An Alexander Langer Aq alex@FreeBSD.org .
diff --git a/share/man/man9/DEV_MODULE.9 b/share/man/man9/DEV_MODULE.9
index a173cd3..4d21db2 100644
--- a/share/man/man9/DEV_MODULE.9
+++ b/share/man/man9/DEV_MODULE.9
@@ -94,10 +94,10 @@ foo_load(module_t mod, int cmd, void *arg)
DEV_MODULE(foo, foo_load, NULL);
.Ed
.Sh SEE ALSO
-.Xr module 9 ,
.Xr DECLARE_MODULE 9 ,
+.Xr destroy_dev 9 ,
.Xr make_dev 9 ,
-.Xr destroy_dev 9
+.Xr module 9
.Sh AUTHORS
This manual page was written by
.An Alexander Langer Aq alex@FreeBSD.org .
diff --git a/share/man/man9/DRIVER_MODULE.9 b/share/man/man9/DRIVER_MODULE.9
index 539de7f..c69b395 100644
--- a/share/man/man9/DRIVER_MODULE.9
+++ b/share/man/man9/DRIVER_MODULE.9
@@ -95,8 +95,8 @@ is unused at this time and should be a
.Dv NULL
pointer.
.Sh SEE ALSO
-.Xr driver 9 ,
.Xr device 9 ,
+.Xr driver 9 ,
.Xr module 9
.Sh AUTHORS
This manual page was written by
diff --git a/share/man/man9/MODULE_DEPEND.9 b/share/man/man9/MODULE_DEPEND.9
index 2a45ce7..b175843 100644
--- a/share/man/man9/MODULE_DEPEND.9
+++ b/share/man/man9/MODULE_DEPEND.9
@@ -54,8 +54,8 @@ MODULE_DEPEND(foo, bar, 1, 3, 4);
.Ed
.Sh SEE ALSO
.Xr DECLARE_MODULE 9 ,
-.Xr MODULE_VERSION 9 ,
-.Xr module 9
+.Xr module 9 ,
+.Xr MODULE_VERSION 9
.Sh AUTHORS
.An -nosplit
This manual page was written by
diff --git a/share/man/man9/MODULE_VERSION.9 b/share/man/man9/MODULE_VERSION.9
index 4d7e2bb..72269d0 100644
--- a/share/man/man9/MODULE_VERSION.9
+++ b/share/man/man9/MODULE_VERSION.9
@@ -50,8 +50,8 @@ MODULE_VERSION(foo, 1);
.Ed
.Sh SEE ALSO
.Xr DECLARE_MODULE 9 ,
-.Xr MODULE_DEPEND 9 ,
-.Xr module 9
+.Xr module 9 ,
+.Xr MODULE_DEPEND 9
.Sh AUTHORS
.An -nosplit
This manual page was written by
diff --git a/share/man/man9/VFS.9 b/share/man/man9/VFS.9
index 972b336..e58a8ff 100644
--- a/share/man/man9/VFS.9
+++ b/share/man/man9/VFS.9
@@ -44,7 +44,6 @@ function from
rather than implementing empty functions or casting to
.Fa eopnotsupp .
.Sh SEE ALSO
-.Xr vnode 9
.Xr VFS_CHECKEXP 9 ,
.Xr VFS_FHTOVP 9 ,
.Xr VFS_INIT 9 ,
@@ -55,7 +54,8 @@ rather than implementing empty functions or casting to
.Xr VFS_SYNC 9 ,
.Xr VFS_UNMOUNT 9 ,
.Xr VFS_VGET 9 ,
-.Xr VFS_VPTOFH 9
+.Xr VFS_VPTOFH 9 ,
+.Xr vnode 9
.Sh AUTHORS
This man page was written by
.An Doug Rabson .
diff --git a/share/man/man9/VFS_FHTOVP.9 b/share/man/man9/VFS_FHTOVP.9
index 8f0ea9b..971cd8f 100644
--- a/share/man/man9/VFS_FHTOVP.9
+++ b/share/man/man9/VFS_FHTOVP.9
@@ -70,8 +70,8 @@ The locked vnode for the file will be returned in
.Fa *vpp .
.Sh SEE ALSO
.Xr VFS 9 ,
-.Xr VFS_VPTOFH 9 ,
.Xr VFS_CHECKEXP 9 ,
+.Xr VFS_VPTOFH 9 ,
.Xr vnode 9
.Sh AUTHORS
This man page was written by
diff --git a/share/man/man9/VOP_GETVOBJECT.9 b/share/man/man9/VOP_GETVOBJECT.9
index 6f53038..09080d2 100644
--- a/share/man/man9/VOP_GETVOBJECT.9
+++ b/share/man/man9/VOP_GETVOBJECT.9
@@ -105,9 +105,9 @@ By default, filesystems leave VM object handling to the
.Fn vop_std*
functions.
.Sh SEE ALSO
+.Xr vnode 9 ,
.Xr VOP_GETPAGES 9 ,
-.Xr VOP_PUTPAGES 9 ,
-.Xr vnode 9
+.Xr VOP_PUTPAGES 9
.Sh AUTHORS
This man page was written by
.An Boris Popov .
diff --git a/share/man/man9/accept_filter.9 b/share/man/man9/accept_filter.9
index 17b0520..8cf6296 100644
--- a/share/man/man9/accept_filter.9
+++ b/share/man/man9/accept_filter.9
@@ -123,9 +123,9 @@ for the
.Fn DECLARE_MODULE
macro.
.Sh SEE ALSO
-.Xr accf_http 9 ,
-.Xr accf_data 9 ,
.Xr setsockopt 2 ,
+.Xr accf_data 9 ,
+.Xr accf_http 9 ,
.Xr malloc 9
.Sh HISTORY
The accept filter mechanism was introduced in
diff --git a/share/man/man9/accf_data.9 b/share/man/man9/accf_data.9
index 80b30cb..ef290fd 100644
--- a/share/man/man9/accf_data.9
+++ b/share/man/man9/accf_data.9
@@ -64,9 +64,9 @@ on the socket
setsockopt(sok, SOL_SOCKET, SO_ACCEPTFILTER, &afa, sizeof(afa));
.Ed
.Sh SEE ALSO
-.Xr accf_http 9
.Xr setsockopt 2 ,
-.Xr accept_filter 9
+.Xr accept_filter 9 ,
+.Xr accf_http 9
.Sh HISTORY
The accept filter mechanism and the
accf_data filter were introduced in
diff --git a/share/man/man9/bus_alloc_resource.9 b/share/man/man9/bus_alloc_resource.9
index 412191c..f8056e6 100644
--- a/share/man/man9/bus_alloc_resource.9
+++ b/share/man/man9/bus_alloc_resource.9
@@ -149,9 +149,9 @@ should be saved in the softc of the device after these calls.
0ul, ~0ul, 1, RF_ACTIVE | RF_SHAREABLE);
.Ed
.Sh SEE ALSO
-.Xr driver 9 ,
+.Xr bus_release_resource 9 ,
.Xr device 9 ,
-.Xr bus_release_resource 9
+.Xr driver 9
.Sh AUTHORS
.An -nosplit
This man page was written by
diff --git a/share/man/man9/bus_release_resource.9 b/share/man/man9/bus_release_resource.9
index dfeba7f..ba8f75c 100644
--- a/share/man/man9/bus_release_resource.9
+++ b/share/man/man9/bus_release_resource.9
@@ -98,9 +98,9 @@ The kernel will panic, if it can't release the resource.
foosoftc->portres);
.Ed
.Sh SEE ALSO
-.Xr driver 9 ,
+.Xr bus_alloc_resource 9 ,
.Xr device 9 ,
-.Xr bus_alloc_resource 9
+.Xr driver 9
.Sh AUTHORS
This man page was written by
.An Alexander Langer Aq alex@big.endian.de .
diff --git a/share/man/man9/driver.9 b/share/man/man9/driver.9
index b942b26..7b2d025 100644
--- a/share/man/man9/driver.9
+++ b/share/man/man9/driver.9
@@ -98,14 +98,14 @@ can optionally call extra initialisation code in the driver by
specifying an extra module event handler and argument as the last two
arguments.
.Sh SEE ALSO
-.Xr DRIVER_MODULE 9 ,
.Xr devclass 9 ,
.Xr device 9 ,
.Xr DEVICE_ATTACH 9 ,
.Xr DEVICE_DETACH 9 ,
.Xr DEVICE_IDENTIFY 9 ,
.Xr DEVICE_PROBE 9 ,
-.Xr DEVICE_SHUTDOWN 9
+.Xr DEVICE_SHUTDOWN 9 ,
+.Xr DRIVER_MODULE 9
.Sh AUTHORS
This man page was written by
.An Doug Rabson .
diff --git a/share/man/man9/kthread.9 b/share/man/man9/kthread.9
index fd9054a..ca22b13 100644
--- a/share/man/man9/kthread.9
+++ b/share/man/man9/kthread.9
@@ -255,8 +255,8 @@ flag was specified in the
parameter.
.El
.Sh SEE ALSO
-.Xr SYSINIT 9 ,
-.Xr rfork 2
+.Xr rfork 2 ,
+.Xr SYSINIT 9
.Sh HISTORY
The
.Fn kproc_start
diff --git a/share/man/man9/mdchain.9 b/share/man/man9/mdchain.9
index 6c21d6b..8a9f102 100644
--- a/share/man/man9/mdchain.9
+++ b/share/man/man9/mdchain.9
@@ -203,8 +203,8 @@ if (md_get_uint8(mdp, &byte) != 0 ||
mb_done(mdp);
.Ed
.Sh SEE ALSO
-.Xr mbuf 9 ,
-.Xr mbchain 9
+.Xr mbchain 9 ,
+.Xr mbuf 9
.Sh AUTHORS
This manual page was written by
.An Boris Popov Aq bp@FreeBSD.org .
diff --git a/share/man/man9/module.9 b/share/man/man9/module.9
index b29408d..0dc5d91 100644
--- a/share/man/man9/module.9
+++ b/share/man/man9/module.9
@@ -81,12 +81,13 @@ MODULE_DEPEND(foo, bar, 1, 3, 4);
DECLARE_MODULE(foo, mod_data, SI_SUB_EXEC, SI_ORDER_ANY);
.Ed
.Sh SEE ALSO
-.Xr DEV_MODULE 9 ,
.Xr DECLARE_MODULE 9 ,
+.Xr DEV_MODULE 9 ,
.Xr DRIVER_MODULE 9 ,
.Xr MODULE_DEPEND 9 ,
.Xr MODULE_VERSION 9 ,
-.Xr SYSCALL_MODULE 9 ,
+.Xr SYSCALL_MODULE 9
+.Pp
.Pa /usr/share/examples/kld
.Sh AUTHORS
This man page was written by
diff --git a/share/man/man9/namei.9 b/share/man/man9/namei.9
index cb44378..332f1c7 100644
--- a/share/man/man9/namei.9
+++ b/share/man/man9/namei.9
@@ -202,7 +202,8 @@ In order to solve this for the cases that include both LOCKPARENT and LOCKLEAF,
it will be necessary to go to recursive locking.
.Sh SEE ALSO
.Xr VFS 9 ,
-.Xr vnode 9 ,
+.Xr vnode 9
+.Pp
.Pa src/sys/kern/vfs_lookup.c
.Sh AUTHORS
This man page was written by
diff --git a/share/man/man9/time.9 b/share/man/man9/time.9
index 6e0a6bc..d7f8c2c 100644
--- a/share/man/man9/time.9
+++ b/share/man/man9/time.9
@@ -130,8 +130,8 @@ for use in any given context.
.Sh SEE ALSO
.Xr settimeofday 2 ,
.Xr gettime 9 ,
-.\" .Xr hz 9 ,
.\" .Xr hardclock 9 ,
+.\" .Xr hz 9 ,
.Xr inittodr 9 ,
.Xr microtime 9
.Sh BUGS
OpenPOWER on IntegriCloud