Searched refs:ioflags (Results 1 – 7 of 7) sorted by relevance
| /dragonfly/sys/vm/ |
| HD | vnode_pager.c | 469 int ioflags; in vnode_pager_generic_getpages() local 551 ioflags = IO_VMIO; in vnode_pager_generic_getpages() 553 ioflags |= IO_SEQMAX << IO_SEQSHIFT; in vnode_pager_generic_getpages() 567 error = VOP_READ(vp, &auio, ioflags, proc0.p_ucred); in vnode_pager_generic_getpages() 688 int ioflags; in vnode_pager_generic_putpages() local 746 ioflags = IO_VMIO; in vnode_pager_generic_putpages() 748 ioflags |= IO_SYNC; in vnode_pager_generic_putpages() 750 ioflags |= IO_ASYNC; in vnode_pager_generic_putpages() 751 ioflags |= (flags & OBJPC_INVAL) ? IO_INVAL: 0; in vnode_pager_generic_putpages() 752 ioflags |= IO_SEQMAX << IO_SEQSHIFT; in vnode_pager_generic_putpages() [all …]
|
| /dragonfly/sys/dev/disk/nvme/ |
| HD | nvme_chipset.h | 1464 uint16_t ioflags; member 1466 uint16_t ioflags; member 1494 uint16_t ioflags; member 1496 uint16_t ioflags; member 1548 uint16_t ioflags; member 1550 uint16_t ioflags; member 1578 uint16_t ioflags; member 1580 uint16_t ioflags; member
|
| HD | nvme_disk.c | 264 req->cmd.read.ioflags = 0; /* NVME_IOFLG_LR, NVME_IOFLG_FUA */ in nvme_strategy_core() 300 req->cmd.read.ioflags = 0; /* NVME_IOFLG_LR, NVME_IOFLG_FUA */ in nvme_strategy_core()
|
| /dragonfly/sys/dev/sound/pcm/ |
| HD | channel.h | 257 int chn_write(struct pcm_channel *c, struct uio *buf, int ioflags); 258 int chn_read(struct pcm_channel *c, struct uio *buf, int ioflags);
|
| HD | channel.c | 480 chn_write(struct pcm_channel *c, struct uio *buf, int ioflags) in chn_write() argument 515 } else if ((ioflags & IO_NDELAY) || in chn_write() 611 chn_read(struct pcm_channel *c, struct uio *buf, int ioflags) in chn_read() argument 649 } else if ((ioflags & IO_NDELAY) || in chn_read()
|
| HD | dsp.c | 836 dsp_io_ops(struct cdev *i_dev, struct uio *buf, int ioflags) in dsp_io_ops() argument 897 ret = chn_io(*ch, buf, ioflags); in dsp_io_ops()
|
| /dragonfly/sys/vfs/nfs/ |
| HD | nfs_serv.c | 1011 int ioflags, aftat_ret = 1, retlen, zeroing, adjust; in nfsrv_write() local 1144 ioflags = IO_NODELOCKED; in nfsrv_write() 1146 ioflags = (IO_SYNC | IO_NODELOCKED); in nfsrv_write() 1148 ioflags = (IO_METASYNC | IO_SYNC | IO_NODELOCKED); in nfsrv_write() 1155 ioflags |= nh->nh_seqcount << IO_SEQSHIFT; in nfsrv_write() 1156 error = VOP_WRITE(vp, uiop, ioflags, cred); in nfsrv_write() 1229 int ioflags, aftat_ret = 1, adjust, zeroing; in nfsrv_writegather() local 1409 ioflags = IO_NODELOCKED; in nfsrv_writegather() 1411 ioflags = (IO_SYNC | IO_NODELOCKED); in nfsrv_writegather() 1413 ioflags = (IO_METASYNC | IO_SYNC | IO_NODELOCKED); in nfsrv_writegather() [all …]
|