summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2003-07-25 02:27:34 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2003-07-25 02:27:34 +0000
commit0b847c34a2ec8948d87fd3de83f4f565ebc0402f (patch)
tree9858f6b354846da7268f883a7623db42620da5a4
parent68ec2ce6db8c6dd357412b0738d334b6a2225c6e (diff)
change things back. (another note: with this change, suddenly there was
no VOP_LOOKUP(9) page at all.. geez)
-rw-r--r--share/man/man9/Makefile25
-rw-r--r--share/man/man9/VOP_LOOKUP.9 (renamed from share/man/man9/vnodeops.9)4
-rw-r--r--share/man/man9/namei.98
-rw-r--r--share/man/man9/vfs.94
4 files changed, 21 insertions, 20 deletions
diff --git a/share/man/man9/Makefile b/share/man/man9/Makefile
index 40c00f4a2b3..bcb76f3eb18 100644
--- a/share/man/man9/Makefile
+++ b/share/man/man9/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.74 2003/07/24 20:15:44 mickey Exp $
+# $OpenBSD: Makefile,v 1.75 2003/07/25 02:27:33 deraadt Exp $
# $NetBSD: Makefile,v 1.4 1996/01/09 03:23:01 thorpej Exp $
# Makefile for section 9 (kernel function and variable) manual pages.
@@ -19,7 +19,7 @@ MAN= altq.9 audio.9 autoconf.9 boot.9 bus_dma.9 bus_space.9 \
time.9 timeout.9 tvtohz.9 uiomove.9 uvm.9 vfs.9 \
vaccess.9 vclean.9 vcount.9 vdevgone.9 vfinddev.9 vflush.9 vget.9 \
vgone.9 vhold.9 vinvalbuf.9 vput.9 vref.9 vrele.9 \
- vnode.9 vnodeops.9 vn_lock.9 vrecycle.9 vwaitforio.9
+ vnode.9 VOP_LOOKUP.9 vn_lock.9 vrecycle.9 vwaitforio.9
MLINKS+=autoconf.9 config_init.9 autoconf.9 config_search.9 \
autoconf.9 config_rootsearch.9 autoconf.9 config_found_sm.9 \
@@ -207,15 +207,16 @@ MLINKS+=kern.9 imax.9 kern.9 imin.9 kern.9 lmax.9 kern.9 lmin.9 \
kern.9 srandom.9 kern.9 getsn.9
# VOP functions
-MLINKS+=vnodeops.9 VOP_CREATE.9 vnodeops.9 VOP_FSYNC.9 \
- vnodeops.9 VOP_GETEXTATTR.9 vnodeops.9 VOP_ISLOCKED.9 \
- vnodeops.9 VOP_LOOKUP.9 vnodeops.9 VOP_LINK.9 vnodeops.9 VOP_LOCK.9 \
- vnodeops.9 VOP_MKDIR.9 vnodeops.9 VOP_PRINT.9 \
- vnodeops.9 VOP_READLINK.9 vnodeops.9 VOP_REALOCBLKS.9 \
- vnodeops.9 VOP_RECLAIM.9 vnodeops.9 VOP_REMOVE.9 \
- vnodeops.9 VOP_REVOKE.9 vnodeops.9 VOP_RMDIR.9 \
- vnodeops.9 VOP_SETEXTATTR.9 vnodeops.9 VOP_STRATEGY.9 \
- vnodeops.9 VOP_SYMLINK.9 vnodeops.9 VOP_UNLOCK.9 \
- vnodeops.9 VOP_WHITEOUT.9
+MLINKS+=VOP_LOOKUP.9 VOP_CREATE.9 VOP_LOOKUP.9 VOP_FSYNC.9 \
+ VOP_LOOKUP.9 VOP_GETEXTATTR.9 VOP_LOOKUP.9 VOP_ISLOCKED.9 \
+ VOP_LOOKUP.9 VOP_LOOKUP.9 VOP_LOOKUP.9 VOP_LINK.9 \
+ VOP_LOOKUP.9 VOP_LOCK.9 \
+ VOP_LOOKUP.9 VOP_MKDIR.9 VOP_LOOKUP.9 VOP_PRINT.9 \
+ VOP_LOOKUP.9 VOP_READLINK.9 VOP_LOOKUP.9 VOP_REALOCBLKS.9 \
+ VOP_LOOKUP.9 VOP_RECLAIM.9 VOP_LOOKUP.9 VOP_REMOVE.9 \
+ VOP_LOOKUP.9 VOP_REVOKE.9 VOP_LOOKUP.9 VOP_RMDIR.9 \
+ VOP_LOOKUP.9 VOP_SETEXTATTR.9 VOP_LOOKUP.9 VOP_STRATEGY.9 \
+ VOP_LOOKUP.9 VOP_SYMLINK.9 VOP_LOOKUP.9 VOP_UNLOCK.9 \
+ VOP_LOOKUP.9 VOP_WHITEOUT.9
.include <bsd.prog.mk>
diff --git a/share/man/man9/vnodeops.9 b/share/man/man9/VOP_LOOKUP.9
index 4b86b318442..f09d471b124 100644
--- a/share/man/man9/vnodeops.9
+++ b/share/man/man9/VOP_LOOKUP.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: vnodeops.9,v 1.1 2003/07/24 20:15:45 mickey Exp $
+.\" $OpenBSD: VOP_LOOKUP.9,v 1.11 2003/07/25 02:27:33 deraadt Exp $
.\"
.\" Copyright (c) 2003 Ted Unangst
.\" All rights reserved.
@@ -24,7 +24,7 @@
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
.Dd March 9, 2003
-.Dt VOP 9
+.Dt VOP_LOOKUP 9
.Os
.Sh NAME
.Nm VOP functions
diff --git a/share/man/man9/namei.9 b/share/man/man9/namei.9
index 4096c72e081..2cb1047a1e1 100644
--- a/share/man/man9/namei.9
+++ b/share/man/man9/namei.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: namei.9,v 1.5 2003/07/25 02:25:38 tedu Exp $
+.\" $OpenBSD: namei.9,v 1.6 2003/07/25 02:27:33 deraadt Exp $
.\" $NetBSD: namei.9,v 1.9 2003/05/06 10:46:44 jmmv Exp $
.\"
.\" Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -116,13 +116,13 @@ structure
This structure describes the subset of information from the nameidata
structure that is passed through to the vnode operations.
See
-.Xr vnodeops 9
+.Xr VOP_LOOKUP 9
for more information.
The details of the componentname structure are not absolutely necessary
since the members are initialised by the helper macro
.Fn NDINIT .
It is useful to know the operations and flags as specified in
-.Xr vnodeops 9 .
+.Xr VOP_LOOKUP 9 .
.Pp
The
.Nm
@@ -295,7 +295,7 @@ The name lookup subsystem is implemented within the file
.\" .Xr namecache 9 ,
.Xr vfs 9 ,
.Xr vnode 9 ,
-.Xr vnodeops 9
+.Xr VOP_LOOKUP 9
.Sh BUGS
It is unfortunate that much of the
.Nm
diff --git a/share/man/man9/vfs.9 b/share/man/man9/vfs.9
index a5fb841bddb..bd7e5bdc65c 100644
--- a/share/man/man9/vfs.9
+++ b/share/man/man9/vfs.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: vfs.9,v 1.1 2003/07/24 20:15:45 mickey Exp $
+.\" $OpenBSD: vfs.9,v 1.2 2003/07/25 02:27:33 deraadt Exp $
.\" $NetBSD: vfs.9,v 1.7 2003/02/25 10:35:34 wiz Exp $
.\"
.\" Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -61,4 +61,4 @@ and is discussed in
.Xr intro 9 ,
.\" .Xr vfsops 9 ,
.Xr vnode 9 ,
-.Xr vnodeops 9
+.Xr VOP_LOOKUP 9