Lines Matching refs:lazy
435 static int unmount_fuse_locked(const char *mnt, int quiet, int lazy)
440 int umount_flags = (lazy ? UMOUNT_DETACH : 0) | UMOUNT_NOFOLLOW;
480 static int unmount_fuse(const char *mnt, int quiet, int lazy)
485 res = unmount_fuse_locked(mnt, quiet, lazy);
528 static int unmount_fuse(const char *mnt, int quiet, int lazy)
531 return fuse_mnt_umount(progname, mnt, mnt, lazy);
1334 " -z lazy unmount\n",
1354 static int lazy = 0;
1367 {"lazy", no_argument, NULL, 'z'},
1404 lazy = 1;
1416 if (lazy && !unmount) {
1477 umount2(mnt, MNT_DETACH); /* lazy umount */
1503 lazy = 1;
1525 res = unmount_fuse(mnt, quiet, lazy);
1527 res = umount2(mnt, lazy ? UMOUNT_DETACH : 0);