xref: /openbsd-src/share/man/man9/vref.9 (revision 2b0358df1d88d06ef4139321dd05bd5e05d91eaf)
1.\"     $OpenBSD: vref.9,v 1.5 2007/05/31 19:20:01 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/vref.9,v 1.8 2001/10/01 16:09:25 ru Exp $
31.\"
32.Dd $Mdocdate: May 31 2007 $
33.Os
34.Dt VREF 9
35.Sh NAME
36.Nm vref
37.Nd increment the use count for a vnode
38.Sh SYNOPSIS
39.Fd #include <sys/param.h>
40.Fd #include <sys/vnode.h>
41.Ft void
42.Fn vref "struct vnode *vp"
43.Sh DESCRIPTION
44Increment the
45.Va v_usecount
46field of the vnode specified by
47.Fa vp .
48.Pp
49Each vnode maintains a reference count of how many parts of the system
50are using the vnode.
51This allows the system to detect when a vnode is
52no longer being used and can be safely recycled for a different file.
53.Pp
54Any code in the system which uses a vnode (e.g. during the
55operation of some algorithm or to store in a data structure) should
56call
57.Fn vref .
58.Sh SEE ALSO
59.Xr vget 9 ,
60.Xr vnode 9 ,
61.Xr vput 9 ,
62.Xr vrele 9
63.Sh AUTHORS
64This man page was originally written by
65.An Doug Rabson
66for
67.Fx .
68