diff options
author | Pedro Martelletto <pedro@cvs.openbsd.org> | 2005-06-01 10:20:26 +0000 |
---|---|---|
committer | Pedro Martelletto <pedro@cvs.openbsd.org> | 2005-06-01 10:20:26 +0000 |
commit | dcc26a29a903df0731c9ba9bb81f0bf13e0e6958 (patch) | |
tree | 9cb7725b0fd3ac89f8e1dde16203de067e46c45c /share/man | |
parent | 4133921d9cc2366c93bd85d97ca99eeabb27811b (diff) |
VOP_WHITEOUT() is gone, okay jmc@
Diffstat (limited to 'share/man')
-rw-r--r-- | share/man/man9/Makefile | 7 | ||||
-rw-r--r-- | share/man/man9/VOP_LOOKUP.9 | 21 |
2 files changed, 4 insertions, 24 deletions
diff --git a/share/man/man9/Makefile b/share/man/man9/Makefile index dc029aa9fd5..d1876e8209b 100644 --- a/share/man/man9/Makefile +++ b/share/man/man9/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.93 2005/05/27 22:31:47 marius Exp $ +# $OpenBSD: Makefile,v 1.94 2005/06/01 10:20:25 pedro Exp $ # $NetBSD: Makefile,v 1.4 1996/01/09 03:23:01 thorpej Exp $ # Makefile for section 9 (kernel function and variable) manual pages. @@ -296,7 +296,6 @@ MLINKS+=VOP_LOOKUP.9 VOP_CREATE.9 VOP_LOOKUP.9 VOP_FSYNC.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 + VOP_LOOKUP.9 VOP_SYMLINK.9 VOP_LOOKUP.9 VOP_UNLOCK.9 -.include <bsd.prog.mk>
\ No newline at end of file +.include <bsd.prog.mk> diff --git a/share/man/man9/VOP_LOOKUP.9 b/share/man/man9/VOP_LOOKUP.9 index cfd6a644851..563afca988b 100644 --- a/share/man/man9/VOP_LOOKUP.9 +++ b/share/man/man9/VOP_LOOKUP.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: VOP_LOOKUP.9,v 1.13 2004/02/05 14:25:52 jmc Exp $ +.\" $OpenBSD: VOP_LOOKUP.9,v 1.14 2005/06/01 10:20:25 pedro Exp $ .\" .\" Copyright (c) 2003 Ted Unangst .\" All rights reserved. @@ -148,12 +148,6 @@ .Fa "int flags" .Fa "struct proc *p" .Fc -.Ft int -.Fo VOP_WHITEOUT -.Fa "struct vnode *dvp" -.Fa "struct componentname *cnp" -.Fa "int flags" -.Fc .\" and many more .Sh DESCRIPTION The @@ -368,19 +362,6 @@ is locked and 0 if not. It should be used cautiously, as not all file systems implement locks effectively. Note the asymmetry between vn_lock and VOP_UNLOCK. -.Sh VOP_WHITEOUT -.Fn VOP_WHITEOUT -manipulates whiteout entries in a directory. -.Ar dvp -is the directory containing, or to contain, the whiteout. -It is locked on entry and exit. -.Ar cnp -contains the name of the whiteout. -.Ar flags -is used to indicate the operation. -Whiteouts may be created or deleted. -A whiteout entry is normally used to indicate the absence of a file on a -translucent file system. .Sh IMPLEMENTATION NOTES The .Nm VOP |