Searched refs:FDSYNC (Results 1 - 25 of 27) sorted by relevance

12

/illumos-gate/usr/src/uts/common/syscall/
H A Dfdsync.c63 * FDSYNC : data sync
65 syncflag = flag & (FSYNC|FDSYNC);
H A Drw.c175 ioflag = auio.uio_fmode & (FAPPEND|FSYNC|FDSYNC|FRSYNC);
179 ioflag &= ~(FSYNC|FDSYNC);
307 ioflag = auio.uio_fmode & (FAPPEND|FSYNC|FDSYNC|FRSYNC);
450 ioflag = auio.uio_fmode & (FAPPEND|FSYNC|FDSYNC|FRSYNC);
454 ioflag &= ~(FSYNC|FDSYNC);
587 ioflag = auio.uio_fmode & (FSYNC|FDSYNC|FRSYNC);
743 ioflag = auio.uio_fmode & (FAPPEND|FSYNC|FDSYNC|FRSYNC);
747 ioflag &= ~(FSYNC|FDSYNC);
896 ioflag = auio.uio_fmode & (FAPPEND|FSYNC|FDSYNC|FRSYNC);
1084 ioflag = auio.uio_fmode & (FAPPEND|FSYNC|FDSYNC|FRSYN
[all...]
H A Dsendfile.c155 ioflag = auio.uio_fmode & (FAPPEND|FSYNC|FDSYNC|FRSYNC);
264 (FAPPEND|FSYNC|FDSYNC|FRSYNC);
271 ioflag &= ~(FSYNC|FDSYNC);
313 (FAPPEND|FSYNC|FDSYNC|FRSYNC);
620 (FAPPEND|FSYNC|FDSYNC|FRSYNC);
627 ioflag &= ~(FSYNC|FDSYNC);
843 (FAPPEND|FSYNC|FDSYNC|FRSYNC);
1005 (FAPPEND|FSYNC|FDSYNC|FRSYNC);
1012 ioflag &= ~(FSYNC|FDSYNC);
1080 (FAPPEND|FSYNC|FDSYNC|FRSYN
[all...]
/illumos-gate/usr/src/lib/libshell/common/sh/
H A Dsuid_exec.c60 #undef FDSYNC macro
61 #define FDSYNC 11 /* used on sys5 to synchronize cleanup */ macro
134 close(FDSYNC);
448 /* move write end of pipe into FDSYNC */
449 if(pv[1] != FDSYNC)
451 close(FDSYNC);
452 if(fcntl(pv[1],F_DUPFD,FDSYNC) != FDSYNC)
/illumos-gate/usr/src/uts/common/sys/
H A Dfile.h90 #define FDSYNC 0x40 /* file data only integrity while writing */ macro
106 /* FSYNC and FDSYNC flags */
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dvdev_file.c203 zio->io_error = VOP_FSYNC(vf->vf_vnode, FSYNC | FDSYNC,
H A Dzfs_log.c472 else if (ioflag & (FSYNC | FDSYNC))
516 if (!(ioflag & (FSYNC | FDSYNC)) && (zp->z_sync_cnt == 0) &&
H A Dzfs_vnops.c214 if (flag & (FSYNC | FDSYNC))
239 if ((flag & (FSYNC | FDSYNC)) && (count == 1))
637 * ioflag - FAPPEND, FSYNC, and/or FDSYNC. FAPPEND is
1006 if (ioflag & (FSYNC | FDSYNC) ||
/illumos-gate/usr/src/uts/common/fs/ufs/
H A Dufs_vnops.c351 if (ulp && (ioflag & FRSYNC) && (ioflag & (FSYNC | FDSYNC)) &&
372 if (ulp && (ioflag & FRSYNC) && (ioflag & (FSYNC | FDSYNC)) &&
410 * If the FDSYNC flag is set then ignore the global
413 shared_write = (ioflag & FDSYNC) | ufs_allow_shared_writes;
539 if (!rewriteflg || !(ioflag & FDSYNC))
558 * if the FDSYNC flag is set and not the FSYNC. In this case just
563 if (ioflag & (FSYNC|FDSYNC)) {
624 if (ioflag & (FSYNC|FDSYNC)) {
823 if (ioflag & (FSYNC|FDSYNC)) {
974 if (ioflag & (FSYNC|FDSYNC)) {
[all...]
H A Dufs_trans.c963 if (ioflag & (FSYNC|FDSYNC)) {
978 if (ioflag & (FSYNC|FDSYNC)) {
H A Dufs_directio.c483 if (rewrite && ((ioflag & FDSYNC) || ufs_force_posix_sdi)) {
/illumos-gate/usr/src/lib/libc/port/aio/
H A Dposix_aio.c811 return (__fdsync(aiocbp->aio_fildes, FDSYNC));
1669 return (__fdsync(aiocbp->aio_fildes, FDSYNC));
H A Daio.c1185 if ((retval = __fdsync(arg->fd, FDSYNC)) == -1)
/illumos-gate/usr/src/uts/common/fs/udfs/
H A Dudf_vnops.c1359 ioflag |= FDSYNC;
3079 * In POSIX SYNC (FSYNC and FDSYNC) read mode,
3085 if ((ioflag & FRSYNC) && (ioflag & (FSYNC|FDSYNC))) {
3104 * FSYNC FDSYNC(posix.4)
3110 ((ioflag & FDSYNC) &&
3180 if (ioflag & (FSYNC | FDSYNC)) {
3308 if ((ioflag & (FSYNC|FDSYNC)) || ip->i_type == VDIR) {
3355 if ((ioflag & (FSYNC | FDSYNC)) ||
3411 * FSYNC FDSYNC(posix.4)
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dsocksubr.c1909 ioflag = auio.uio_fmode & (FAPPEND|FSYNC|FDSYNC|FRSYNC);
1913 ioflag &= ~(FSYNC|FDSYNC);
H A Dsocksyscalls.c2759 ioflag = auio.uio_fmode & (FSYNC|FDSYNC|FRSYNC);
2762 ioflag &= ~(FSYNC|FDSYNC);
/illumos-gate/usr/src/lib/libc/port/threads/
H A Dscalls.c762 PERFORM(__fdsync(fildes, FDSYNC))
/illumos-gate/usr/src/uts/common/fs/pcfs/
H A Dpc_vnops.c285 if (ioflag & (FSYNC|FDSYNC))
549 } else if (ioflag & (FSYNC|FDSYNC)) {
/illumos-gate/usr/src/uts/common/fs/smbclnt/smbfs/
H A Dsmbfs_vnops.c695 * Handle ioflag bits: (FAPPEND|FSYNC|FDSYNC)
765 if (ioflag & (FSYNC|FDSYNC)) {
1351 if ((syncflag & (FSYNC|FDSYNC)) == 0)
/illumos-gate/usr/src/uts/common/fs/specfs/
H A Dspecvnops.c1226 if (ioflag & (FSYNC|FDSYNC))
/illumos-gate/usr/src/cmd/truss/
H A Dprint.c2311 FC_FL(FDSYNC),
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs3_vnops.c761 if (ioflag & FDSYNC)
888 if ((ioflag & (FSYNC|FDSYNC)) ||
H A Dnfs3_srv.c1423 ioflag = FDSYNC;
H A Dnfs_vnops.c783 if ((ioflag & (FSYNC|FDSYNC)) ||
/illumos-gate/usr/src/uts/common/io/comstar/lu/stmf_sbd/
H A Dsbd.c774 (offset_t)starting_off, UIO_SYSSPACE, FDSYNC,

Completed in 209 milliseconds

12