diff options
author | alfred <alfred@FreeBSD.org> | 2006-11-29 19:10:53 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2006-11-29 19:10:53 +0000 |
commit | ac243d503ea38d3ff52ffd1c89eadde7cd48a56f (patch) | |
tree | 5a13513e5d54c2145a841c4b46a48dfdae60ba44 /share | |
parent | 397a5b85eeac3131904c7a8120ef31aa197b9785 (diff) | |
download | FreeBSD-src-ac243d503ea38d3ff52ffd1c89eadde7cd48a56f.zip FreeBSD-src-ac243d503ea38d3ff52ffd1c89eadde7cd48a56f.tar.gz |
Do a better job of documenting uio_resid.
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/uio.9 | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/share/man/man9/uio.9 b/share/man/man9/uio.9 index 8cc09c2..5e07576 100644 --- a/share/man/man9/uio.9 +++ b/share/man/man9/uio.9 @@ -38,13 +38,13 @@ .Pp .Bd -literal struct uio { - struct iovec *uio_iov; - int uio_iovcnt; - off_t uio_offset; - int uio_resid; - enum uio_seg uio_segflg; - enum uio_rw uio_rw; - struct thread *uio_td; + struct iovec *uio_iov; /* scatter/gather list */ + int uio_iovcnt; /* length of scatter/gather list */ + off_t uio_offset; /* offset in target object */ + int uio_resid; /* remaining bytes to copy */ + enum uio_seg uio_segflg; /* address space */ + enum uio_rw uio_rw; /* operation */ + struct thread *uio_td; /* owner */ }; .Ed .Ft int @@ -87,7 +87,7 @@ The number of I/O vectors present. .It Va uio_offset The offset into the device. .It Va uio_resid -The number of bytes to process. +The remaining number of bytes to process, updated after transfer. .It Va uio_segflg One of the following flags: .Bl -tag -width ".Dv UIO_USERSPACE" @@ -112,14 +112,20 @@ indicates that the transfer is to be made from/to a process's address space. .El .Sh RETURN VALUES +On success .Fn uiomove -can return -.Er EFAULT -from the invoked +will return 0, on error it will return an appropriate errno. +.Sh ERRORS +.Fn uiomove +will fail and return the following error code if: +.Bl -tag -width Er +.It Bq Er EFAULT +The invoked .Xr copyin 9 or .Xr copyout 9 -in case the transfer was to/from a process's address space. +returned +.Er EFAULT .Sh EXAMPLES The idea is that the driver maintains a private buffer for its data, and processes the request in chunks of maximal the size of this |