diff options
-rw-r--r-- | share/doc/papers/fsinterface/fsinterface.ms | 3 | ||||
-rw-r--r-- | share/man/man9/uio.9 | 5 |
2 files changed, 2 insertions, 6 deletions
diff --git a/share/doc/papers/fsinterface/fsinterface.ms b/share/doc/papers/fsinterface/fsinterface.ms index 6ef908b..453cc7e 100644 --- a/share/doc/papers/fsinterface/fsinterface.ms +++ b/share/doc/papers/fsinterface/fsinterface.ms @@ -755,14 +755,13 @@ struct iovec { }; .DE .DS -.ta .5i +\w'UIO_USERISPACE\0\0\0\0\0'u +.ta .5i +\w'UIO_USERSPACE\0\0\0\0\0'u /* * Segment flag values. */ enum uio_seg { UIO_USERSPACE, /* from user data space */ UIO_SYSSPACE, /* from system space */ - UIO_USERISPACE /* from user I space */ }; .DE .NH diff --git a/share/man/man9/uio.9 b/share/man/man9/uio.9 index 0dca9bb..d5c54e0 100644 --- a/share/man/man9/uio.9 +++ b/share/man/man9/uio.9 @@ -90,14 +90,11 @@ The offset into the device. The number of bytes to process. .It Va uio_segflg One of the following flags: -.Bl -tag -width ".Dv UIO_USERISPACE" +.Bl -tag -width ".Dv UIO_USERSPACE" .It Dv UIO_USERSPACE The I/O vector points into a process's address space. .It Dv UIO_SYSSPACE The I/O vector points into the kernel address space. -.It Dv UIO_USERISPACE -The I/O vector points into the instruction area of a process's address -space. .It Dv UIO_NOCOPY Don't copy, already in object. .El |