summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2001-02-06 14:58:39 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2001-02-06 14:58:39 +0000
commiteb8afd58fe89c1d657cf213df0962c1454d34788 (patch)
treeb99674cf334f08fa415eed32e1e05a687a5f602e
parentdbb5bf4bf616ed335e7c4a463b5ff063f9310788 (diff)
Notes
-rw-r--r--share/man/man9/vcount.916
1 files changed, 10 insertions, 6 deletions
diff --git a/share/man/man9/vcount.9 b/share/man/man9/vcount.9
index a83fb7c63373..b77d85b786f8 100644
--- a/share/man/man9/vcount.9
+++ b/share/man/man9/vcount.9
@@ -32,13 +32,13 @@
.\"
.\" $FreeBSD$
.\"
-.Dd February 6th, 2001
+.Dd February 6, 2001
.Os
.Dt VCOUNT 9
.Sh NAME
.Nm vcount ,
.Nm count_dev
-.Nd get total number of references to a device.
+.Nd "get total number of references to a device"
.Sh SYNOPSIS
.Fd #include <sys/types.h>
.Fd #include <sys/conf.h>
@@ -52,8 +52,13 @@
is used to get the number of references to a particular device.
It allows for the fact that multiple vnodes may reference the same device.
.Fn count_dev
-does the same thing as vcount,
-but takes a dev_t rather than a vnode pointer as an argument.
+does the same thing as
+.Fn vcount ,
+but takes a
+.Vt dev_t
+rather than a
+.Vt "struct vnode"
+pointer as an argument.
.Sh RETURN VALUES
.Fn vcount
and
@@ -61,8 +66,7 @@ and
both return the number of references to the device.
.Sh SEE ALSO
.Xr VFS 9 ,
-.Xr vnode 9 ,
-.Pa src/sys/kern/vfs_subr.c
+.Xr vnode 9
.Sh AUTHORS
This man page was written by
.An Andrew Stevenson .