]> Zhao Yanbai Git Server - minix.git/commitdiff
Removed verbose statements from vfs and mfs
authorBen Gras <ben@minix3.org>
Fri, 22 Dec 2006 11:54:42 +0000 (11:54 +0000)
committerBen Gras <ben@minix3.org>
Fri, 22 Dec 2006 11:54:42 +0000 (11:54 +0000)
servers/mfs/main.c
servers/mfs/mount.c
servers/mfs/time.c
servers/vfs/exec.c
servers/vfs/main.c
servers/vfs/mount.c
servers/vfs/open.c

index 5da82d7f02341d9aa7214b57fb8b835916616ba8..9a61e637a9429c9ebbf4ac7eb75104d18b59fb79 100644 (file)
@@ -33,7 +33,6 @@ PUBLIC int main(void)
   /* Initialize the server, then go to work. */
   init_server();       
 
-  printf("\nMFS(%d): STARTED: Logging in to VFS\n", SELF_E);
   fs_m_in.m_type = FS_READY;
 
   if (sendrec(FS_PROC_NR, &fs_m_in) != OK) {
@@ -50,7 +49,6 @@ PUBLIC int main(void)
       reply(FS_PROC_NR, &fs_m_out);
       if (fs_m_out.m_type != OK) return -1;
   }
-  printf("MFS(%d): Login + Readsuper OK\n", SELF_E);
 
 
   for (;;) {
index ae19bf4073ff6b60b6474d4062f622b0d9d86e0a..c75fdc9a6029cb07be505029a824513ca71615f7 100644 (file)
@@ -76,9 +76,6 @@ printf("MFS(%d)readsuper read_super() ERROR\n", SELF_E);
   fs_m_out.RES_MAXSIZE = sp->s_max_size;
   fs_m_out.RES_BLOCKSIZE = sp->s_block_size;
   
-if (r == OK) 
-       printf("MFS(%d)readsuper DEV: %d driver_e: %d BOOTT: %d\n", 
-               SELF_E, fs_dev, fs_m_in.REQ_DRIVER_E, boottime);  
   return r;
 }
 
index 32785d20cf78082b2d000809db963bc73539d4b1..9a4f30ee6bf6fdcc259b95a01a4e36978e972ce4 100644 (file)
@@ -50,7 +50,6 @@ printf("MFS(%d) get_inode by fs_utime() failed\n", SELF_E);
 PUBLIC int fs_stime()
 {
   boottime = fs_m_in.REQ_BOOTTIME;
-printf("MFS(%d) boottime: %d\n", SELF_E, boottime);    
   return OK;
 }
 
index 6b2174a6f8950d4262913541a73a594d25e235fc..0cfc72dc42b08a8830ebc4734427f460b26e78be 100644 (file)
@@ -158,7 +158,7 @@ vir_bytes frame_len;
             
            /* Issue request */
            if ((r = req_access(&access_req)) != OK) {
-                printf("VFSexec: access failed\n");            
+                printf("VFSexec: access failed for %s\n", progname);
                return r;
            }
         }
index 200e48d1b7b82cc90015af57b757fe4fbe283d93..f7dac46df945fc28c324e999794fbf9744d31c73 100644 (file)
@@ -287,7 +287,6 @@ PRIVATE void init_root()
   
   /* Wait FS login message */
   if (last_login_fs_e != ROOT_FS_E) {
-         printf("VFS: Waiting for login from FS_e %d\n", ROOT_FS_E);
          /* Wait FS login message */
          if (receive(ROOT_FS_E, &m) != OK) {
                  printf("VFS: Error receiving login request from FS_e %d\n", 
@@ -299,7 +298,6 @@ PRIVATE void init_root()
                                  ROOT_FS_E);
                  panic(__FILE__, "Error receiving login request from root filesystem\n", ROOT_FS_E);
          }
-         printf("VFS: FS_e %d logged in\n", ROOT_FS_E);
   }
   last_login_fs_e = 0;
   
index 5639da98d446bef77e78a3b7cf8ea2bb2bd41d3d..8d26a958c1e72b480e4b8fae207b405916434c73 100644 (file)
@@ -43,7 +43,6 @@ PUBLIC int do_fslogin()
   /* Login before mount request */
   if ((unsigned long)mount_m_in.m1_p3 != who_e) {
       last_login_fs_e = who_e;
-printf("VFS: FS_e %d logged in\n", last_login_fs_e); 
       return SUSPEND;
   }
   /* Login after a suspended mount */
@@ -62,7 +61,6 @@ printf("VFS: FS_e %d logged in\n", last_login_fs_e);
       super_user = (fp->fp_effuid == SU_UID ? TRUE : FALSE);   /* su? */
       
       
-printf("VFS: FS_e %d logged in. Mount WAKEN UP\n", (unsigned int)m_in.m1_p3);
       return do_mount();
   }
 }
@@ -119,7 +117,6 @@ PRIVATE int mount_fs(endpoint_t fs_e)
   /* If FS not yet logged in, save message and suspend mount */
   if (last_login_fs_e != fs_e) {
       mount_m_in = m_in; 
-      printf("VFS: FS_e %d not yet logged in. Mount SUSPENDED\n", fs_e); 
       return SUSPEND;
   }
   
@@ -150,7 +147,6 @@ PRIVATE int mount_fs(endpoint_t fs_e)
   for (bspec = &vnode[0]; bspec < &vnode[NR_VNODES]; ++bspec) {
       if (bspec->v_count > 0 && bspec->v_sdev == dev) {
           /* Found, sync the buffer cache */
-printf("VFSmount: minor is opened as a block spec file, sync cache...\n");          
           req_sync(bspec->v_fs_e);          
           break;
           /* Note: there are probably some blocks in the FS process' buffer
@@ -286,9 +282,6 @@ printf("VFSmount: minor is opened as a block spec file, sync cache...\n");
         return(EINVAL);
   }
 
-printf("VFSmount: FS_e: %d mp: %s D_e: %d\n", fs_e, user_fullpath,
-                dp->dmap_driver); 
-
   /* Request for reading superblock and root inode */
   sreq.fs_e = fs_e;
   sreq.readonly = m_in.rd_only;
@@ -302,7 +295,7 @@ printf("VFSmount: FS_e: %d mp: %s D_e: %d\n", fs_e, user_fullpath,
  
   /* Issue request */
   if ((r = req_readsuper(&sreq, &sres)) != OK) {
-printf("VFSmount: reading superb error dev: %d\n", dev);          
+      printf("VFSmount: reading superblock error dev: %d\n", dev);          
       dev_close(dev);
       return r;
   }
@@ -587,8 +580,6 @@ endpoint_t fs_e;
       return -1;
   }
 
-printf("VFSfs_exit: Bringing down FS endp: %d (pid: %d)\n", fs_e, fs_pid);  
-
   /* Ask RS to stop process */
   m.RS_PID = fs_pid;
   if (OK != (r = _taskcall(RS_PROC_NR, RS_DOWN, &m))) {
index a8966d592c1ced92494d7a7e3eb7a84c07efe683..1489e5c9694ab1069624661fe0d20e94b5919b83 100644 (file)
@@ -184,7 +184,6 @@ PRIVATE int common_open(register int oflags, mode_t omode)
           /* Check whether the device is mounted or not */
           found = 0;
           if (r == OK) {
-printf("VFS: opening block spec %d, handled by ", vp->v_sdev); 
               for (vmp = &vmnt[0]; vmp < &vmnt[NR_MNTS]; ++vmp) {
                   if (vmp->m_dev == vp->v_sdev) {
                       found = 1;
@@ -194,12 +193,10 @@ printf("VFS: opening block spec %d, handled by ", vp->v_sdev);
              
               /* Who is going to be responsible for this device? */
               if (found) {
-printf("the FS of the mounted partition...\n"); 
                   vp->v_bfs_e = vmp->m_fs_e;
                   vp->v_blocksize - vmp->m_block_size;
               }
               else { /* To be handled in the root FS proc if not mounted */ 
-printf("the root FS...\n");
                   vp->v_bfs_e = ROOT_FS_E;
                   vp->v_blocksize = _MIN_BLOCK_SIZE;
               }
@@ -532,14 +529,12 @@ int fd_nr;
        if (mode_word == I_CHAR_SPECIAL || mode_word == I_BLOCK_SPECIAL) {
                dev = (dev_t) vp->v_sdev;
                if (mode_word == I_BLOCK_SPECIAL)  {
-printf("VFSclose: closing block spec 0x%x\n", dev);            
                        if (vp->v_bfs_e == ROOT_FS_E)
                        {
                                /* Invalidate the cache unless the special is
                                 * mounted. Assume that the root filesystem's
                                 * is open only for fsck.
                                 */
-printf("VFSclose: flushing block spec 0x%x\n", dev);           
                                req_flush(vp->v_bfs_e, dev);
                        }
                }