match section on read/write ioflags with current reality
(bump date!)
This commit is contained in:
parent
3df38a6c89
commit
f219942c2b
@ -1,4 +1,4 @@
|
|||||||
.\" $NetBSD: vnodeops.9,v 1.33 2005/01/11 01:51:12 chs Exp $
|
.\" $NetBSD: vnodeops.9,v 1.34 2005/08/11 10:06:38 pooka Exp $
|
||||||
.\"
|
.\"
|
||||||
.\" Copyright (c) 2001, 2005 The NetBSD Foundation, Inc.
|
.\" Copyright (c) 2001, 2005 The NetBSD Foundation, Inc.
|
||||||
.\" All rights reserved.
|
.\" All rights reserved.
|
||||||
@ -34,7 +34,7 @@
|
|||||||
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
.\" POSSIBILITY OF SUCH DAMAGE.
|
.\" POSSIBILITY OF SUCH DAMAGE.
|
||||||
.\"
|
.\"
|
||||||
.Dd January 2, 2005
|
.Dd August 11, 2005
|
||||||
.Dt VNODEOPS 9
|
.Dt VNODEOPS 9
|
||||||
.Os
|
.Os
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
@ -679,19 +679,25 @@ read-ahead hint (in unit of file system blocks) that the file system
|
|||||||
should attempt.
|
should attempt.
|
||||||
The low 16 bits are a bit mask which can contain the following flags:
|
The low 16 bits are a bit mask which can contain the following flags:
|
||||||
.Pp
|
.Pp
|
||||||
.Bl -tag -offset indent -width IO_NODELOCKED -compact
|
.Bl -tag -offset indent -width IO_ALTSEMANTICS -compact
|
||||||
.It IO_UNIT
|
.It IO_UNIT
|
||||||
do I/O as atomic unit
|
do I/O as atomic unit
|
||||||
.It IO_APPEND
|
.It IO_APPEND
|
||||||
append write to end
|
append write to end
|
||||||
.It IO_SYNC
|
.It IO_SYNC
|
||||||
do I/O synchronously
|
sync I/O file integrity completion
|
||||||
.It IO_NODELOCKED
|
.It IO_NODELOCKED
|
||||||
underlying node already locked
|
underlying node already locked
|
||||||
.It IO_NDELAY
|
.It IO_NDELAY
|
||||||
FNDELAY flag set in file table
|
FNDELAY flag set in file table
|
||||||
.It IO_VMIO
|
.It IO_DSYNC
|
||||||
data already in VMIO space
|
sync I/O data integrity completion
|
||||||
|
.It IO_ALTSEMANTICS
|
||||||
|
use alternate i/o semantics
|
||||||
|
.It IO_NORMAL
|
||||||
|
operate on regular data
|
||||||
|
.It IO_EXT
|
||||||
|
operate on extended attributes
|
||||||
.El
|
.El
|
||||||
.Pp
|
.Pp
|
||||||
Zero is returned on success, otherwise an error is returned.
|
Zero is returned on success, otherwise an error is returned.
|
||||||
|
Loading…
Reference in New Issue
Block a user