]> Zhao Yanbai Git Server - minix.git/commitdiff
Rename tell_fs to tell_vfs
authorArun Thomas <arun@minix3.org>
Wed, 9 Jun 2010 14:31:30 +0000 (14:31 +0000)
committerArun Thomas <arun@minix3.org>
Wed, 9 Jun 2010 14:31:30 +0000 (14:31 +0000)
servers/pm/exec.c
servers/pm/forkexit.c
servers/pm/getset.c
servers/pm/misc.c
servers/pm/proto.h
servers/pm/signal.c
servers/pm/utility.c

index f30d7212d754381e6650fd19f2a8fff55f0810e7..2b4d0367ea343c5f5834571a34f9806ff2dab632 100644 (file)
@@ -48,7 +48,7 @@ PUBLIC int do_exec()
        m.PM_FRAME = m_in.stack_ptr;
        m.PM_FRAME_LEN = m_in.stack_bytes;
 
-       tell_fs(mp, &m);
+       tell_vfs(mp, &m);
 
        /* Do not reply */
        return SUSPEND;
index 879d948239303e7e2de89b44db024f2776aae78a..163055ebcd0aec4f017a6aef577f9398edb08298 100644 (file)
@@ -110,7 +110,7 @@ PUBLIC int do_fork()
   m.PM_PPROC = rmp->mp_endpoint;
   m.PM_CPID = rmc->mp_pid;
 
-  tell_fs(rmc, &m);
+  tell_vfs(rmc, &m);
 
   /* Tell the tracer, if any, about the new child */
   if (rmc->mp_tracer != NO_TRACER)
@@ -197,7 +197,7 @@ PUBLIC int do_srv_fork()
   m.PM_PPROC = rmp->mp_endpoint;
   m.PM_CPID = rmc->mp_pid;
 
-  tell_fs(rmc, &m);
+  tell_vfs(rmc, &m);
 
   /* Tell the tracer, if any, about the new child */
   if (rmc->mp_tracer != NO_TRACER)
@@ -303,7 +303,7 @@ int dump_core;                      /* flag indicating whether to dump core */
   m.m_type = dump_core ? PM_DUMPCORE : PM_EXIT;
   m.PM_PROC = rmp->mp_endpoint;
 
-  tell_fs(rmp, &m);
+  tell_vfs(rmp, &m);
 
   if (rmp->mp_flags & PRIV_PROC)
   {
index 498e736196cbc4e984176f2f8fc7e9b07cb14786..f826c080d20aec56ea33ff7d7725cedd010a4b25 100644 (file)
@@ -159,9 +159,9 @@ PUBLIC int do_set()
                return(EINVAL);
   }
 
-  /* Send the request to FS */
-  tell_fs(rmp, &m);
+  /* Send the request to VFS */
+  tell_vfs(rmp, &m);
 
-  /* Do not reply until FS has processed the request */
+  /* Do not reply until VFS has processed the request */
   return(SUSPEND);
 }
index 1534f1ef0dba9b9612413eb7c58d0c8af88c2657..5c07b5cdc9e8f9e35336d06ea6bdaa5158ea7547 100644 (file)
@@ -393,10 +393,10 @@ PUBLIC int do_reboot()
   check_sig(-1, SIGKILL, FALSE /* ksig*/); /* kill all users except init */
   sys_stop(INIT_PROC_NR);                 /* stop init, but keep it around */
 
-  /* Tell FS to reboot */
+  /* Tell VFS to reboot */
   m.m_type = PM_REBOOT;
 
-  tell_fs(&mproc[VFS_PROC_NR], &m);
+  tell_vfs(&mproc[VFS_PROC_NR], &m);
 
   return(SUSPEND);                     /* don't reply to caller */
 }
index c44f0d392e4c601ff00aa681604e34292a65a5ad..e706806e764c7a5883ecf6b2bc0a7f967b08b498 100644 (file)
@@ -108,4 +108,4 @@ _PROTOTYPE( int no_sys, (void)                                              );
 _PROTOTYPE( char *find_param, (const char *key)                                );
 _PROTOTYPE( struct mproc *find_proc, (pid_t lpid)                      );
 _PROTOTYPE( int pm_isokendpt, (int ep, int *proc)                      );
-_PROTOTYPE( void tell_fs, (struct mproc *rmp, message *m_ptr)          );
+_PROTOTYPE( void tell_vfs, (struct mproc *rmp, message *m_ptr)         );
index be287d631df32ab7f8169d413bb332e7a65edca5..5a3b267f0685693de6beae2bff55f9b63f82fa54 100644 (file)
@@ -665,7 +665,7 @@ struct mproc *rmp;          /* which process */
   m.m_type = PM_UNPAUSE;
   m.PM_PROC = rmp->mp_endpoint;
 
-  tell_fs(rmp, &m);
+  tell_vfs(rmp, &m);
 
   /* Also tell VM. */
   vm_notify_sig_wrapper(rmp->mp_endpoint);
index 98c499ffd25619bc5860b1a88a55a35560c99563..aa636a686b8a8e7e0607e451f044879f2cecddd8 100644 (file)
@@ -6,7 +6,7 @@
  *   find_param:       look up a boot monitor parameter
  *   find_proc:                return process pointer from pid number
  *   pm_isokendpt:     check the validity of an endpoint
- *   tell_fs:          send a request to FS on behalf of a process
+ *   tell_vfs:         send a request to VFS on behalf of a process
  */
 
 #include "pm.h"
@@ -118,9 +118,9 @@ PUBLIC int pm_isokendpt(int endpoint, int *proc)
 }
 
 /*===========================================================================*
- *                             tell_fs                                      *
+ *                             tell_vfs                                     *
  *===========================================================================*/
-PUBLIC void tell_fs(rmp, m_ptr)
+PUBLIC void tell_vfs(rmp, m_ptr)
 struct mproc *rmp;
 message *m_ptr;
 {
@@ -129,7 +129,7 @@ message *m_ptr;
   int r;
 
   if (rmp->mp_flags & FS_CALL)
-       panic("tell_fs: not idle: %d", m_ptr->m_type);
+       panic("tell_vfs: not idle: %d", m_ptr->m_type);
 
   r = asynsend3(VFS_PROC_NR, m_ptr, AMF_NOREPLY);
   if (r != OK)