aboutsummaryrefslogtreecommitdiff
path: root/share/man/man9/VOP_GETEXTATTR.9
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2003-06-05 13:42:37 +0000
committerRobert Watson <rwatson@FreeBSD.org>2003-06-05 13:42:37 +0000
commitfa414127fbdf68bd10dcf19ba992c5321a59872f (patch)
treec76bd0b8a2e44d7373fba0e01c2b9c2b8da35cb5 /share/man/man9/VOP_GETEXTATTR.9
parent87072d22d5e457d378fd77d52265d37fe263b627 (diff)
ENOATTR is now used for error returns indicating an undefined
extended attribute. EINVAL can also reflect an invalid namespace for either a get or set operation on EAs. Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories
Notes
Notes: svn path=/head/; revision=115874
Diffstat (limited to 'share/man/man9/VOP_GETEXTATTR.9')
-rw-r--r--share/man/man9/VOP_GETEXTATTR.97
1 files changed, 4 insertions, 3 deletions
diff --git a/share/man/man9/VOP_GETEXTATTR.9 b/share/man/man9/VOP_GETEXTATTR.9
index 37d981ac796d..73f123dd6935 100644
--- a/share/man/man9/VOP_GETEXTATTR.9
+++ b/share/man/man9/VOP_GETEXTATTR.9
@@ -98,8 +98,8 @@ On success, zero will be returned, and the uio structure will be updated to
reflect data read. Otherwise, an appropriate error code is returned.
.Sh ERRORS
.Bl -tag -width Er
-.It Bq Er ENOENT
-The attribute name is not defined for this vnode.
+.It Bq Er ENOATTR
+The requested attribute was not defined for this vnode.
.It Bq Er EACCES
The the caller does not have the appropriate privilege.
.It Bq Er ENXIO
@@ -111,7 +111,8 @@ Sufficient memory is not available to fulfill the request.
The uio structure refers to an invalid userspace address.
.It Bq Er EINVAL
The
-.Fa name
+.Fa name ,
+.Fa namespace,
or
.Fa uio
argument is invalid.