summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2002-12-20 06:19:40 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2002-12-20 06:19:40 +0000
commit3790f5ac0ef0a43ab9137b0f88eb1cad45027c8a (patch)
tree7505356f421dbcf2a92ee41c2086f1be9f092f40 /share
parentc4af151ba192dd89d62258244f8357b43a013752 (diff)
More rewording.
Diffstat (limited to 'share')
-rw-r--r--share/man/man9/vnode.96
1 files changed, 3 insertions, 3 deletions
diff --git a/share/man/man9/vnode.9 b/share/man/man9/vnode.9
index 01c0a784f20..de789fec056 100644
--- a/share/man/man9/vnode.9
+++ b/share/man/man9/vnode.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: vnode.9,v 1.10 2002/11/08 08:08:47 mpech Exp $
+.\" $OpenBSD: vnode.9,v 1.11 2002/12/20 06:19:39 art Exp $
.\"
.\" Copyright (c) 2001 Constantine Sapuntzakis
.\" All rights reserved.
@@ -123,7 +123,7 @@ and released by calling
.Xr vn_unlock 9 .
The vnode lock is used to serialize operations through the file system for
a given file when there are multiple concurrent requests on the same file.
-Many file system functions require that you hold the vnode lock on entry.
+Many file system functions require that the vnode lock is held on entry.
The vnode lock may be held when sleeping.
.Pp
A vnode will not be reclaimed as long as the vnode lock is held by some
@@ -221,7 +221,7 @@ The exceptions are bgetvp and brelvp.
The following fields of the vnode are manipulated at interrupt level:
v_numoutput, v_holdcnt, v_dirtyblkhd, v_cleanblkhd, v_bioflag, v_freelist,
and v_synclist.
-Any accesses to these field should be protected by splbio,
+Any accesses to these fields should be protected by splbio,
unless you are certain that there is no chance an interrupt handler
will modify them.
.Sh HISTORY