]> Zhao Yanbai Git Server - minix.git/commitdiff
Remove verbosity
authorThomas Veerman <thomas@minix3.org>
Mon, 22 Aug 2011 13:08:03 +0000 (13:08 +0000)
committerThomas Veerman <thomas@minix3.org>
Mon, 22 Aug 2011 13:08:03 +0000 (13:08 +0000)
servers/avfs/mount.c

index e43790478e6710462040d501e554f7b5f796d0a0..32f53ff55c7a55867799f03a502e849f237b31b9 100644 (file)
@@ -404,9 +404,7 @@ PUBLIC int do_umount(void)
   if ((dev = name_to_dev(TRUE /*allow_mountpt*/, fullpath)) == NO_DEV)
        return(err_code);
 
-  if ((r = unmount(dev, label)) != OK) { verbose2=0; verbose_e = NONE; return(r); }
-  verbose2 = 0;
-  verbose_e = NONE;
+  if ((r = unmount(dev, label)) != OK) return(r);
 
   /* Return the label of the mounted file system, so that the caller
    * can shut down the corresponding server process.
@@ -441,8 +439,6 @@ PUBLIC int unmount(
   /* Did we find the vmnt (i.e., was dev a mounted device)? */
   if(!vmp) return(EINVAL);
 
-  verbose2=1;
-  verbose_e = vmp->m_fs_e;
   if ((r = lock_vmnt(vmp, VMNT_EXCL)) != OK) return(r);
 
   /* See if the mounted device is busy.  Only 1 vnode using it should be