3 .\" Copyright (c) 1996 Doug Rabson
5 .\" All rights reserved.
7 .\" This program is free software.
9 .\" Redistribution and use in source and binary forms, with or without
10 .\" modification, are permitted provided that the following conditions
12 .\" 1. Redistributions of source code must retain the above copyright
13 .\" notice, this list of conditions and the following disclaimer.
14 .\" 2. Redistributions in binary form must reproduce the above copyright
15 .\" notice, this list of conditions and the following disclaimer in the
16 .\" documentation and/or other materials provided with the distribution.
18 .\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR
19 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 .\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
22 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 .Nd serialize access to a vnode
45 .Fn VOP_LOCK "struct vnode *vp" "int flags"
47 .Fn VOP_UNLOCK "struct vnode *vp" "int flags"
49 .Fn VOP_ISLOCKED "struct vnode *vp"
51 .Fn vn_lock "struct vnode *vp" "int flags"
53 These calls are used to serialize access to the file system, such as
54 to prevent two writes to the same file from happening at the
60 The vnode being locked or unlocked.
62 One of the lock request types:
64 .Bl -tag -width ".Dv LK_CANRECURSE" -offset indent -compact
70 Shared-to-exclusive upgrade.
72 Exclusive-to-shared downgrade.
74 Release any type of lock.
76 Wait for all lock activity to end.
81 with these lock flags:
83 .Bl -tag -width ".Dv LK_CANRECURSE" -offset indent -compact
85 Do not sleep to wait for lock.
87 Sleep, then return failure.
89 Allow recursive exclusive lock.
93 to ignore this instance.
98 with these control flags:
100 .Bl -tag -width ".Dv LK_CANRECURSE" -offset indent -compact
102 Specify when the caller already has a simple lock
104 will unlock the simple lock after getting the lock).
109 Kernel code should use
111 to lock a vnode rather than calling
115 also does not want a thread specified as argument but it
116 assumes curthread to be used.
118 Zero is returned on success, otherwise an error is returned.
124 * Other file system specific data.
130 #define VTOVON(vp) ((struct vopnode *) (vp)->v_data)
133 vop_lock(struct vnode *vp)
138 while (vp->v_flag & VXLOCK) {
139 vp->v_flag |= VXWANT;
140 tsleep((caddr_t)vp, PINOD, "voplk1", 0);
142 if (vp->v_tag == VT_NON)
146 if (vop->von_flag & VON_LOCKED) {
147 vop->von_flag |= VON_WANTED;
148 tsleep((caddr_t) vop, PINOD, "voplk2", 0);
152 vop->von_flag |= VON_LOCKED;
158 vop_unlock(struct vnode *vp)
160 struct vopnode *vop = VTOVON(vp);
162 if ((vop->von_flag & VON_LOCKED) == 0) {
163 panic("vop_unlock not locked");
165 vop->von_flag &= ~VON_LOCKED;
166 if (vop->von_flag & VON_WANTED) {
167 vop->von_flag &= ~VON_WANTED;
168 wakeup((caddr_t) vop);
175 vop_islocked(struct vnode *vp)
177 struct vopnode *vop = VTOVON(vp);
179 if (vop->von_flag & VON_LOCKED)
188 This manual page was written by