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

1 2

  /src/sys/sys/
fstypes.h 80 * Unmount uses MNT_FORCE flag.
207 #define MNT_FORCE 0x00080000 /* force unmount or readonly change */
210 #define MNT_OP_FLAGS (MNT_UPDATE|MNT_RELOAD|MNT_FORCE|MNT_GETARGS)
215 { MNT_FORCE, 1, "force unmount or readonly change" }, \
257 "\24MNT_FORCE" \
  /src/include/
mntopts.h 71 #define MOPT_FORCE { "force", 0, MNT_FORCE, 0 }
  /src/sys/miscfs/nullfs/
null_vfsops.c 195 if (mntflags & MNT_FORCE)
198 if (vrefcnt(null_rootvp) > 1 && (mntflags & MNT_FORCE) == 0)
  /src/sys/miscfs/overlay/
overlay_vfsops.c 220 if (mntflags & MNT_FORCE)
223 if (vrefcnt(overlay_rootvp) > 1 && (mntflags & MNT_FORCE) == 0)
  /src/sys/fs/efs/
efs_vfsops.c 93 if (!(mp->mnt_flag & MNT_FORCE)) {
115 if (mp->mnt_flag & MNT_FORCE) {
128 if (!(mp->mnt_flag & MNT_FORCE)) {
143 if (!(mp->mnt_flag & MNT_FORCE)) {
275 err = vflush(mp, NULL, (mntflags & MNT_FORCE) ? FORCECLOSE : 0);
  /src/sys/miscfs/fdesc/
fdesc_vfsops.c 119 if (mntflags & MNT_FORCE)
122 if (vrefcnt(rtvp) > 1 && (mntflags & MNT_FORCE) == 0)
  /src/sys/miscfs/umapfs/
umap_vfsops.c 279 if (mntflags & MNT_FORCE)
282 if (vrefcnt(rtvp) > 1 && (mntflags & MNT_FORCE) == 0)
  /src/sbin/umount/
umount.c 115 fflag = MNT_FORCE;
312 if (fflag == MNT_FORCE) {
342 if (ai != NULL && !(fflag & MNT_FORCE)) {
  /src/sys/ufs/ffs/
ffs_vfsops.c 382 mp->mnt_flag |= MNT_FORCE;
388 mp->mnt_flag &= ~MNT_FORCE;
639 if (mp->mnt_flag & MNT_FORCE)
664 error = ffs_wapbl_stop(mp, mp->mnt_flag & MNT_FORCE);
700 (mp->mnt_flag & MNT_FORCE) ? "" :
944 (mp->mnt_flag & MNT_FORCE) ? "" : ", not mounting");
945 if ((mp->mnt_flag & MNT_FORCE) == 0) {
1331 if (error && (mp->mnt_flag & MNT_FORCE) == 0) {
1364 if ((fs->fs_flags & FS_DOWAPBL) && (mp->mnt_flag & MNT_FORCE) == 0) {
1377 (mp->mnt_flag & MNT_FORCE) ? "" : ", not mounting")
    [all...]
  /src/tests/fs/puffs/
t_fuzz.c 243 rump_sys_unmount("/mnt", MNT_FORCE);
  /src/sys/kern/
vfs_mount.c 842 mp->mnt_flag = flags & (MNT_BASIC_FLAGS | MNT_FORCE | MNT_IGNORE);
921 if (VFS_UNMOUNT(mp, MNT_FORCE) != 0)
976 if (((mp->mnt_flag & MNT_RDONLY) == 0) && ((flags & MNT_FORCE) == 0)) {
979 if (error == 0 || (flags & MNT_FORCE)) {
1092 if ((error = dounmount(mp, MNT_FORCE, l)) == 0) {
1128 if ((error = dounmount(mp, force ? MNT_FORCE : 0, l)) == 0) {
  /src/sys/fs/tmpfs/
tmpfs_vfsops.c 162 if ((mp->mnt_flag & MNT_FORCE))
253 if (mntflags & MNT_FORCE)
  /src/sys/secmodel/keylock/
secmodel_keylock.c 221 MNT_RELOAD | MNT_FORCE | MNT_UPDATE))
  /src/usr.sbin/autofs/
automount.c 59 flags |= MNT_FORCE;
  /src/sys/miscfs/kernfs/
kernfs_vfsops.c 170 if (mntflags & MNT_FORCE)
  /src/sys/secmodel/securelevel/
secmodel_securelevel.c 314 MNT_FORCE | MNT_UPDATE))
  /src/sys/ufs/mfs/
mfs_vfsops.c 298 if (mp->mnt_flag & MNT_FORCE)
  /src/sys/fs/msdosfs/
msdosfs_vfsops.c 333 if (mp->mnt_flag & MNT_FORCE)
442 msdosfs_unmount(mp, MNT_FORCE);
927 if (mntflags & MNT_FORCE)
  /src/sys/fs/nilfs/
nilfs_vfsops.c 952 nilfs_unmount(mp, MNT_FORCE);
960 nilfs_unmount(mp, MNT_FORCE);
991 flags = (mntflags & MNT_FORCE) ? FORCECLOSE : 0;
  /src/sys/nfs/
nfs_vfsops.c 838 if (mntflags & MNT_FORCE) {
864 if ((mntflags & MNT_FORCE) == 0 && vrefcnt(vp) > 1) {
916 if (mntflags & MNT_FORCE) {
  /src/sys/fs/autofs/
autofs_vfsops.c 193 if (mntflags & MNT_FORCE)
  /src/sys/fs/filecorefs/
filecore_vfsops.c 443 if (mntflags & MNT_FORCE)
  /src/sys/fs/hfs/
hfs_vfsops.c 421 if (mntflags & MNT_FORCE)
  /src/sys/fs/ptyfs/
ptyfs_vfsops.c 357 if (mntflags & MNT_FORCE)
  /src/sys/fs/sysvbfs/
sysvbfs_vfsops.c 227 mntflags & MNT_FORCE ? FORCECLOSE : 0)) != 0)

Completed in 57 milliseconds

1 2