fusermount fix
authorMiklos Szeredi <miklos@szeredi.hu>
Tue, 30 Mar 2004 07:24:29 +0000 (07:24 +0000)
committerMiklos Szeredi <miklos@szeredi.hu>
Tue, 30 Mar 2004 07:24:29 +0000 (07:24 +0000)
ChangeLog
Filesystems
lib/mount.c
util/fusermount.c

index 32a32aea74b3fb721931a061cdee4b2ff6198cc3..6d0b2b76774b5c9c614ad0bae9e90c9f14bd5034 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+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
index 763c6a5b68612d7eff1d730f529df77e505b52ff..eecf82e70bc88a86a4267a0642fde4d6e307b1f1 100644 (file)
@@ -158,3 +158,16 @@ Description:
   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.
+
+==============================================================================
index 7b6720353bcfd2882017530663a0da97b2dfa8ec..53162a519f21864a2fba51a3565753cec5c8fa7c 100644 (file)
@@ -71,7 +71,7 @@ void fuse_unmount(const char *mountpoint)
     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';
index 6d27372b4be68c9bb25f17f75d174e38c1f5dc91..9af24d103cd391b4cef258bdff6b078318bc4558 100644 (file)
@@ -126,7 +126,7 @@ static int add_mount(const char *fsname, const char *mnt, const char *type)
     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;
@@ -186,7 +186,7 @@ static int remove_mount(const char *mnt, int quiet)
     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));
@@ -398,7 +398,7 @@ static int mount_fuse(const char *mnt, int flags, const char *fsname)
         res = add_mount(fsname, mnt, type);
         unlock_mtab(mtablock);
         if(res == -1) {
-            umount(mnt);
+            umount2(mnt, 2); /* lazy umount */
             return -1;
         }
     }
@@ -481,7 +481,8 @@ static void usage()
             " -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);
 }
@@ -494,6 +495,7 @@ int main(int argc, char *argv[])
     char *origmnt;
     char *mnt;
     int unmount = 0;
+    int lazy = 0;
     char *commfd;
     const char *fsname = NULL;
     int flags = 0;
@@ -518,6 +520,10 @@ int main(int argc, char *argv[])
         case 'u':
             unmount = 1;
             break;
+
+        case 'z':
+            lazy = 1;
+            break;
             
         case 'p':
             flags |= FUSE_DEFAULT_PERMISSIONS;
@@ -576,10 +582,10 @@ int main(int argc, char *argv[])
     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));