xref: /openbsd-src/share/man/man9/vput.9 (revision db3296cf5c1dd9058ceecc3a29fe4aaa0bd26000)
1.\"     $OpenBSD: vput.9,v 1.3 2003/06/06 20:56:32 jmc Exp $
2.\" -*- nroff -*-
3.\"
4.\" Copyright (c) 1996 Doug Rabson
5.\"
6.\" All rights reserved.
7.\"
8.\" This program is free software.
9.\"
10.\" Redistribution and use in source and binary forms, with or without
11.\" modification, are permitted provided that the following conditions
12.\" are met:
13.\" 1. Redistributions of source code must retain the above copyright
14.\"    notice, this list of conditions and the following disclaimer.
15.\" 2. Redistributions in binary form must reproduce the above copyright
16.\"    notice, this list of conditions and the following disclaimer in the
17.\"    documentation and/or other materials provided with the distribution.
18.\"
19.\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR
20.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22.\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
23.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29.\"
30.\" $FreeBSD: src/share/man/man9/vput.9,v 1.9 2001/10/01 16:09:25 ru Exp $
31.\"
32.Dd July 24, 1996
33.Os
34.Dt VPUT 9
35.Sh NAME
36.Nm vput
37.Nd "decrement the use count for a vnode and unlock it"
38.Sh SYNOPSIS
39.Fd #include <sys/param.h>
40.Fd #include <sys/vnode.h>
41.Ft void
42.Fn vput "struct vnode *vp"
43.Sh DESCRIPTION
44Decrement the
45.Dv v_usecount
46field of a vnode and unlock the vnode
47.Bl -tag -width 2n
48.It Ar vp
49the vnode to decrement
50.El
51.Pp
52This operation is functionally equivalent to calling
53.Fn VOP_UNLOCK
54followed by
55.Xr vrele 9 .
56.Sh SEE ALSO
57.Xr vnode 9 ,
58.Xr vref 9 ,
59.Xr vrele 9
60.Sh AUTHORS
61This man page was originally written by
62.An Doug Rabson
63for
64.Fx .
65