HomeSort by: relevance | last modified time | path
    Searched refs:IO_SYNC (Results 1 - 25 of 38) sorted by relevancy

1 2

  /src/sys/ufs/ext2fs/
ext2fs_readwrite.c 243 if ((ioflag & IO_SYNC) == IO_SYNC)
345 if (error == 0 && ioflag & IO_SYNC) {
375 KASSERT(vp->v_type != VDIR || ISSET(ioflag, IO_SYNC));
390 flags = ioflag & IO_SYNC ? B_SYNC : 0;
422 if (ioflag & IO_SYNC)
473 (void) ext2fs_truncate(vp, osize, ioflag & IO_SYNC, cred);
476 } else if (resid > uio->uio_resid && (ioflag & IO_SYNC) == IO_SYNC)
ext2fs_inode.c 340 ioflag & IO_SYNC ? B_SYNC : 0);
342 (void) ext2fs_truncate(ovp, osize, ioflag & IO_SYNC,
ext2fs_htree.c 172 error = VOP_WRITE(vp, &auio, IO_SYNC, cnp->cn_cred);
448 if ( (vp)->v_mount->mnt_iflag & IO_SYNC)
ext2fs_rename.c 442 error = ext2fs_truncate(tvp, (off_t)0, IO_SYNC, cred);
943 (IO_NODELOCKED | IO_SYNC), cred, NULL, NULL);
ext2fs_vnops.c 691 sizeof (dirtemplate), (off_t)0, IO_NODELOCKED|IO_SYNC,
811 error = ext2fs_truncate(vp, (off_t)0, IO_SYNC, cnp->cn_cred);
ext2fs_lookup.c 931 error = ext2fs_bufwr(dvp, &auio, IO_SYNC, cnp->cn_cred);
949 error = ext2fs_truncate(dvp, (off_t)ulr->ulr_endoff, IO_SYNC,
  /src/sys/ufs/ufs/
ufs_readwrite.c 214 if ((ioflag & IO_SYNC) == IO_SYNC) {
280 flags = ioflag & IO_SYNC ? B_SYNC : 0;
323 aflag = ioflag & IO_SYNC ? B_SYNC : 0;
443 if (error == 0 && ioflag & IO_SYNC) {
477 KASSERT(vp->v_type != VDIR || ISSET(ioflag, IO_SYNC));
495 flags = ioflag & IO_SYNC ? B_SYNC : 0;
539 if (ioflag & IO_SYNC)
595 (void) UFS_TRUNCATE(vp, osize, ioflag & IO_SYNC, cred);
598 } else if (resid > uio->uio_resid && (ioflag & IO_SYNC) == IO_SYNC
    [all...]
ufs_extattr.c 1428 ioflag |= IO_SYNC;
1447 ioflag |= IO_SYNC;
1517 ioflag |= IO_SYNC;
  /src/sys/ufs/lfs/
ulfs_readwrite.c 211 if ((ioflag & IO_SYNC) == IO_SYNC) {
271 flags = ioflag & IO_SYNC ? B_SYNC : 0;
285 aflag = ioflag & IO_SYNC ? B_SYNC : 0;
398 if (error == 0 && ioflag & IO_SYNC) {
431 KASSERT(vp->v_type != VDIR || ISSET(ioflag, IO_SYNC));
447 flags = ioflag & IO_SYNC ? B_SYNC : 0;
556 (void) lfs_truncate(vp, osize, ioflag & IO_SYNC, cred);
559 } else if (resid > uio->uio_resid && (ioflag & IO_SYNC) == IO_SYNC) {
    [all...]
lfs_inode.c 276 if (ioflag & IO_SYNC)
290 ioflag & IO_SYNC, cred);
293 if (ioflag & IO_SYNC) {
306 ioflag & IO_SYNC, cred);
359 if (ioflag & IO_SYNC)
401 aflags = ioflag & IO_SYNC ? B_SYNC : 0;
418 ((ioflag & IO_SYNC) ? PGO_SYNCIO : 0));
ulfs_extattr.c 1439 ioflag |= IO_SYNC;
1458 ioflag |= IO_SYNC;
1528 ioflag |= IO_SYNC;
lfs_rename.c 918 error = lfs_truncate(tvp, (off_t)0, IO_SYNC, cred);
  /src/usr.sbin/makefs/ffs/
buf.h 121 #define IO_SYNC 1
  /src/sys/ufs/ffs/
ffs_extattr.c 286 if (ioflag & IO_SYNC)
287 flags |= IO_SYNC;
334 * If IO_SYNC each buffer is written synchronously. Otherwise
340 if (ioflag & IO_SYNC) {
365 IO_EXT | (ioflag&IO_SYNC), ucred);
369 } else if (resid > uio->uio_resid && (ioflag & IO_SYNC))
438 error = ffs_extread(vp, &luio, IO_EXT | IO_SYNC);
538 error = ffs_extwrite(vp, &luio, IO_EXT | IO_SYNC, cred);
ffs_inode.c 313 aflag = ioflag & IO_SYNC ? B_SYNC : 0;
333 ioflag & IO_SYNC, cred);
336 if (ioflag & IO_SYNC) {
347 (void) ffs_truncate(ovp, osize, ioflag & IO_SYNC, cred);
393 ((ioflag & IO_SYNC) ? PGO_SYNCIO : 0));
  /src/sys/fs/msdosfs/
msdosfs_vnops.c 526 if ((ap->a_ioflag & IO_SYNC) == IO_SYNC) {
656 if (error == 0 && ioflag & IO_SYNC) {
669 msdosfs_detrunc(dep, osize, ioflag & IO_SYNC, NOCRED);
672 } else if ((ioflag & IO_SYNC) == IO_SYNC)
932 error = msdosfs_detrunc(ip, (u_long)0, IO_SYNC, cnp->cn_cred);
msdosfs_denode.c 421 if (flags & IO_SYNC)
  /src/sys/ufs/chfs/
chfs_vnops.c 740 if ((ap->a_ioflag & IO_SYNC) == IO_SYNC) {
801 if ((ioflag & IO_SYNC) == 0)
835 flags = ioflag & IO_SYNC ? B_SYNC : 0;
844 aflag = ioflag & IO_SYNC ? B_SYNC : 0;
967 if (error == 0 && ioflag & IO_SYNC) {
989 (void) UFS_TRUNCATE(vp, osize, ioflag & IO_SYNC, ap->a_cred);
992 } else if (resid > uio->uio_resid && (ioflag & IO_SYNC) == IO_SYNC)
  /src/usr.sbin/makefs/msdos/
msdosfs_denode.c 273 if (flags & IO_SYNC)
  /src/sys/fs/nilfs/
nilfs_vnops.c 190 if ((ioflag & IO_SYNC) == IO_SYNC)
298 if ((resid > uio->uio_resid) && ((ioflag & IO_SYNC) == IO_SYNC))
  /src/sys/fs/nfs/client/
nfs_clbio.c 717 if (ioflag & IO_SYNC) {
886 if (ioflag & (IO_APPEND | IO_SYNC)) {
956 if (!(ioflag & IO_SYNC)) {
976 if (!(ioflag & IO_SYNC)) {
1205 * If IO_SYNC do bwrite().
1210 if ((ioflag & IO_SYNC)) {
1234 /* IO_SYNC is handled implicitly */
  /src/sys/fs/udf/
udf_vnops.c 261 if ((ioflag & IO_SYNC) == IO_SYNC) {
295 int aflag = ioflag & IO_SYNC ? B_SYNC : 0;
413 if ((resid > uio->uio_resid) && ((ioflag & IO_SYNC) == IO_SYNC))
  /src/sys/sys/
vnode.h 293 #define IO_SYNC (0x40|IO_DSYNC) /* sync I/O file integrity completion */
  /src/sys/dev/
kloader.c 643 IO_NODELOCKED | IO_SYNC, l->l_cred, &resid, NULL);
  /src/sys/kern/
vfs_vnops.c 658 ioflag |= IO_SYNC;
701 ioflag |= IO_SYNC;

Completed in 108 milliseconds

1 2