summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authortmclaugh <tmclaugh@FreeBSD.org>2009-05-24 18:34:54 +0000
committertmclaugh <tmclaugh@FreeBSD.org>2009-05-24 18:34:54 +0000
commitf8ab650a5c5cfcc6d92666ac806c64351f9c8d36 (patch)
tree7da14808e22efc37ef17e43473fa4f1b66c32604 /share
parent8bf287b0f955c1dd7ce97bf1746d25dffe5e4090 (diff)
downloadFreeBSD-src-f8ab650a5c5cfcc6d92666ac806c64351f9c8d36.zip
FreeBSD-src-f8ab650a5c5cfcc6d92666ac806c64351f9c8d36.tar.gz
Update man pages after VFS_* changes in r191990.
Approved by: brueffer, attilio
Diffstat (limited to 'share')
-rw-r--r--share/man/man9/VFS_MOUNT.96
-rw-r--r--share/man/man9/VFS_QUOTACTL.94
-rw-r--r--share/man/man9/VFS_ROOT.96
-rw-r--r--share/man/man9/VFS_STATFS.96
-rw-r--r--share/man/man9/VFS_SYNC.96
-rw-r--r--share/man/man9/VFS_UNMOUNT.96
6 files changed, 12 insertions, 22 deletions
diff --git a/share/man/man9/VFS_MOUNT.9 b/share/man/man9/VFS_MOUNT.9
index 97d85fa..4856dc4 100644
--- a/share/man/man9/VFS_MOUNT.9
+++ b/share/man/man9/VFS_MOUNT.9
@@ -28,7 +28,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd January 7, 2005
+.Dd May 23, 2009
.Os
.Dt VFS_MOUNT 9
.Sh NAME
@@ -39,7 +39,7 @@
.In sys/mount.h
.In sys/vnode.h
.Ft int
-.Fn VFS_MOUNT "struct mount *mp" "struct thread *td"
+.Fn VFS_MOUNT "struct mount *mp"
.Sh DESCRIPTION
The
.Fn VFS_MOUNT
@@ -50,8 +50,6 @@ The arguments it expects are:
.Bl -tag -width data
.It Fa mp
Structure representing the file system.
-.It Fa td
-Thread which is mounting the file system.
.El
.Pp
The
diff --git a/share/man/man9/VFS_QUOTACTL.9 b/share/man/man9/VFS_QUOTACTL.9
index 4c3620a..48ff866 100644
--- a/share/man/man9/VFS_QUOTACTL.9
+++ b/share/man/man9/VFS_QUOTACTL.9
@@ -28,7 +28,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd July 24, 1996
+.Dd May 23, 2009
.Os
.Dt VFS_QUOTACTL 9
.Sh NAME
@@ -39,7 +39,7 @@
.In sys/mount.h
.In sys/vnode.h
.Ft int
-.Fn VFS_QUOTACTL "struct mount *mp" "int cmds" "uid_t uid" "caddr_t arg" "struct thread *td"
+.Fn VFS_QUOTACTL "struct mount *mp" "int cmds" "uid_t uid" "caddr_t arg"
.Sh DESCRIPTION
Implement file system quotas.
See
diff --git a/share/man/man9/VFS_ROOT.9 b/share/man/man9/VFS_ROOT.9
index 1aa0194..2490cfc 100644
--- a/share/man/man9/VFS_ROOT.9
+++ b/share/man/man9/VFS_ROOT.9
@@ -28,7 +28,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd August 26, 2006
+.Dd May 23, 2009
.Os
.Dt VFS_ROOT 9
.Sh NAME
@@ -39,7 +39,7 @@
.In sys/mount.h
.In sys/vnode.h
.Ft int
-.Fn VFS_ROOT "struct mount *mp" "int flags" "struct vnode **vpp" "struct thread *td"
+.Fn VFS_ROOT "struct mount *mp" "int flags" "struct vnode **vpp"
.Sh DESCRIPTION
Return a locked vnode for the root directory of the file system.
.Pp
@@ -58,8 +58,6 @@ File system is free to ignore the
argument and instead acquire an exclusive lock.
.It Fa vpp
Return parameter for the root vnode.
-.It Fa td
-The calling thread.
.El
.Sh SEE ALSO
.Xr VFS 9 ,
diff --git a/share/man/man9/VFS_STATFS.9 b/share/man/man9/VFS_STATFS.9
index dd8dcc7..80d0d66 100644
--- a/share/man/man9/VFS_STATFS.9
+++ b/share/man/man9/VFS_STATFS.9
@@ -28,7 +28,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd January 7, 2005
+.Dd May 23, 2009
.Os
.Dt VFS_STATFS 9
.Sh NAME
@@ -39,7 +39,7 @@
.In sys/mount.h
.In sys/vnode.h
.Ft int
-.Fn VFS_STATFS "struct mount *mp" "struct statfs *sbp" "struct thread *td"
+.Fn VFS_STATFS "struct mount *mp" "struct statfs *sbp"
.Sh DESCRIPTION
The
.Fn VFS_STATFS
@@ -56,8 +56,6 @@ A
structure, as defined by
.In sys/mount.h ,
into which information is placed about the file system.
-.It Fa td
-The thread which is querying the file system.
.El
.Pp
The fields of
diff --git a/share/man/man9/VFS_SYNC.9 b/share/man/man9/VFS_SYNC.9
index 6f603ab..60947a2 100644
--- a/share/man/man9/VFS_SYNC.9
+++ b/share/man/man9/VFS_SYNC.9
@@ -28,7 +28,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd January 7, 2005
+.Dd May 23, 2009
.Os
.Dt VFS_SYNC 9
.Sh NAME
@@ -39,7 +39,7 @@
.In sys/mount.h
.In sys/vnode.h
.Ft int
-.Fn VFS_SYNC "struct mount *mp" "int waitfor" "struct thread *td"
+.Fn VFS_SYNC "struct mount *mp" "int waitfor"
.Sh DESCRIPTION
The
.Fn VFS_SYNC
@@ -61,8 +61,6 @@ start all I/O, but do not wait for it
.It Dv MNT_LAZY
push data not written by file system syncer
.El
-.It Fa td
-The calling thread.
.El
.Pp
The
diff --git a/share/man/man9/VFS_UNMOUNT.9 b/share/man/man9/VFS_UNMOUNT.9
index 1face49..676685d 100644
--- a/share/man/man9/VFS_UNMOUNT.9
+++ b/share/man/man9/VFS_UNMOUNT.9
@@ -28,7 +28,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd January 7, 2005
+.Dd May 23, 2009
.Os
.Dt VFS_UNMOUNT 9
.Sh NAME
@@ -39,7 +39,7 @@
.In sys/mount.h
.In sys/vnode.h
.Ft int
-.Fn VFS_UNMOUNT "struct mount *mp" "int mntflags" "struct thread *td"
+.Fn VFS_UNMOUNT "struct mount *mp" "int mntflags"
.Sh DESCRIPTION
The
.Fn VFS_UNMOUNT
@@ -58,8 +58,6 @@ are:
.It Dv MNT_FORCE
Open files are forcibly closed before the file system is unmounted.
.El
-.It Fa td
-Thread which is unmounting the file system.
.El
.Sh SEE ALSO
.Xr vflush 9 ,
OpenPOWER on IntegriCloud