| /src/sys/ufs/ffs/ |
| ffs_vnops.c | 252 uflags = UPDATE_CLOSE | ((flags & FSYNC_WAIT) ? UPDATE_WAIT : 0); 328 ((ap->a_flags & FSYNC_WAIT) ? PGO_SYNCIO : 0)); 354 ((ap->a_flags & FSYNC_WAIT) ? UPDATE_WAIT : 0)); 389 if (ap->a_flags & FSYNC_WAIT) { 397 (((ap->a_flags & (FSYNC_WAIT | FSYNC_DATAONLY)) == FSYNC_WAIT) 423 uflags = UPDATE_CLOSE | ((flags & FSYNC_WAIT) ? UPDATE_WAIT : 0); 438 if ((flags & FSYNC_WAIT)) 478 if ((flags & FSYNC_WAIT) != 0) {
|
| ffs_vfsops.c | 1878 error = VOP_FSYNC(ump->um_devvp, l->l_cred, FSYNC_WAIT, 0, 0); 2016 (waitfor == MNT_WAIT ? FSYNC_WAIT : 0), 0, 0); 2038 flags |= FSYNC_WAIT; 2521 if ((flags & FSYNC_WAIT) != 0) 2550 if ((flags & FSYNC_WAIT) != 0) {
|
| ffs_snapshot.c | 246 error = VOP_FSYNC(vp, l->l_cred, FSYNC_WAIT, 0, 0); 330 error = VOP_FSYNC(vp, l->l_cred, FSYNC_WAIT, 0, 0);
|
| /src/external/cddl/osnet/sys/sys/ |
| vnode.h | 296 error = VOP_FSYNC(vp, cr, FSYNC_WAIT, 0, 0);
|
| /src/sys/fs/sysvbfs/ |
| sysvbfs_vfsops.c | 306 err = VOP_FSYNC(vp, cred, FSYNC_WAIT, 0, 0);
|
| sysvbfs_vnops.c | 233 VOP_FSYNC(a->a_vp, a->a_cred, FSYNC_WAIT, 0, 0); 875 wait = (ap->a_flags & FSYNC_WAIT) != 0;
|
| /src/sys/fs/v7fs/ |
| v7fs_vfsops.c | 406 err = VOP_FSYNC(vp, cred, FSYNC_WAIT, 0, 0);
|
| v7fs_vnops.c | 677 wait = (a->a_flags & FSYNC_WAIT);
|
| /src/sys/sys/ |
| vnode.h | 406 #define FSYNC_WAIT 0x0001 /* fsync: wait for completion */
|
| /src/sys/fs/msdosfs/ |
| msdosfs_vfsops.c | 1064 waitfor == MNT_WAIT ? FSYNC_WAIT : 0, 0, 0)) != 0) 1075 waitfor == MNT_WAIT ? FSYNC_WAIT : 0, 0, 0)) != 0)
|
| msdosfs_vnops.c | 1411 wait = (ap->a_flags & FSYNC_WAIT) != 0;
|
| /src/sys/fs/udf/ |
| udf_vfsops.c | 494 udf_sync(mp, FSYNC_WAIT, NOCRED);
|
| udf_subr.c | 1859 error = vflushbuf(bitmap_node->vnode, FSYNC_WAIT); 1862 FSCRED, FSYNC_WAIT, 0, 0); 2883 error = vflushbuf(ump->vat_node->vnode, FSYNC_WAIT); 2887 FSCRED, FSYNC_WAIT, 0, 0); 3863 FSCRED, FSYNC_WAIT, 0, 0); 3961 error1 = udf_writeout_node(ump->metadata_node, FSYNC_WAIT); 3970 error2 = udf_writeout_node(ump->metadatamirror_node, FSYNC_WAIT); 6272 return VOP_FSYNC(vp, FSCRED, FSYNC_WAIT, 0,0);
|
| udf_vnops.c | 2059 (ap->a_flags & FSYNC_WAIT) ? "wait":"no wait", 2063 wait = (ap->a_flags & FSYNC_WAIT) ? UPDATE_WAIT : 0;
|
| /src/sys/ufs/ext2fs/ |
| ext2fs_vfsops.c | 992 waitfor == MNT_WAIT ? FSYNC_WAIT : 0, 0, 0); 1004 waitfor == MNT_WAIT ? FSYNC_WAIT : 0, 0, 0)) != 0)
|
| ext2fs_vnops.c | 920 wait = (ap->a_flags & FSYNC_WAIT) != 0;
|
| /src/sys/kern/ |
| sys_aio.c | 1087 FSYNC_WAIT | FSYNC_DATAONLY, 0, 0); 1089 error = VOP_FSYNC(vp, fp->f_cred, FSYNC_WAIT, 0, 0);
|
| vfs_subr.c | 216 error = VOP_FSYNC(vp, cred, FSYNC_WAIT|FSYNC_RECLAIM, 0, 0); 342 sync = (flags & FSYNC_WAIT) != 0;
|
| vfs_syscalls.c | 4261 error = VOP_FSYNC(vp, fp->f_cred, FSYNC_WAIT, 0, 0); 4307 nflags = FSYNC_DATAONLY | FSYNC_WAIT; 4309 nflags = FSYNC_WAIT; 4357 error = VOP_FSYNC(vp, fp->f_cred, FSYNC_WAIT|FSYNC_DATAONLY, 0, 0);
|
| vfs_mount.c | 634 error = VOP_FSYNC(vp, curlwp->l_cred, FSYNC_WAIT, 0, 0);
|
| /src/sys/nfs/ |
| nfs_vfsops.c | 983 waitfor == MNT_WAIT ? FSYNC_WAIT : 0, 0, 0);
|
| /src/sys/fs/puffs/ |
| puffs_vfsops.c | 537 fsyncwait = (waitfor == MNT_WAIT) ? FSYNC_WAIT : 0;
|
| puffs_vnops.c | 1688 if (ap->a_flags & FSYNC_WAIT) { 1696 (ap->a_flags & FSYNC_WAIT) == FSYNC_WAIT); 1710 dofaf = (ap->a_flags & FSYNC_WAIT) == 0 || ap->a_flags == FSYNC_LAZY;
|
| /src/sys/ufs/lfs/ |
| lfs_vnops.c | 429 wait = (ap->a_flags & FSYNC_WAIT); 790 if ((error = VOP_FSYNC(*vpp, NOCRED, FSYNC_WAIT, 0, 0)) != 0) {
|
| /src/sys/fs/nilfs/ |
| nilfs_vnops.c | 1495 (ap->a_flags & FSYNC_WAIT) ? "wait":"no wait",
|