+2004-03-30 Miklos Szeredi <mszeredi@inf.bme.hu>
+
+ * new fusermount flag '-z': lazy unmount, default is not lazy
+
2004-03-25 Miklos Szeredi <mszeredi@inf.bme.hu>
* If filesystem doesn't define a statfs operation, then an
improved in the future.
==============================================================================
+Name: Fusedav
+
+Author: Lennart Poettering <mzshfrqni (at) 0pointer (dot) de>
+
+Homepage: http://0pointer.de/lennart/projects/fusedav/
+
+Description:
+
+ fusedav is a Linux userspace file system driver for mounting WebDAV
+ shares. It makes use of FUSE as userspace file system API and neon
+ as WebDAV API.
+
+==============================================================================
const char *mountprog = FUSERMOUNT_PROG;
char umount_cmd[1024];
- snprintf(umount_cmd, sizeof(umount_cmd) - 1, "%s -u -q %s", mountprog,
+ snprintf(umount_cmd, sizeof(umount_cmd) - 1, "%s -u -q -z %s", mountprog,
mountpoint);
umount_cmd[sizeof(umount_cmd) - 1] = '\0';
return 0;
}
-static int remove_mount(const char *mnt, int quiet)
+static int remove_mount(const char *mnt, int quiet, int lazy)
{
int res;
const char *mtab = _PATH_MOUNTED;
endmntent(newfp);
if(found) {
- res = umount2(mnt, 2); /* Lazy umount */
+ res = umount2(mnt, lazy ? 2 : 0);
if(res == -1) {
fprintf(stderr, "%s: failed to unmount %s: %s\n", progname, mnt,
strerror(errno));
res = add_mount(fsname, mnt, type);
unlock_mtab(mtablock);
if(res == -1) {
- umount(mnt);
+ umount2(mnt, 2); /* lazy umount */
return -1;
}
}
" -x allow other users to access the files (only for root)\n"
" -n name add 'name' as the filesystem name to mtab\n"
" -l issue large reads\n"
- " -q quiet: don't complain if unmount fails\n",
+ " -q quiet: don't complain if unmount fails\n"
+ " -z lazy unmount\n",
progname);
exit(1);
}
char *origmnt;
char *mnt;
int unmount = 0;
+ int lazy = 0;
char *commfd;
const char *fsname = NULL;
int flags = 0;
case 'u':
unmount = 1;
break;
+
+ case 'z':
+ lazy = 1;
+ break;
case 'p':
flags |= FUSE_DEFAULT_PERMISSIONS;
if(unmount) {
if(geteuid() == 0) {
int mtablock = lock_mtab();
- res = remove_mount(mnt, quiet);
+ res = remove_mount(mnt, quiet, lazy);
unlock_mtab(mtablock);
} else {
- res = umount2(mnt, 2);
+ res = umount2(mnt, lazy ? 2 : 0);
if(res == -1) {
fprintf(stderr, "%s: failed to unmount %s: %s\n", progname, mnt,
strerror(errno));