From 38fc77c875ad66b8a238ed353dc14249edc103a3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fran=C3=A7ois=20Tigeot?= Date: Thu, 1 Sep 2011 23:48:59 +0200 Subject: [PATCH] Third parameter of VFS_STATFS is no longer struct proc * --- share/man/man9/VFS_STATFS.9 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/share/man/man9/VFS_STATFS.9 b/share/man/man9/VFS_STATFS.9 index 58efb059c1..33d8077b96 100644 --- a/share/man/man9/VFS_STATFS.9 +++ b/share/man/man9/VFS_STATFS.9 @@ -26,7 +26,7 @@ .\" .\" $FreeBSD: src/share/man/man9/VFS_STATFS.9,v 1.5.2.1 2001/12/17 11:30:18 ru Exp $ .\" -.Dd July 24, 1996 +.Dd September 1, 2011 .Dt VFS_STATFS 9 .Os .Sh NAME @@ -37,7 +37,7 @@ .In sys/mount.h .In sys/vnode.h .Ft int -.Fn VFS_STATFS "struct mount *mp" "struct statfs *sbp" "struct proc *p" +.Fn VFS_STATFS "struct mount *mp" "struct statfs *sbp" "struct ucred *cred" .Sh DESCRIPTION This call returns various pieces of information about the filesystem, including recommended I/O sizes, free space, free inodes, etc. @@ -48,8 +48,8 @@ Its arguments are: The filesystem. .It Ar sbp Return parameter for the filesystem's status. -.It Ar p -The process which is querying the filesystem. +.It Ar cred +Credentials for the process which is querying the filesystem. .El .Sh SEE ALSO .Xr VFS 9 , -- 2.41.0