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

/macosx-10.5.8/xnu-1228.15.4/bsd/miscfs/fdesc/
H A Dfdesc_vfsops.c143 if ( (error = vflush(mp, rvp, flags|SKIPSYSTEM)) && !force )
/macosx-10.5.8/xnu-1228.15.4/bsd/miscfs/nullfs/
H A Dnull_vfsops.c229 if ( (error = vflush(mp, nullm_rootvp, flags)) && !force )
/macosx-10.5.8/xnu-1228.15.4/bsd/miscfs/synthfs/
H A Dsynthfs_vfsops.c234 retval = vflush(mp, root_vp, (mntflags & MNT_FORCE) ? FORCECLOSE : 0);
/macosx-10.5.8/xnu-1228.15.4/bsd/miscfs/devfs/
H A Ddevfs_vfsops.c236 error = vflush(mp, NULLVP, flags);
/macosx-10.5.8/xnu-1228.15.4/bsd/miscfs/union/
H A Dunion_vfsops.c358 for (freeing = 0; vflush(mp, um_rootvp, flags) != 0;) {
/macosx-10.5.8/xnu-1228.15.4/bsd/ufs/ffs/
H A Dffs_vfsops.c842 * extra reference when doing the intial vflush.
860 error = vflush(mp, rootvp, SKIPSYSTEM|flags);
883 * Here we fall through to vflush again to ensure
888 error = vflush(mp, NULLVP, SKIPSWAP|flags);
889 error = vflush(mp, NULLVP, flags);
/macosx-10.5.8/xnu-1228.15.4/bsd/sys/
H A Dvnode.h418 #define SKIPSYSTEM 0x0001 /* vflush: skip vnodes marked VSYSTEM */
419 #define FORCECLOSE 0x0002 /* vflush: force file closeure */
420 #define WRITECLOSE 0x0004 /* vflush: only close writeable files */
421 #define SKIPSWAP 0x0008 /* vflush: skip vnodes marked VSWAP */
422 #define SKIPROOT 0x0010 /* vflush: skip root vnodes marked VROOT */
611 int vflush(struct mount *mp, struct vnode *skipvp, int flags);
/macosx-10.5.8/xnu-1228.15.4/bsd/nfs/
H A Dnfs_vfsops.c1838 * - Call vflush() to clear out vnodes for this file system,
1848 * vflush will check for busy vnodes on mountpoint.
1852 error = vflush(mp, vp, SKIPSWAP | flags);
1854 error = vflush(mp, NULLVP, flags); /* locks vp in the process */
1858 error = vflush(mp, vp, flags);
1872 vflush(mp, NULLVP, FORCECLOSE);
/macosx-10.5.8/xnu-1228.15.4/bsd/hfs/
H A Dhfs_vfsops.c1684 (void) vflush(mp, NULLVP, FORCECLOSE);
2754 * extra reference when doing the intial vflush.
2770 error = vflush(mp, skipvp, SKIPSYSTEM | SKIPSWAP | flags);
2774 error = vflush(mp, skipvp, SKIPSYSTEM | flags);
2799 error = vflush(mp, NULLVP, SKIPSYSTEM | flags);
/macosx-10.5.8/xnu-1228.15.4/bsd/isofs/cd9660/
H A Dcd9660_vfsops.c718 if ( (error = vflush(mp, NULLVP, flags)) && !force )
/macosx-10.5.8/xnu-1228.15.4/bsd/vfs/
H A Dvfs_subr.c1720 vflush(struct mount *mp, struct vnode *skipvp, int flags) function
1854 vprint("vflush: busy vnode", vp);
H A Dvfs_syscalls.c1099 error = vflush(mp, NULLVP, SKIPSWAP | SKIPSYSTEM | SKIPROOT | lflags);

Completed in 127 milliseconds