]> Zhao Yanbai Git Server - minix.git/commitdiff
Unverbose mount
authorThomas Veerman <thomas@minix3.org>
Fri, 26 Aug 2011 15:43:30 +0000 (15:43 +0000)
committerThomas Veerman <thomas@minix3.org>
Fri, 26 Aug 2011 15:49:37 +0000 (15:49 +0000)
servers/avfs/glo.h
servers/avfs/main.c
servers/avfs/mount.c

index df8d772cdfc4c58104f01becd38b244765596e8e..ed50c1b5a1272b10f81ca1eb5fbd7e8535b3fd05 100644 (file)
@@ -37,8 +37,6 @@ EXTERN struct worker_thread *self;
 EXTERN endpoint_t receive_from;/* endpoint with pending reply */
 EXTERN int force_sync;         /* toggle forced synchronous communication */
 EXTERN int verbose;
-EXTERN int verbose2;
-EXTERN endpoint_t verbose_e;
 EXTERN int deadlock_resolving;
 EXTERN mutex_t exec_lock;
 EXTERN mutex_t bsf_lock;/* Global lock for access to block special files */
index 04be3bd75168174f1a1d855046f4a15de9046391..2e548b80b684235d12853b8a8dc96ca878be07d8 100644 (file)
@@ -79,8 +79,6 @@ PUBLIC int main(void)
 
   printf("Started AVFS\n");
   verbose = 0;
-  verbose2 = 0;
-  verbose_e = NONE;
 
   /* This is the main loop that gets work, processes it, and sends replies. */
   while (TRUE) {
@@ -387,10 +385,6 @@ PRIVATE void *do_work(void *arg)
 
   lock_proc(fp, 0); /* This proc is busy */
 
-  if (verbose2 && who_e == verbose_e) {
-       printf("Doing call_nr = %d for %d\n", call_nr, who_e);
-  }
-
   if (call_nr == MAPDRIVER) {
        error = do_mapdriver();
   } else if (call_nr == COMMON_GETSYSINFO) {
index 46914724e631d41651bef9af078fba31934cd2ad..64f42407f4a2f1af6556a267be236d39979aebfa 100644 (file)
@@ -152,12 +152,7 @@ PUBLIC int do_mount()
        return(err_code);
 
   /* Do the actual job */
-  verbose2 = 1;
-  verbose_e = fs_e;
-  r = mount_fs(dev, fullpath, fs_e, rdonly, mount_label);
-  verbose2 = 0;
-  verbose_e = NONE;
-  return(r);
+  return mount_fs(dev, fullpath, fs_e, rdonly, mount_label);
 }