Searched refs:vflush (Results 1 - 13 of 13) sorted by relevance

/macosx-10.10/xnu-2782.1.97/bsd/miscfs/mockfs/
H A Dmockfs_vfsops.c169 rvalue = vflush(mp, NULL, vflush_flags);
/macosx-10.10/msdosfs-209.1.1/msdosfs.kextproj/msdosfs.kmodproj/
H A Dmsdosfs_vfsops.c245 /* � Is vflush() sufficient? Is there more we should flush out? */
249 error = vflush(mp, NULLVP, flags);
916 (void) vflush(mp, NULLVP, SKIPSYSTEM|FORCECLOSE);
920 (void) vflush(mp, NULLVP, FORCECLOSE);
997 error = vflush(mp, NULLVP, flags);
1012 (void) vflush(mp, NULLVP, FORCECLOSE);
/macosx-10.10/cddafs-253/
H A DAppleCDDAFileSystemVFSOps.c403 error = vflush ( mountPtr, rootVNodePtr, flags );
407 DebugLog ( ( "CDDA_Unmount: Returning error = %d after vflush.\n", error ) );
415 error = vflush ( mountPtr, NULLVP, FORCECLOSE );
419 DebugLog ( ( "CDDA_Unmount: Returning error = %d after vflush.\n", error ) );
/macosx-10.10/xnu-2782.1.97/bsd/miscfs/devfs/
H A Ddevfs_vfsops.c237 error = vflush(mp, NULLVP, flags);
/macosx-10.10/webdavfs-367/webdav_fs.kextproj/webdav_fs.kmodproj/
H A Dwebdav_vfsops.c468 error = vflush(mp, rootvp, flags);
492 vflush(mp, NULLVP, FORCECLOSE);
/macosx-10.10/autofs-246/autofs_kext/
H A Dauto_vfsops.c832 * The VFS layer has already done a vflush() that checked
845 * a usecount on it, so the vflush() didn't give us a
852 * that vnode is *not* the root vnode, a vflush()
855 * vflush() is done. Furthermore, if it *is* being
856 * done on the root vnode, the vflush() won't help.
871 * and then do a vflush() waiting for everything
892 error = vflush(mp, rvp, 0);
980 * The root vnode will be recycled in vflush() when there are
983 vflush(mp, NULLVP, 0);
/macosx-10.10/ntfs-84/kext/
H A Dntfs_vfsops.c1181 * unmounted. (VSYSTEM vnodes are skipped during vflush()).)
1233 * unmounted. (VSYSTEM vnodes are skipped during vflush()).)
1288 * unmounted. (VSYSTEM vnodes are skipped during vflush()).)
3599 err = vflush(mp, NULLVP, vflags|SKIPROOT|SKIPSYSTEM);
3601 ntfs_warning(mp, "Cannot unmount (vflush() returned error "
3688 (void)vflush(mp, NULLVP, vflags & ~FORCECLOSE);
3707 * everything away that is not busy but if anything is busy vflush()
3714 err = vflush(mp, NULLVP, vflags);
3718 (void)vflush(mp, NULLVP, FORCECLOSE);
/macosx-10.10/xnu-2782.1.97/bsd/hfs/
H A Dhfs_vfsops.c2190 (void) vflush(mp, NULLVP, FORCECLOSE);
3443 * extra reference when doing the intial vflush.
3459 error = vflush(mp, skipvp, SKIPSYSTEM | SKIPSWAP | flags);
3463 error = vflush(mp, skipvp, SKIPSYSTEM | flags);
3493 error = vflush(mp, NULLVP, SKIPSYSTEM | flags);
/macosx-10.10/xnu-2782.1.97/bsd/sys/
H A Dvnode.h721 #define SKIPSYSTEM 0x0001 /* vflush: skip vnodes marked VSYSTEM */
722 #define FORCECLOSE 0x0002 /* vflush: force file closeure */
723 #define WRITECLOSE 0x0004 /* vflush: only close writeable files */
724 #define SKIPSWAP 0x0008 /* vflush: skip vnodes marked VSWAP */
725 #define SKIPROOT 0x0010 /* vflush: skip root vnodes marked VROOT */
1326 @function vflush
1342 int vflush(struct mount *mp, struct vnode *skipvp, int flags);
/macosx-10.10/smb-759.0/kernel/smbfs/
H A Dsmbfs_vfsops.c1158 error = vflush(mp, vp, (mntflags & MNT_FORCE) ? FORCECLOSE : 0);
1175 (void)vflush(mp, NULLVP, FORCECLOSE);
/macosx-10.10/xnu-2782.1.97/bsd/nfs/
H A Dnfs_vfsops.c4156 * - Call vflush() to clear out vnodes for this file system,
4165 * vflush will check for busy vnodes on mountpoint.
4169 error = vflush(mp, vp, SKIPSWAP | flags);
4171 error = vflush(mp, NULLVP, flags); /* locks vp in the process */
4176 error = vflush(mp, vp, flags);
4197 vflush(mp, NULLVP, FORCECLOSE);
/macosx-10.10/xnu-2782.1.97/bsd/vfs/
H A Dvfs_subr.c1955 vflush(struct mount *mp, struct vnode *skipvp, int flags) function
2097 vprint("vflush: busy vnode", vp);
H A Dvfs_syscalls.c1917 error = vflush(mp, NULLVP, SKIPSWAP | SKIPSYSTEM | SKIPROOT | lflags);

Completed in 300 milliseconds