/src/tests/fs/common/ |
fstest_nfs.c | 288 dounmount(const atf_tc_t *tc, const char *path, int flags) function in typeref:typename:int 321 return dounmount(tc, path, flags); 328 return dounmount(tc, path, flags);
|
/src/tests/lib/librumphijack/ |
t_vfs.sh | 42 dounmount() function 51 dounmount 84 dounmount ${mntdir}
|
/src/sys/ufs/mfs/ |
mfs_vfsops.c | 402 if (dounmount(mp, 0, curlwp) != 0) {
|
/src/sys/kern/ |
vfs_mount.c | 936 * => Caller hold reference to the mount, explicitly for dounmount(). 939 dounmount(struct mount *mp, int flags, struct lwp *l) function in typeref:typename:int 1092 if ((error = dounmount(mp, MNT_FORCE, l)) == 0) { 1128 if ((error = dounmount(mp, force ? MNT_FORCE : 0, l)) == 0) {
|
vfs_syscalls.c | 727 error = dounmount(mp, SCARG(uap, flags), l);
|
/src/sys/sys/ |
mount.h | 452 int dounmount(struct mount *, int, struct lwp *);
|
/src/sys/fs/puffs/ |
puffs_msgif.c | 1143 * and we are just another thread. dounmount() makes internally 1148 (void)dounmount(mp, MNT_FORCE, curlwp); 1178 * dounmount(), since it might be possible that that particular 1199 (void)dounmount(mp, MNT_FORCE, curlwp);
|
/src/sys/coda/ |
coda_psdev.c | 243 err = dounmount(mi->mi_vfsp, flag, l);
|