diff options
author | Robert Watson <rwatson@FreeBSD.org> | 2001-03-16 15:02:30 +0000 |
---|---|---|
committer | Robert Watson <rwatson@FreeBSD.org> | 2001-03-16 15:02:30 +0000 |
commit | 42f558db105a66677774457378c3bf7fa4ae3029 (patch) | |
tree | 878dfda3bd85088d3dd26d81467643749603e80e /share/man/man9/VOP_GETEXTATTR.9 | |
parent | 32de04d557e4f8f4ffa245f3540fd0ff5d4febd3 (diff) |
o The mdoc(7) police strike with avengance:
- These pages abused Ar macro (they should have used Fa).
- NULL constant should be marked with Dv.
- VOP_* in the ERRORS section for the EOPNOTSUPP entry should be marked
with Fn.
Submitted by: ru
Notes
Notes:
svn path=/head/; revision=74354
Diffstat (limited to 'share/man/man9/VOP_GETEXTATTR.9')
-rw-r--r-- | share/man/man9/VOP_GETEXTATTR.9 | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/share/man/man9/VOP_GETEXTATTR.9 b/share/man/man9/VOP_GETEXTATTR.9 index e68734d67106..f47bf9b90743 100644 --- a/share/man/man9/VOP_GETEXTATTR.9 +++ b/share/man/man9/VOP_GETEXTATTR.9 @@ -43,25 +43,27 @@ from a file or directory. .Pp Its arguments are: .Bl -tag -width type -.It Ar vp +.It Fa vp the vnode of the file or directory -.It Ar namespace +.It Fa namespace integer constant indicating which extended attribute namespace the attribute name is present in -.It Ar name +.It Fa name pointer to a null-terminated character string containing the attribute name -.It Ar uio +.It Fa uio the location of the data to be read or written -.It Ar cred +.It Fa cred the user credentials to use in authorizing the request -.It Ar p +.It Fa p the process requesting the extended attribute .El .Pp The .Fa cred -pointer may be NULL to indicate that access control checks are not to be -performed, if possible. This +pointer may be +.Dv NULL +to indicate that access control checks are not to be performed, if possible. +This .Fa cred setting might be used to allow the kernel to authorize extended attribute retrieval that the active process might not be permitted to do. @@ -94,7 +96,8 @@ or .Fa uio argument is invalid. .It Bq Er EOPNOTSUPP -The file system does not support VOP_GETEXTATTR +The file system does not support +.Fn VOP_GETEXTATTR .El .Sh SEE ALSO .Xr extattr 9 , |