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

1 2

  /src/external/bsd/am-utils/dist/conf/umount/
umount_bsd44.c 59 error = unmount(mntdir, 0);
67 plog(XLOG_WARNING, "unmount: %s is not mounted", mntdir);
73 dlog("%s: unmount: %m", mntdir);
92 dlog("%s: unmount: %m", mntdir);
101 /* force unmount, no questions asked, without touching mnttab file */
108 plog(XLOG_INFO, "umount2_fs: trying unmount/forced on %s", mntdir);
109 error = unmount(mntdir, MNT2_GEN_OPT_FORCE);
113 plog(XLOG_WARNING, "%s: unmount/force: %m", mntdir);
115 dlog("%s: unmount/force: OK", mntdir);
  /src/etc/rc.d/
mountall 33 # Unmount file systems noted in fstab.
36 # Unmount ZFS file systems.
39 zfs unmount -a
  /src/external/bsd/am-utils/include/
aux_conf.h 31 #define UNMOUNT_TRAP(mnt) unmount(mnt->mnt_dir)
  /src/external/cddl/osnet/include/
mnttab.h 49 #define umount2(p, f) unmount(p, f)
  /src/tests/fs/common/
fstest_zfs.c 131 unmount(path, flags);
  /src/external/cddl/osnet/lib/libzfs/
zmount.c 72 return unmount(spec, mflag);
  /src/usr.sbin/fusermount/
fusermount.c 59 /* unmount mount point(s) */
67 if (unmount(argv[i], 0) < 0) {
68 warn("can't unmount `%s'", argv[i]);
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/freebsd/sys/
mount.d 314 int unmount(const char*, int);
342 pragma(mangle, "unmount@@FBSD_1.0") int unmount(const char*, int);
  /src/distrib/alpha/rz25dist/
Makefile 65 unmount-fs:
69 diskimage.gz: mount-fs build-fs unmount-fs
101 /bin/rm -f mount-fs build-fs unmount-fs
  /src/external/bsd/kyua-testers/dist/
fs.c 57 /// Specifies if a real unmount(2) is available.
60 /// versions of the unmount code unconditionally. This is a way to prevent
75 # error "umount(8) detected when unmount(2) is also available"
81 /// Fake unmount(2) function for systems without it.
84 /// regardless of whether they actually have an unmount(2) or not.
87 /// \param unused_flags The flags to the unmount(2) call.
91 unmount(const char* KYUA_DEFS_UNUSED_PARAM(path), function
204 /// \param path The location to unmount.
214 kyua_error_warn(error, "Cannot unmount %s", path);
350 /// Unmounts a file system using unmount(2)
    [all...]
  /src/share/examples/puffs/pgfs/
mount.c 131 PUFFSOP_SETFSNOP(pops, unmount);
  /src/tests/fs/puffs/h_dtfs/
dtfs.c 185 PUFFSOP_SET(pops, dtfs, fs, unmount);
  /src/usr.sbin/autofs/
automount.c 60 error = unmount(sb->f_mntonname, flags);
62 log_warn("cannot unmount %s", sb->f_mntonname);
autounmountd.c 165 error = unmount(mountpoint, 0);
168 log_debugx("cannot unmount %s: %s",
171 log_warn("cannot unmount %s", mountpoint);
  /src/usr.sbin/puffs/mount_9p/
ninepuffs.c 225 PUFFSOP_SET(pops, puffs9p, fs, unmount);
  /src/lib/libperfuse/
perfuse.c 493 PUFFSOP_SET(pops, perfuse, fs, unmount);
679 * Normal exit after unmount
698 return unmount(ps->ps_target, MNT_FORCE);
  /src/usr.bin/eject/
eject.c 325 /* Unmount all filesystems attached to dev. */
361 unmount(mounts[i].f_mntonname, 0) == -1)
362 err(1, "unmount: %s", mounts[i].f_mntonname);
  /src/sys/fs/puffs/
puffs_vfsops.c 252 * Also, in the event of "b", unmount -f should be used,
339 PUFFS_MSG_VARS(vfs, unmount);
352 * root vnode does not get flushed until unmount. The
355 * should userspace unmount decide it doesn't want to
371 PUFFS_MSG_ALLOC(vfs, unmount);
377 PUFFS_MSG_RELEASE(unmount);
  /src/sbin/umount/
umount.c 294 (void)printf("Trying unmount program %s%s\n",
328 (void)printf("(No separate unmount program.)\n");
336 if (unmount(mntpt, fflag) == -1) {
  /src/sys/sys/
mount.h 386 void vfs_shutdown(void); /* unmount and sync file systems */
388 bool vfs_unmountall(struct lwp *); /* unmount file systems */
494 int unmount(const char *, int);
  /src/usr.sbin/puffs/mount_psshfs/
psshfs.c 251 PUFFSOP_SET(pops, psshfs, fs, unmount);
  /src/lib/libc/sys/
Makefile.inc 162 umask.S undelete.S unlink.S unlinkat.S unmount.S __utimes50.S \
371 MLINKS+=mount.2 unmount.2
  /src/sbin/mount_portal/
puffs_portal.c 437 PUFFSOP_SETFSNOP(pops, unmount);
  /src/usr.sbin/puffs/mount_sysctlfs/
sysctlfs.c 279 PUFFSOP_SETFSNOP(pops, unmount);
  /src/external/bsd/atf/dist/tools/
fs.cpp 167 // We want to descend into a mount point to unmount anything that is
170 // first mount point, and after that point we only scan and unmount.
249 // At least, FreeBSD's unmount(2) requires the path to be absolute.
257 if (unmount(abs_path.c_str(), 0) == -1) {
264 ")", "unmount(2) failed", errno);

Completed in 29 milliseconds

1 2