]> Zhao Yanbai Git Server - minix.git/commitdiff
Fix printfs with too few or too many parms, remove unused vars, fix incorrect flag...
authorKees van Reeuwijk <reeuwijk@few.vu.nl>
Thu, 1 Apr 2010 13:25:05 +0000 (13:25 +0000)
committerKees van Reeuwijk <reeuwijk@few.vu.nl>
Thu, 1 Apr 2010 13:25:05 +0000 (13:25 +0000)
59 files changed:
boot/bootimage.c
drivers/atl2/atl2.c
drivers/dec21140A/dec21140A.c
drivers/orinoco/hermes.c
drivers/pci/pci.c
drivers/rtl8169/rtl8169.c
drivers/sb16/mixer/sb16_mixer.c
drivers/ti1225/ti1225.c
kernel/arch/i386/breakpoints.c
kernel/system/do_clear.c
kernel/system/do_update.c
kernel/system/do_vmctl.c
lib/libc/ansi/misc.c
lib/libdriver/driver.c
servers/hgfs/hgfs_server/main.c
servers/is/dmp_kernel.c
servers/is/main.c
servers/iso9660fs/cache.c
servers/iso9660fs/device.c
servers/iso9660fs/main.c
servers/iso9660fs/path.c
servers/iso9660fs/read.c
servers/iso9660fs/stadir.c
servers/mfs/device.c
servers/mfs/inode.c
servers/mfs/main.c
servers/mfs/mount.c
servers/mfs/open.c
servers/mfs/path.c
servers/mfs/protect.c
servers/mfs/read.c
servers/mfs/write.c
servers/pfs/inode.c
servers/pfs/link.c
servers/pfs/main.c
servers/pfs/read.c
servers/pm/exec.c
servers/pm/forkexit.c
servers/pm/getset.c
servers/pm/misc.c
servers/pm/signal.c
servers/rs/exec.c
servers/rs/main.c
servers/rs/manager.c
servers/rs/proto.h
servers/vfs/device.c
servers/vfs/link.c
servers/vfs/misc.c
servers/vfs/mount.c
servers/vfs/open.c
servers/vfs/path.c
servers/vfs/pipe.c
servers/vfs/protect.c
servers/vfs/read.c
servers/vfs/request.c
servers/vfs/select.c
servers/vfs/stadir.c
servers/vfs/time.c
servers/vfs/utility.c

index 6c3ab3590160afc09e698890e38988b67c50b16a..2e3754cfe3a782c3a2005ebfd89108c3a9d3e48d 100644 (file)
@@ -424,7 +424,7 @@ static void restore_screen(void)
                 sizeof(boot_tty_info));
 
         if(boot_tty_info.magic == TTYMAGIC) {
-                if(boot_tty_info.flags & (BTIF_CONSORIGIN|BTIF_CONSCURSOR) ==
+                if((boot_tty_info.flags & (BTIF_CONSORIGIN|BTIF_CONSCURSOR)) ==
                        (BTIF_CONSORIGIN|BTIF_CONSCURSOR)) {
                        int line;
                        raw_copy(mon2abs(consolescreen), 
index 0941b8d6447f36ccfb8e0c05ff368e351a653271..0c7d918cd8dba16933ea556d40e85e2bee408318 100644 (file)
@@ -1307,7 +1307,6 @@ int main(int argc, char **argv)
        /* Driver task.
         */
        message m;
-       sigset_t set;
        int r;
 
        /* Initialize SEF. */
index 1feccf415e0d381c6c24e77d7a7c06d38e8d2966..73851cfead70ffdaeb9e671f3f8f64a3880401c1 100644 (file)
@@ -260,15 +260,15 @@ PRIVATE void do_conf(const message * mp)
     }
   } else {                     /* Port number is out of range */ 
     port = ENXIO;
+    dep = NULL;
   }
 
   reply_mess.m_type = DL_CONF_REPLY;
   reply_mess.m3_i1 = port;
   reply_mess.m3_i2 = DE_PORT_NR;
-  /* FIXME: if port number is out of range, this uses
-   * uninitialized variable 'dep'.
-   */
-  *(ether_addr_t *) reply_mess.m3_ca1 = dep->de_address;
+  if(dep != NULL){
+    *(ether_addr_t *) reply_mess.m3_ca1 = dep->de_address;
+  }
   
   if (send(mp->m_source, &reply_mess) != OK)
     panic(str_SendErrMsg, mp->m_source);
@@ -291,7 +291,7 @@ PRIVATE void do_get_name(message *mp)
 PRIVATE void do_reply(dpeth_t * dep, int err, int may_block)
 {
   message reply;
-  int status = FALSE;
+  int status = 0;
 
   if (dep->de_flags & DEF_ACK_SEND) status |= DL_PACK_SEND;
   if (dep->de_flags & DEF_ACK_RECV) status |= DL_PACK_RECV;
@@ -620,7 +620,6 @@ PRIVATE void de_first_init(dpeth_t *dep)
   int i,j,r;
   vir_bytes descr_vir = dep->sendrecv_descr_buf;
   vir_bytes buffer_vir = dep->sendrecv_buf;
-  de_descr_t *phys_descr;
   de_loc_descr_t *loc_descr;
   u32_t temp;
 
index a33dd917604c514392c98d01eee3516055267f50..39996d76e05f31f97b04b678e2764af6ec788637 100644 (file)
@@ -624,8 +624,8 @@ int hermes_read_ltv (hermes_t * hw, int bap, u16_t rid, unsigned bufsize,
 
        if (rtype != rid) {
                printf("hermes @ %lx: hermes_read_ltv(): rid  (0x%04x)",
-                       hw->iobase);
-               printf("does not match type (0x%04x)\n", rid, rtype);
+                       hw->iobase, rid);
+               printf("does not match type (0x%04x)\n", rtype);
        }
 
        if (HERMES_RECLEN_TO_BYTES (rlength) > bufsize) {
index 1089a791edf88a1809f7359f74ce810a29634062..ef00eab0936266669e15ad030de7ffd5fed304e0 100644 (file)
@@ -1168,7 +1168,7 @@ int devind;
 /*===========================================================================*
  *                             record_bars                                  *
  *===========================================================================*/
-PRIVATE void record_bars(devind, last_reg)
+PRIVATE void record_bars(int devind, int last_reg)
 {
        int i, reg, width;
 
@@ -2397,7 +2397,7 @@ int port;
                port);
 #if USER_SPACE
        if (OK != (s=sys_outl(PCII_CONFADD, PCII_UNSEL)))
-               printf("PCI: warning, sys_outl failed: %d\n");
+               printf("PCI: warning, sys_outl failed: %d\n", s);
 #else
        outl(PCII_CONFADD, PCII_UNSEL);
 #endif
@@ -2514,7 +2514,7 @@ u32_t value;
                port, value);
 #if USER_SPACE
        if (OK != (s=sys_outl(PCII_CONFADD, PCII_UNSEL)))
-               printf("PCI: warning, sys_outl failed: %d\n");
+               printf("PCI: warning, sys_outl failed: %d\n",s);
 #else
        outl(PCII_CONFADD, PCII_UNSEL);
 #endif
@@ -2523,8 +2523,7 @@ u32_t value;
 /*===========================================================================*
  *                             pcii_rsts                                    *
  *===========================================================================*/
-PRIVATE u16_t pcii_rsts(busind)
-int busind;
+PRIVATE u16_t pcii_rsts(int busind)
 {
        u16_t v;
        int s;
index dfee1dddb7dbe03552f4c03caed1ed70c8f3aeee..0c537841e7c0beb9e147d23145bb53d8d78d5f0b 100644 (file)
@@ -263,7 +263,7 @@ _PROTOTYPE( static void check_int_events, (void)                    );
 _PROTOTYPE( static void do_hard_int, (void)                            );
 _PROTOTYPE( static void rtl8169_dump, (void)                           );
 _PROTOTYPE( static void dump_phy, (re_t *rep)                          );
-_PROTOTYPE( static int rl_handler, (re_t *rep)                         );
+_PROTOTYPE( static void rl_handler, (re_t *rep)                                );
 _PROTOTYPE( static void rl_watchdog_f, (timer_t *tp)                   );
 
 /*
@@ -1989,8 +1989,7 @@ static void do_hard_int(void)
 /*===========================================================================*
  *                             rl_handler                                   *
  *===========================================================================*/
-static int rl_handler(rep)
-re_t *rep;
+static void rl_handler(re_t *rep)
 {
        int i, port, tx_head, tx_tail, link_up;
        u16_t isr;
@@ -2093,8 +2092,6 @@ re_t *rep;
 
        if (isr)
                printf("rl_handler: unhandled interrupt isr = 0x%04x\n", isr);
-
-       return 1;
 }
 
 /*===========================================================================*
index e64d1bf3699ac1984045da789ab97647028826b5..cff70fdceb96ba276e092b1417d0d9ad774dcc5f 100644 (file)
@@ -328,10 +328,10 @@ PRIVATE int get_set_input(const message *m_ptr, int flag, int channel)
                mixer_set(input_cmd, mask);
        } else {        /* Get input */
                if (shift > 0) {
-                       input.left = (((mask >> (shift+1)) & 1) == 1 ? ON : OFF);
-                       input.right = (((mask >> shift) & 1) == 1 ? ON : OFF);
+                       input.left = ((((mask >> (shift+1)) & 1) == 1) ? ON : OFF);
+                       input.right = ((((mask >> shift) & 1) == 1) ? ON : OFF);
                } else {
-                       input.left = ((mask & 1) == 1 ? ON : OFF);
+                       input.left = (((mask & 1) == 1) ? ON : OFF);
                }
 
                /* Copy back to user */
@@ -384,10 +384,10 @@ PRIVATE int get_set_output(const message *m_ptr, int flag)
                mixer_set(MIXER_OUTPUT_CTRL, mask);
        } else {    /* Get input */
                if (shift > 0) {
-                       output.left = (((mask >> (shift+1)) & 1) == 1 ? ON : OFF);
-                       output.right = (((mask >> shift) & 1) == 1 ? ON : OFF);
+                       output.left = ((((mask >> (shift+1)) & 1) == 1) ? ON : OFF);
+                       output.right = ((((mask >> shift) & 1) == 1) ? ON : OFF);
                } else {
-                       output.left = ((mask & 1) == 1 ? ON : OFF);
+                       output.left = (((mask & 1) == 1) ? ON : OFF);
                }
 
                /* Copy back to user */
index 61c2a06e994eede96576c63bb46adf674f35a277..5783497c89d23a23639d03e3406a097c7e9005c1 100644 (file)
@@ -440,7 +440,7 @@ struct port *pp;
        v8= pci_attr_r8(devind, TI_CARD_CTRL);
        if (v8 & TI_CCR_IFG)
        {
-               printf("ti1225: got functional interrupt\n", v8);
+               printf("ti1225: got functional interrupt\n");
                pci_attr_w8(devind, TI_CARD_CTRL, v8);
        }
 
index 176ae609ae4ae713036565f617fb3ebec7dc869d..6cffe8ed6cb77806005d02813759e928aa14fa8c 100644 (file)
@@ -49,7 +49,7 @@ printf("ld_dr7(0x%x)\n",dr7);
                case 3: ld_dr3(linaddr); break;
                default: panic(__FILE__, "invalid breakpoint index", __LINE__);
        }
-printf("ld_dr%d(0x%x, 0x%x)\n",bp,linaddr);
+printf("ld_dr%d(0x%x)\n",bp,linaddr);
        
        /* set new flags */
        dr7 |= dr7flags;
index 31682b36d12d29fb323e7247cd7256a714d13151..0e85a764d8db955d2a856f78bf9f4868b903e39b 100644 (file)
@@ -32,7 +32,7 @@ PUBLIC int do_clear(struct proc * caller, message * m_ptr)
   rc = proc_addr(exit_p);      /* clean up */
 
   /* Don't clear if already cleared. */
-  if(isemptyp(rc)) return;
+  if(isemptyp(rc)) return OK;
 
   /* Check the table with IRQ hooks to see if hooks should be released. */
   for (i=0; i < NR_IRQ_HOOKS; i++) {
index ef43407cd930a12f8543b7120bbfd965191f5363..f38f7205dc403ec369817587468126a6a80f25e0 100644 (file)
@@ -35,14 +35,12 @@ PUBLIC int do_update(struct proc * caller, message * m_ptr)
  */
   endpoint_t src_e, dst_e;
   int src_p, dst_p;
-  struct proc *src_rp, *dst_rp, *rp;
+  struct proc *src_rp, *dst_rp;
   struct priv *src_privp, *dst_privp;
   struct proc orig_src_proc;
   struct proc orig_dst_proc;
   struct priv orig_src_priv;
   struct priv orig_dst_priv;
-  int r;
-  reg_t src_vbp, dst_vbp;
 
   /* Lookup slots for source and destination process. */
   src_e = m_ptr->SYS_UPD_SRC_ENDPT;
index 136b20b5522e75eff90d112dae97cf676c7cd738..5d091d402ed456e57d2d3e08a71d1e31c378b02b 100644 (file)
@@ -21,7 +21,6 @@ PUBLIC int do_vmctl(struct proc * caller, message * m_ptr)
   int proc_nr;
   endpoint_t ep = m_ptr->SVMCTL_WHO;
   struct proc *p, *rp, *target;
-  int err;
 
   if(ep == SELF) { ep = m_ptr->m_source; }
 
index 42333e05523a09b1474b4cfe2b48a2ed8836b775..2ea0b88a6edfcc4f4e522198e15e16203f42dcc5 100644 (file)
@@ -206,7 +206,7 @@ date_of(const register struct dsttype *dst, const struct tm *timep)
 
        if (dst->ds_type != 'M') {
                return dst->ds_date[0] -
-                           (dst->ds_type == 'J'
+                           ((dst->ds_type == 'J')
                                && leap
                                && dst->ds_date[0] < 58);
        }
index 5b9a88e4fbabe501392a7cdd388976ca3cb40181..7a8a5c693db649967dc57f78abd72cb444ae7ca9 100644 (file)
@@ -385,7 +385,7 @@ message *mp;
 /*===========================================================================*
  *                             nop_prepare                                  *
  *===========================================================================*/
-PUBLIC struct device *nop_prepare(device)
+PUBLIC struct device *nop_prepare(int device)
 {
 /* Nothing to prepare for. */
   return(NIL_DEV);
index 78c212d6bb08f3fd26991021561b2019d68c43fd..794a60874b178f4405b8737d7f251bd4a114ca59 100644 (file)
@@ -92,9 +92,6 @@ sef_init_info_t *info;
  *===========================================================================*/
 PRIVATE void sef_cb_signal_handler(int signo)
 {
-  sigset_t set;
-  int r;
-
   /* Only check for termination signal, ignore anything else. */
   if (signo != SIGTERM) return;
 
index 642747b05b3ae560486d499d56d9901ed4d65a63..3a370cdf860a8e45858ca9db76fe5a763412d018 100644 (file)
@@ -61,8 +61,7 @@ PUBLIC struct boot_image image[NR_BOOT_PROCS];
 PUBLIC void timing_dmp()
 {
   static struct util_timingdata timingdata[TIMING_CATEGORIES];
-  int r, c, f, skipped = 0, printed = 0, maxlines = 23, x = 0;
-  static int offsetlines = 0;
+  int r, c, x = 0;
 
   if ((r = sys_getlocktimings(&timingdata[0])) != OK) {
       printf("IS: warning: couldn't get copy of lock timings: %d\n", r);
@@ -213,7 +212,7 @@ PRIVATE char *boot_flags_str(int flags)
  *===========================================================================*/
 PUBLIC void image_dmp()
 {
-  int m, i,j,r;
+  int m, r;
   struct boot_image *ip;
        
   if ((r = sys_getimage(image)) != OK) {
@@ -315,7 +314,7 @@ PUBLIC void privileges_dmp()
   register struct proc *rp;
   static struct proc *oldrp = BEG_PROC_ADDR;
   register struct priv *sp;
-  int r, i, n = 0;
+  int r, i;
 
   /* First obtain a fresh copy of the current process and system table. */
   if ((r = sys_getprivtab(priv)) != OK) {
@@ -381,7 +380,7 @@ PUBLIC void proctab_dmp()
 
   register struct proc *rp;
   static struct proc *oldrp = BEG_PROC_ADDR;
-  int r, n = 0;
+  int r;
   phys_clicks text, data, size;
 
   /* First obtain a fresh copy of the current process table. */
@@ -418,7 +417,7 @@ PUBLIC void procstack_dmp()
 
   register struct proc *rp;
   static struct proc *oldrp = BEG_PROC_ADDR;
-  int r, n = 0;
+  int r;
 
   /* First obtain a fresh copy of the current process table. */
   if ((r = sys_getproctab(proc)) != OK) {
@@ -441,7 +440,7 @@ PUBLIC void memmap_dmp()
 {
   register struct proc *rp;
   static struct proc *oldrp = proc;
-  int r, n = 0;
+  int r;
   phys_clicks size;
 
   /* First obtain a fresh copy of the current process table. */
index cc8e0c374fe8cc813e289f6b776b9714810e5174..ce38d01166f529b8076275a4dbf7bd5786d39791 100644 (file)
@@ -37,7 +37,6 @@ PUBLIC int main(int argc, char **argv)
  * sending the reply. The loop never terminates, unless a panic occurs.
  */
   int result;                 
-  sigset_t sigset;
 
   /* SEF local startup. */
   env_setargs(argc, argv);
@@ -97,7 +96,7 @@ PRIVATE void sef_local_startup()
 /*===========================================================================*
  *                         sef_cb_init_fresh                                *
  *===========================================================================*/
-PRIVATE int sef_cb_init_fresh(int type, sef_init_info_t *info)
+PRIVATE int sef_cb_init_fresh(int UNUSED(type), sef_init_info_t *UNUSED(info))
 {
 /* Initialize the information server. */
 
index 990aa190dbabbac011af1736dbea617f5e59768b..b9cca493359f4e75f9e050bf03aa44046b1f438a 100644 (file)
@@ -28,7 +28,6 @@ PUBLIC struct buf *bp_to_pickup = buf; /* This is a pointer to the next node in
 PUBLIC struct buf *get_block(block)
 register block_t block;                /* which block is wanted? */
 {
-  int b;
   register struct buf *bp, *free_bp;
 
   free_bp = NIL_BUF;
index 9afc6c459e4d90093f55b7dabd929ce392a18944..647560103c03a7e0468dfb66fb20d707b91311e7 100644 (file)
@@ -41,7 +41,6 @@ void **buf;
 int *vec_grants;
 vir_bytes bytes;
 {
-       int size;
        int j;
        iovec_t *v;
        static iovec_t new_iovec[NR_IOREQS];
@@ -170,10 +169,8 @@ int bytes;                 /* how many bytes to transfer */
 int flags;                     /* special flags, like O_NONBLOCK */
 {
 /* Read or write from a device.  The parameter 'dev' tells which one. */
-  struct dmap *dp;
   int r, safe;
   message m;
-  iovec_t *v;
   cp_grant_id_t gid = GRANT_INVALID;
   int vec_grants;
   int op_used;
index a3fb0cd256974c93f9c8a91c7212265d672f08b4..c1c18270d5cbfa62f13184e84d1ce1e4e0461fe2 100644 (file)
@@ -20,7 +20,6 @@ FORWARD _PROTOTYPE( int sef_cb_init_fresh, (int type, sef_init_info_t *info) );
  *===========================================================================*/
 PUBLIC int main(void) {
   endpoint_t who_e, ind, error;
-  message m;
 
   /* SEF local startup. */
   sef_local_startup();
index a19e36786451d05f3efab62904c71d697c18cea7..202fedbef7e6553bb7b9dc8599e2f2ca37bf391c 100644 (file)
@@ -16,7 +16,7 @@ FORWARD _PROTOTYPE( int parse_path, (ino_t dir_ino, ino_t root_ino, int flags,
  *===========================================================================*/
 PUBLIC int fs_lookup() {
   cp_grant_id_t grant;
-  int r, r1, len, flags;
+  int r, len, flags;
   size_t offset;
   ino_t dir_ino, root_ino;
   struct dir_record *dir;
@@ -87,8 +87,8 @@ PUBLIC int search_dir(ldir_ptr,string,numb)
      ino_t *numb;                    /* pointer to new dir record */
 {
   struct dir_record *dir_tmp;
-  register struct buf *bp,*bp2;
-  int pos,len;
+  register struct buf *bp;
+  int pos;
   char* comma_pos = NULL;
   char tmp_string[NAME_MAX];
 
@@ -293,8 +293,7 @@ struct dir_record **resp;           /* resulting inode */
  */
 
   register struct dir_record *rip = NULL;
-  int r, inumb;
-  dev_t mnt_dev;
+  int r;
   ino_t numb;
 
   /* If 'string' is empty, yield same inode straight away. */
index 789eade94a0e0952f5f9281f2a27b13c693820c1..960ba0217a8c2e6cd2e812fe59b6d3760febea0e 100644 (file)
@@ -80,8 +80,7 @@ PUBLIC int fs_bread(void)
   int nrbytes;
   u64_t position;
   unsigned int off, cum_io;
-  mode_t mode_word;
-  int completed, r2 = OK;
+  int completed;
   struct dir_record *dir;
   
   r = OK;
@@ -292,9 +291,7 @@ int *completed;                     /* number of bytes copied */
 
   register struct buf *bp;
   register int r = OK;
-  int n;
   block_t b;
-  dev_t dev;
   int file_unit, rel_block, offset;
 
   *completed = 0;
index c3ded5a98fbbac4ac7264de5eeef9fdb5bd57e6d..d29d18fb3e2bd01069271e69dd46429983d04bff 100644 (file)
@@ -25,8 +25,7 @@ PRIVATE int stat_dir_record(
 
 /* Common code for stat and fstat system calls. */
   struct stat statbuf;
-  mode_t mo;
-  int r, s;
+  int r;
   struct tm ltime;
   time_t time1;
 
index faf2b700dba926831b33d471de7e5c268e262777..f81aea9774d139c41cec5928e77ce840c7dc58b1 100644 (file)
@@ -54,7 +54,6 @@ void **buf;
 int *vec_grants;
 vir_bytes bytes;
 {
-  int access = 0, size;
   int j;
   iovec_t *v;
   static iovec_t *new_iovec;
@@ -158,10 +157,8 @@ int bytes;                 /* how many bytes to transfer */
 int flags;                     /* special flags, like O_NONBLOCK */
 {
 /* Read or write from a device.  The parameter 'dev' tells which one. */
-  struct dmap *dp;
   int r, safe;
   message m;
-  iovec_t *v;
   cp_grant_id_t gid = GRANT_INVALID;
   int vec_grants;
   int op_used;
index 7c314e4e042a600154ef4001ab462303796f6c43..27a65b9eb3e5124961dc13ae60e478165652aa18 100644 (file)
@@ -128,7 +128,7 @@ int numb;                   /* inode number (ANSI: may not be unshort) */
 /* Find the inode in the hash table. If it is not there, get a free inode
  * load it from the disk if it's necessary and put on the hash list 
  */
-  register struct inode *rip, *xp;
+  register struct inode *rip;
   int hashi;
 
   hashi = numb & INODE_HASH_MASK;
index d24758b9b13ab65c59231ccf09fb7df658e43426..5acc79658ddaa9bbb7624bf129d2e63188facc9c 100644 (file)
@@ -28,7 +28,6 @@ PUBLIC int main(int argc, char *argv[])
  * sending the reply. The loop never terminates, unless a panic occurs.
  */
   int error, ind;
-  message m;
 
   /* SEF local startup. */
   env_setargs(argc, argv);
index 24a4ab6f8d8b7735156cfad4b2c2dc6c3b7e4c6f..12d8933090780f8bba68c0370f04c5f302ddc87d 100644 (file)
@@ -23,7 +23,6 @@ PUBLIC int fs_readsuper()
  * so that the VFS knows that it has to find the vnode on which this FS 
  * process' partition is mounted on.
  */
-  struct super_block *xp;
   struct inode *root_ip;
   cp_grant_id_t label_gid;
   size_t label_len;
@@ -152,7 +151,6 @@ PUBLIC int fs_mountpoint()
 PUBLIC int fs_unmount()
 {
 /* Unmount a file system by device number. */
-  struct super_block *sp1;
   int count;
   struct inode *rip, *root_ip;
 
index c07e343189297a819eaf238b5c94531e72d12ed4..44abd89305331dd31bc7310eaf5d493d815da3b7 100644 (file)
@@ -21,7 +21,7 @@ FORWARD _PROTOTYPE( struct inode *new_node, (struct inode *ldirp,
 PUBLIC int fs_create()
 {
   phys_bytes len;
-  int r, b;
+  int r;
   struct inode *ldirp;
   struct inode *rip;
   mode_t omode;
index d5268b281a3a95d05381966b5181def7d5e0a7cc..531d249273bae03c447836ce609c41879f3b55ea 100644 (file)
@@ -67,7 +67,6 @@ PUBLIC int fs_lookup()
   if(user_path[len - 1] != '\0') return(EINVAL);
 
   if(flags & PATH_GET_UCRED) { /* Do we have to copy uid/gid credentials? */
-       int i;
        grant2  = fs_m_in.REQ_GRANT2;
        cred_size = fs_m_in.REQ_UCRED_SIZE;
 
index 4a451d98616e3d2f9fa50a26720d842b24897ccd..6d4d5c4ef67d32de805da1526711e78b378ee706 100644 (file)
@@ -17,7 +17,6 @@ PUBLIC int fs_chmod()
 /* Perform the chmod(name, mode) system call. */
 
   register struct inode *rip;
-  register int r;
   
   /* Temporarily open the file. */
   if( (rip = get_inode(fs_dev, fs_m_in.REQ_INODE_NR)) == NIL_INODE)
@@ -78,7 +77,6 @@ PUBLIC int forbidden(register struct inode *rip, mode_t access_desired)
  */
 
   register struct inode *old_rip = rip;
-  register struct super_block *sp;
   register mode_t bits, perm_bits;
   int r, shift;
 
index e7f794287cf868d4e2d06f13bbd3e4f917200eee..cfcce90066364a3d56cda8017e9a65142484cc88 100644 (file)
@@ -22,7 +22,7 @@ PRIVATE char getdents_buf[GETDENTS_BUFSIZ];
 PUBLIC int fs_readwrite(void)
 {
   int r, rw_flag, chunk, block_size, block_spec;
-  int partial_cnt, regular, nrbytes;
+  int regular, nrbytes;
   cp_grant_id_t gid;
   off_t position, f_size, bytes_left;
   unsigned int off, cum_io;
@@ -140,8 +140,7 @@ PUBLIC int fs_breadwrite(void)
   int nrbytes;
   u64_t position;
   unsigned int off, cum_io;
-  mode_t mode_word;
-  int completed, r2 = OK;
+  int completed;
 
   /* Pseudo inode for rw_chunk */
   struct inode rip;
index a19e5b91bdb8b204aab288765799797c9248da60..7a66f52f74f3b995133edc8f040b0d38341f8d5e 100644 (file)
@@ -291,7 +291,6 @@ off_t position;                     /* file pointer */
   zone_t z;
   zone_t zone_size;
   int scale, r;
-  struct super_block *sp;
 
   /* Is another block available in the current zone? */
   if ( (b = read_map(rip, position)) == NO_BLOCK) {
index 0544e861137083980ce156067e283618dcd8c8bb..90626f02634ca49735749db2df5b17a817a6b651 100644 (file)
@@ -127,7 +127,7 @@ int numb;                   /* inode number (ANSI: may not be unshort) */
 /* Find the inode in the hash table. If it is not there, get a free inode
  * load it from the disk if it's necessary and put on the hash list 
  */
-  register struct inode *rip, *xp;
+  register struct inode *rip;
   int hashi;
 
   hashi = numb & INODE_HASH_MASK;
@@ -245,7 +245,6 @@ PUBLIC struct inode *alloc_inode(dev_t dev, mode_t bits)
 /* Allocate a free inode on 'dev', and return a pointer to it. */
 
   register struct inode *rip;
-  int major, minor;
   bit_t b;
   ino_t i_num;
 
@@ -293,8 +292,6 @@ register struct inode *rip; /* the inode to be erased */
  * inode is to be truncated.
  */
 
-  register int i;
-
   rip->i_size = 0;
   rip->i_update = ATIME | CTIME | MTIME;       /* update all times later */
 }
index 12c8285ee4b1e02da0816f5aa447ea81f3538a41..71208f560c58b014c48d317f9590cc304db85a71 100644 (file)
@@ -1,8 +1,5 @@
 #include "fs.h"
-#include <sys/stat.h>
 #include <string.h>
-#include <minix/com.h>
-#include <minix/callnr.h>
 #include "buf.h"
 #include "inode.h"
 #include <minix/vfsif.h>
@@ -14,7 +11,6 @@ PUBLIC int fs_ftrunc(void)
 {
   struct inode *rip;
   off_t start, end;
-  int r;
   ino_t inumb;
   
   inumb = fs_m_in.REQ_INODE_NR;
@@ -43,7 +39,6 @@ off_t newsize;                        /* inode must become this size */
  * O_APPEND mode, as this is different per fd and is checked when 
  * writing is done.
  */
-  int scale;
 
   /* Pipes can shrink, so adjust size to make sure all zones are removed. */
   if(newsize != 0) return(EINVAL);     /* Only truncate pipes to 0. */
index 16b1ffdd814c9f4f5daa26af49d0e22829e52fd5..efcb485033e8891088a34f3b17d98e5d22b8ae7d 100644 (file)
@@ -25,7 +25,6 @@ PUBLIC int main(int argc, char *argv[])
  * sending the reply. The loop never terminates, unless a panic occurs.
  */
   int error, ind;
-  message m;
 
   /* SEF local startup. */
   env_setargs(argc, argv);
index 215b35f71e0484f88095b3a52fa1220db71a3686..bd763abe48d0b2fbcadc9f294d66ff55373259d5 100644 (file)
@@ -12,7 +12,6 @@
 PUBLIC int fs_readwrite(void)
 {
   int r, rw_flag;
-  block_t b;
   struct buf *bp;
   cp_grant_id_t gid;
   off_t position, f_size;
index 77198ce6b5201e9e8c75071d74c58e228dc164ac..350d0e6f7105c98bc341a9895c1d959bc51b5707 100644 (file)
@@ -40,7 +40,6 @@
 PUBLIC int do_exec()
 {
        message m;
-       int r;
 
        /* Forward call to FS */
        m.m_type = PM_EXEC;
index dc29656dae1325af50d299a6018008dd3143f41a..3406296c2d8f5fc4bc702d184bd3e2e7940c2137 100644 (file)
@@ -47,7 +47,7 @@ PUBLIC int do_fork()
   register struct mproc *rmc;  /* pointer to child */
   pid_t new_pid;
   static int next_child;
-  int i, n = 0, r, s;
+  int i, n = 0, s;
   endpoint_t child_ep;
   message m;
 
@@ -133,7 +133,7 @@ PUBLIC int do_srv_fork()
   int s;
   pid_t new_pid;
   static int next_child;
-  int i, n = 0, r;
+  int i, n = 0;
   endpoint_t child_ep;
   message m;
 
@@ -243,7 +243,7 @@ int dump_core;                      /* flag indicating whether to dump core */
  * become a zombie.
  */
   register int proc_nr, proc_nr_e;
-  int parent_waiting, r;
+  int r;
   pid_t procgrp;
   struct mproc *p_mp;
   clock_t user_time, sys_time;
index a2da959d770f367bc1ce0a072e3d3553ed13ea3e..498e736196cbc4e984176f2f8fc7e9b07cb14786 100644 (file)
@@ -22,7 +22,7 @@ PUBLIC int do_get()
  */
 
   register struct mproc *rmp = mp;
-  int r, proc;
+  int r;
   int ngroups;
 
   switch(call_nr) {
index 7a5d60ab7d38ae6de74edfcea3646c4795dadf36..06bf30535b67da5408b38d016dd8914fd20ca114 100644 (file)
@@ -366,7 +366,6 @@ PUBLIC int do_getepinfo()
 PUBLIC int do_reboot()
 {
   message m;
-  int r;
 
   /* Check permission to abort the system. */
   if (mp->mp_effuid != SUPER_USER) return(EPERM);
index 84b0cafe53c1fc9f0013329765f84fcad3a4ca74..53d30d1f5c9183e00f5eefb072f61aca8848c1fc 100644 (file)
@@ -213,9 +213,7 @@ PUBLIC int do_srv_kill()
 /*===========================================================================*
  *                             process_ksig                                 *
  *===========================================================================*/
-PUBLIC int process_ksig(proc_nr_e, signo)
-int proc_nr_e;
-int signo;
+PUBLIC int process_ksig(int proc_nr_e, int signo)
 {
   register struct mproc *rmp;
   int proc_nr;
@@ -223,14 +221,14 @@ int signo;
 
   if(pm_isokendpt(proc_nr_e, &proc_nr) != OK || proc_nr < 0) {
        printf("PM: process_ksig: %d?? not ok\n", proc_nr_e);
-       return;
+       return EDEADSRCDST; /* process is gone. */
   }
   rmp = &mproc[proc_nr];
   if ((rmp->mp_flags & (IN_USE | EXITING)) != IN_USE) {
 #if 0
        printf("PM: process_ksig: %d?? exiting / not in use\n", proc_nr_e);
 #endif
-       return;
+       return EDEADSRCDST; /* process is gone. */
   }
   proc_id = rmp->mp_pid;
   mp = &mproc[0];                      /* pretend signals are from PM */
@@ -615,7 +613,7 @@ struct mproc *rmp;          /* which process */
  * so it can check for READs and WRITEs from pipes, ttys and the like.
  */
   message m;
-  int r, slot;
+  int r;
 
   /* If we're already waiting for a delayed call, don't do anything now. */
   if (rmp->mp_flags & DELAY_CALL)
index 741cf50bebd6a9eee61676154b3f3cdeb37344cf..cda1ae715284c9e9cc044fd482dfad887f010fda 100644 (file)
@@ -34,7 +34,6 @@ int srv_execve(int proc_e, char *exec, size_t exec_len, char **argv,
        size_t string_off;
        size_t n;
        int ov;
-       message m;
        int r;
 
        /* Assumptions: size_t and char *, it's all the same thing. */
@@ -161,7 +160,7 @@ static int do_exec(int proc_e, char *exec, size_t exec_len, char *progname,
                proc_e, (vir_bytes) vsp, (phys_bytes)frame_len);
        if (r != OK) {
                printf("RS: stack_top is 0x%lx; tried to copy to 0x%lx in %d\n",
-                       stack_top, vsp);
+                       stack_top, vsp, proc_e);
                printf("do_exec: copying out new stack failed: %d\n", r);
                error= r;
                goto fail;
@@ -298,7 +297,6 @@ vir_bytes *pc;                      /* program entry point (initial PC) */
 int *hdrlenp;
 {
 /* Read the header and extract the text, data, bss and total sizes from it. */
-  block_t b;
   struct exec hdr;             /* a.out header is read in here */
 
   /* Read the header and check the magic number.  The standard MINIX header 
@@ -327,8 +325,6 @@ int *hdrlenp;
    * used here only. The symbol table is for the benefit of a debugger and 
    * is ignored here.
    */
-  int r;
-
   if (exec_len < sizeof(hdr)) return(ENOEXEC);
 
   memcpy(&hdr, exec, sizeof(hdr));
@@ -413,7 +409,6 @@ phys_bytes seg_bytes;               /* how much is to be transferred? */
  */
 
   int r;
-  off_t n, o, b_off, seg_off;
 
   if (off+seg_bytes > exec_len) return ENOEXEC;
   r= sys_vircopy(SELF, D, (vir_bytes)exec+off, proc_e, seg, 0, seg_bytes);
index e7fdea351f586cbbf3a499f0284c1fcf707a0d18..3630b338d459a010f29b4a0dd935a2bd66b890ac 100644 (file)
@@ -479,8 +479,6 @@ PRIVATE int sef_cb_init_fresh(int type, sef_init_info_t *info)
  *===========================================================================*/
 PRIVATE void sef_cb_signal_handler(int signo)
 {
-  int exit_status;
-
   /* Check for known signals, ignore anything else. */
   switch(signo) {
       case SIGCHLD:
@@ -508,13 +506,15 @@ PRIVATE int sef_cb_signal_manager(endpoint_t target, int signo)
       if(rs_verbose)
           printf("RS: ignoring spurious signal %d for process %d\n",
               signo, target);
-      return;
+      return OK;       /* Since we're ignoring it, we have handled
+                        * the signal without problem. All is OK.
+                        */
   }
   rp = rproc_ptr[target_p];
   rpub = rp->r_pub;
 
   /* Don't bother if a termination signal has already been processed. */
-  if( rp->r_flags & (RS_TERMINATED|RS_EXITING) == RS_TERMINATED ) {
+  if(rp->r_flags & RS_TERMINATED) {
       return EDEADSRCDST; /* process is gone */
   }
 
index 39dc03fcda170539f730ccbf84cfa80d98651ada..157097a1f22d0b6e6882f23e7b3d60ff4c3bc8e3 100644 (file)
@@ -268,7 +268,6 @@ PUBLIC void end_update(int result)
  *    service has a period, a status request will be forced in the next period.
  */
   struct rproc *old_rp, *new_rp, *exiting_rp, *surviving_rp;
-  message m;
 
   old_rp = rupdate.rp;
   new_rp = old_rp->r_new_rp;
@@ -316,8 +315,6 @@ char *errstr;
 int err;
 {
 /* Crash a system service and don't let it restart. */
-  struct rprocpub *rpub;
-
   if(errstr && !shutting_down) {
       printf("RS: %s (error %d)\n", errstr, err);
   }
@@ -383,12 +380,8 @@ struct rproc *rp;
 /* Create the given system service. */
   int child_proc_nr_e, child_proc_nr_n;                /* child process slot */
   pid_t child_pid;                             /* child's process id */
-  char *file_only;
-  int s, use_copy, slot_nr;
-  bitchunk_t *vm_mask;
-  message m;
+  int s, use_copy;
   extern char **environ;
-  char * null_env = NULL;
   struct rprocpub *rpub;
 
   rpub = rp->r_pub;
@@ -879,11 +872,63 @@ PUBLIC void terminate_service(struct rproc *rp)
   }
 }
 
+/*===========================================================================*
+ *                             run_script                                   *
+ *===========================================================================*/
+PRIVATE int run_script(struct rproc *rp)
+{
+       int r, endpoint;
+       pid_t pid;
+       char *reason;
+       char incarnation_str[20];       /* Enough for a counter? */
+       char *envp[1] = { NULL };
+       struct rprocpub *rpub;
+
+       rpub = rp->r_pub;
+       if (rp->r_flags & RS_REFRESHING)
+               reason= "restart";
+       else if (rp->r_flags & RS_NOPINGREPLY)
+               reason= "no-heartbeat";
+       else reason= "crashed";
+       sprintf(incarnation_str, "%d", rp->r_restarts);
+
+       if(rs_verbose) {
+               printf("RS: %s:\n", srv_to_string(rp));
+               printf("RS:     calling script '%s'\n", rp->r_script);
+               printf("RS:     reason: '%s'\n", reason);
+               printf("RS:     incarnation: '%s'\n", incarnation_str);
+       }
+
+       pid= fork();
+       switch(pid)
+       {
+       case -1:
+               return kill_service(rp, "unable to fork script", errno);
+       case 0:
+               execle(rp->r_script, rp->r_script, rpub->label, reason,
+                       incarnation_str, NULL, envp);
+               printf("RS: run_script: execl '%s' failed: %s\n",
+                       rp->r_script, strerror(errno));
+               exit(1);
+       default:
+               /* Set the privilege structure for the child process. */
+               endpoint = getnprocnr(pid);
+               if ((r = sys_privctl(endpoint, SYS_PRIV_SET_USER, NULL))
+                       != OK) {
+                       return kill_service(rp,"can't set script privileges",r);
+               }
+               /* Allow the script to run. */
+               if ((r = sys_privctl(endpoint, SYS_PRIV_ALLOW, NULL)) != OK) {
+                       return kill_service(rp,"can't let the script run",r);
+               }
+       }
+       return OK;
+}
+
 /*===========================================================================*
  *                           restart_service                                *
  *===========================================================================*/
-PUBLIC void restart_service(rp)
-struct rproc *rp;
+PUBLIC void restart_service(struct rproc *rp)
 {
 /* Restart service via a recovery script or directly. */
   struct rproc *replica_rp;
@@ -1092,13 +1137,7 @@ endpoint_t source;
 {
 /* Initialize a slot as requested by the client. */
   struct rprocpub *rpub;
-  int slot_nr;                                 /* local table entry */
-  int arg_count;                               /* number of arguments */
-  char *cmd_ptr;                               /* parse command string */
   char *label;                                 /* unique name of command */
-  enum dev_style dev_style;                    /* device style */
-  struct rproc *tmp_rp;
-  struct rprocpub *tmp_rpub;
   int len;                                     /* length of string */
   int i;
   int s;
@@ -1534,59 +1573,6 @@ struct rproc *rp;
   rproc_ptr[_ENDPOINT_P(rpub->endpoint)] = NULL;
 }
 
-/*===========================================================================*
- *                             run_script                                   *
- *===========================================================================*/
-PUBLIC int run_script(rp)
-struct rproc *rp;
-{
-       int r, endpoint;
-       pid_t pid;
-       char *reason;
-       char incarnation_str[20];       /* Enough for a counter? */
-       char *envp[1] = { NULL };
-       struct rprocpub *rpub;
-
-       rpub = rp->r_pub;
-       if (rp->r_flags & RS_REFRESHING)
-               reason= "restart";
-       else if (rp->r_flags & RS_NOPINGREPLY)
-               reason= "no-heartbeat";
-       else reason= "crashed";
-       sprintf(incarnation_str, "%d", rp->r_restarts);
-
-       if(rs_verbose) {
-               printf("RS: %s:\n", srv_to_string(rp));
-               printf("RS:     calling script '%s'\n", rp->r_script);
-               printf("RS:     reason: '%s'\n", reason);
-               printf("RS:     incarnation: '%s'\n", incarnation_str);
-       }
-
-       pid= fork();
-       switch(pid)
-       {
-       case -1:
-               return kill_service(rp, "unable to fork script", errno);
-       case 0:
-               execle(rp->r_script, rp->r_script, rpub->label, reason,
-                       incarnation_str, NULL, envp);
-               printf("RS: run_script: execl '%s' failed: %s\n",
-                       rp->r_script, strerror(errno));
-               exit(1);
-       default:
-               /* Set the privilege structure for the child process. */
-               endpoint = getnprocnr(pid);
-               if ((r = sys_privctl(endpoint, SYS_PRIV_SET_USER, NULL))
-                       != OK) {
-                       return kill_service(rp,"can't set script privileges",r);
-               }
-               /* Allow the script to run. */
-               if ((r = sys_privctl(endpoint, SYS_PRIV_ALLOW, NULL)) != OK) {
-                       return kill_service(rp,"can't let the script run",r);
-               }
-       }
-}
-
 
 /*===========================================================================*
  *                             get_next_label                               *
@@ -1617,7 +1603,7 @@ char *caller_label;
                if (len > RS_MAX_LABEL_LEN)
                {
                        printf(
-       "rs:get_next_label: bad ipc list entry '.*s' for %s: too long\n",
+       "rs:get_next_label: bad ipc list entry '%.*s' for %s: too long\n",
                                len, p, caller_label);
                        continue;
                }
index d73314e8b6a7e0c6e653326ed9c647cfa7d0a54a..c574e030d1ab289945536ee07fd9629243ed0078 100644 (file)
@@ -75,7 +75,6 @@ _PROTOTYPE( struct rproc* lookup_slot_by_label, (char *label) );
 _PROTOTYPE( struct rproc* lookup_slot_by_pid, (pid_t pid) );
 _PROTOTYPE( int alloc_slot, (struct rproc **rpp) );
 _PROTOTYPE( void free_slot, (struct rproc *rp) );
-_PROTOTYPE( int run_script, (struct rproc *rp) );
 _PROTOTYPE( char *get_next_label, (char *ptr, char *label, char *caller_label));
 _PROTOTYPE( void add_forward_ipc, (struct rproc *rp, struct priv *privp) );
 _PROTOTYPE( void add_backward_ipc, (struct rproc *rp, struct priv *privp) );
index 8f30e0ee17be4c7d5a29a02495689dfd84bd2d12..8c105e5556cdd21bc9e6958cf9237a8c45b180b7 100644 (file)
@@ -827,7 +827,6 @@ PUBLIC void dev_up(int maj)
   struct vmnt *vmp;
   struct fproc *rfp;
   struct vnode *vp;
-  message m;
 
   /* Open a device once for every filp that's opened on it,
    * and once for every filesystem mounted from it.
index a74da279e0abfd571c27643816cdfb9454bb5af7..8d62183be6718f6c913edf59297d03c491756705 100644 (file)
@@ -30,7 +30,6 @@ PUBLIC int do_link()
 {
 /* Perform the link(name1, name2) system call. */
   int r = OK;
-  endpoint_t linked_fs_e, link_lastdir_fs_e;
   struct vnode *vp, *vp_d;
 
   /* See if 'name1' (file to be linked to) exists. */ 
@@ -72,7 +71,6 @@ PUBLIC int do_unlink()
  * is almost the same.  They differ only in some condition testing.  Unlink()
  * may be used by the superuser to do dangerous things; rmdir() may not.
  */
-  register struct fproc *rfp;
   struct vnode *vldirp, *vp;
   int r;
   
@@ -126,7 +124,6 @@ PUBLIC int do_rename()
 {
 /* Perform the rename(name1, name2) system call. */
   int r = OK, r1;
-  size_t len;
   struct vnode *old_dirp, *new_dirp, *vp;
   char old_name[PATH_MAX+1];
   
@@ -218,7 +215,6 @@ PUBLIC int do_truncate()
 PUBLIC int do_ftruncate()
 {
 /* As with do_truncate(), truncate_vnode() does the actual work. */
-  int r;
   struct filp *rfilp;
   
   if ((off_t) m_in.flength < 0) return(EINVAL);
@@ -255,9 +251,8 @@ off_t newsize;
 PUBLIC int do_slink()
 {
 /* Perform the symlink(name1, name2) system call. */
-  int r, linklen;
+  int r;
   struct vnode *vp;
-  char string[NAME_MAX];       /* last component of the new dir's path name */
 
   if(m_in.name1_length <= 1) return(ENOENT);
   if(m_in.name1_length >= SYMLINK_MAX) return(ENAMETOOLONG);
index 2e33d7baf2989b68a31494db4a63cd9e8ea784a7..ae6701ff6e7dc7fdd396a83647cc195af8afbccd 100644 (file)
@@ -151,8 +151,6 @@ PUBLIC int do_fcntl()
 
   register struct filp *f;
   int new_fd, r, fl;
-  long cloexec_mask;           /* bit map for the FD_CLOEXEC flag */
-  long clo_value;              /* FD_CLOEXEC flag in proper position */
   struct filp *dummy;
 
   /* Is the file descriptor valid? */
@@ -533,7 +531,7 @@ int ngroups;
 gid_t *groups;
 {
   struct fproc *rfp;
-  int slot, i;
+  int slot;
 
   okendpt(proc_e, &slot);
   rfp = &fproc[slot];
@@ -623,7 +621,7 @@ PUBLIC int pm_dumpcore(proc_e, seg_ptr)
 int proc_e;
 struct mem_map *seg_ptr;
 {
-       int r, proc_s;
+       int proc_s;
        
        /* Terminate the process */
        okendpt(proc_e, &proc_s);
index eb2434c1b6026125a5be90510d837a054ebe8d58..99ddc1c72a575eb9f8e6a5e5a473c0c40a4050e8 100644 (file)
@@ -128,7 +128,6 @@ PRIVATE int mount_fs(endpoint_t fs_e)
   struct fproc *tfp;
   struct dmap *dp;
   dev_t dev;
-  message m;
   struct vnode *root_node, *vp = NULL, *bspec;
   struct vmnt *vmp;
   char *label;
@@ -405,11 +404,10 @@ PUBLIC int unmount(dev, label)
 Dev_t dev;                             /* block-special device */
 char *label;                           /* buffer to retrieve label, or NULL */
 {
-  struct vnode *vp, *vi;
+  struct vnode *vp;
   struct vmnt *vmp_i = NULL, *vmp = NULL;
   struct dmap *dp;
   int count, r;
-  int fs_e;
   
   /* Find vmnt that is to be unmounted */
   for(vmp_i = &vmnt[0]; vmp_i < &vmnt[NR_MNTS]; ++vmp_i) {
@@ -496,7 +494,6 @@ int allow_mountpt;
  * and the path is the root node of a mounted file system, return that device
  * number. In all other cases, return NO_DEV and an error code in 'err_code'.
  */
-  int r;
   dev_t dev;
   struct vnode *vp;
   
@@ -522,7 +519,7 @@ int allow_mountpt;
 /*===========================================================================*
  *                              is_nonedev                                  *
  *===========================================================================*/
-PRIVATE int is_nonedev(dev)
+PRIVATE int is_nonedev(int dev)
 {
 /* Return whether the given device is a "none" pseudo device.
  */
index 2952f1604eaec513c545f807a18babf41b4d0eae..9282e00a67785eb0a36e109e3880dd2c377e84b1 100644 (file)
@@ -247,7 +247,6 @@ PRIVATE struct vnode *new_node(int oflags, mode_t bits)
   struct vnode *dirp, *vp;
   int r, flags;
   struct node_details res;
-  struct vnode *rest;
 
   /* When O_CREAT and O_EXCL flags are set, the path may not be named by a
    * symbolic link. */
index 1d2f65299b5a00c0cebe866befcb50d66ff1c829..da89b86ac53e7280f04dfbb26de32b3bf2923319 100644 (file)
@@ -111,7 +111,6 @@ PUBLIC struct vnode *last_dir(void)
  * and parse the path up to the penultimate component.
  */  
 
-  int r;
   size_t len;
   char *cp;
   char dir_entry[PATH_MAX+1];
index 1a152197684a74374a341b791d118df5f35897e6..12148c450c424c308882fce13fbf80fb0256891a 100644 (file)
@@ -46,7 +46,6 @@ PUBLIC int do_pipe()
   struct filp *fil_ptr0, *fil_ptr1;
   int fil_des[2];              /* reply goes here */
   struct vnode *vp;
-  struct vmnt *vmp;
   struct node_details res;
 
   /* See if a free vnode is available */
@@ -581,7 +580,7 @@ int proc_nr_e;
  *===========================================================================*/
 PUBLIC int select_request_pipe(struct filp *f, int *ops, int block)
 {
-       int orig_ops, r = 0, err, canwrite;
+       int orig_ops, r = 0, err;
        orig_ops = *ops;
        if ((*ops & (SEL_RD|SEL_ERR))) {
                if ((err = pipe_check(f->filp_vno, READING, 0,
index b72828c4f174974155ab19586539a27960195cef..10fa125e723497e3f2316d5ca6e1b97db5ec3eac 100644 (file)
@@ -75,8 +75,6 @@ PUBLIC int do_chmod()
 PUBLIC int do_chown()
 {
 /* Perform the chmod(name, mode) and fchmod(fd, mode) system calls. */
-  int inode_nr;
-  int fs_e;
   struct filp *flp;
   struct vnode *vp;
   int r;
@@ -173,11 +171,10 @@ PUBLIC int forbidden(struct vnode *vp, mode_t access_desired)
  * if it is forbidden, EACCES is returned.
  */
 
-  register struct super_block *sp;
   register mode_t bits, perm_bits;
   uid_t uid;
   gid_t gid;
-  int r, shift, type;
+  int r, shift;
 
   if (vp->v_uid == (uid_t) -1 || vp->v_gid == (gid_t) -1) return(EACCES);
 
index 819805a3d54b2ab1896f79ac4161baf0bc61d656..a1a377c8ee178747b3e773d825671cb3477ce93a 100644 (file)
@@ -43,14 +43,11 @@ int rw_flag;                        /* READING or WRITING */
 /* Perform read(fd, buffer, nbytes) or write(fd, buffer, nbytes) call. */
   register struct filp *f;
   register struct vnode *vp;
-  off_t bytes_left;
   u64_t position, res_pos, new_pos;
-  unsigned int off, cum_io, cum_io_incr, res_cum_io;
-  int op, oflags, r, chunk, block_spec, char_spec;
+  unsigned int cum_io, cum_io_incr, res_cum_io;
+  int op, oflags, r, block_spec, char_spec;
   int regular;
   mode_t mode_word;
-  phys_bytes p;
-  struct dmap *dp;
 
   /* If the file descriptor is valid, get the vnode, size and mode. */
   if (m_in.nbytes < 0) return(EINVAL);
@@ -154,7 +151,6 @@ PUBLIC int do_getdents()
 /* Perform the getdents(fd, buf, size) system call. */
   int r;
   u64_t new_pos;
-  cp_grant_id_t gid;
   register struct filp *rfilp;
 
   /* Is the file descriptor valid? */
@@ -191,10 +187,10 @@ struct filp *f;
 char *buf;
 size_t req_size;
 {
-  int r, oflags, partial_pipe = 0, r2;
-  size_t size, cum_io, cum_io_incr, cum_io_incr2;
+  int r, oflags, partial_pipe = 0;
+  size_t size, cum_io, cum_io_incr;
   struct vnode *vp;
-  u64_t position, new_pos, new_pos2;
+  u64_t position, new_pos;
 
   oflags = f->filp_flags;
   vp = f->filp_vno;
index ef5f4aeabbb2d48424794fc1b1708baa6e69d493..9b0993e062153c8b6de380e5ec42d170a1225cab 100644 (file)
@@ -12,9 +12,7 @@
 #include <sys/stat.h>
 #include <sys/statfs.h>
 #include <minix/vfsif.h>
-#include <minix/callnr.h>
 #include <minix/com.h>
-#include <minix/keymap.h>
 #include <minix/const.h>
 #include <minix/endpoint.h>
 #include <minix/u64.h>
@@ -1027,7 +1025,6 @@ PRIVATE int fs_sendrec_f(char *file, int line, endpoint_t fs_e, message *reqm)
  */
   int r, old_driver_e, new_driver_e;
   message origm, m;
-  struct vmnt *vmp;
 
   if(fs_e <= 0 || fs_e == NONE)
        panic("talking to bogus endpoint: %d", fs_e);
index e435b43a12182f2262f021e70f91024c8f24eeaf..46880cdf70e2c4b8374533a4a6a46bb3fe7054c4 100644 (file)
@@ -714,7 +714,7 @@ PUBLIC void select_unsuspend_by_endpt(endpoint_t proc_e)
  *===========================================================================*/
 PUBLIC void select_reply1()
 {
-       int i, s, minor, status;
+       int i, minor, status;
        endpoint_t driver_e;
        dev_t dev;
        struct filp *fp;
index 7beffde92b4b319cd828508a5a5e96e2efbf2714..30a0d6ce9cedc9d24f553ed884b83ceebf067ead 100644 (file)
@@ -75,7 +75,6 @@ int len;                      /* length of the directory name string */
 {
 /* Do the actual work for chdir() and chroot(). */
   struct vnode *vp;
-  int r;
 
   /* Try to open the directory */
   if (fetch_name(name_ptr, len, M3) != OK) return(err_code);
index 3415ec689063509bf8eee11142bce9dee667a73a..7ee63e57b46cedf0406c66b6cd04728b9915641b 100644 (file)
@@ -22,7 +22,6 @@ PUBLIC int do_utime()
 /* Perform the utime(name, timep) system call. */
   register int len;
   int r;
-  uid_t uid;
   time_t actime, modtime;
   struct vnode *vp;
   
index 0a97a729f0874656a5e64a5ea59b8de8186bb0bb..02509c2b0ffe3cbf5cb6d6eae51b42165fa5541b 100644 (file)
@@ -92,7 +92,7 @@ PUBLIC int isokendpt_f(char *file, int line, int endpoint, int *proc, int fatal)
   endpoint_t ke;
   *proc = _ENDPOINT_P(endpoint);
   if(endpoint == NONE) {
-       printf("vfs:%s: endpoint is NONE\n", file, line, endpoint);
+       printf("vfs:%s:%d: endpoint is NONE\n", file, line);
        failed = 1;
   } else if(*proc < 0 || *proc >= NR_PROCS) {
        printf("vfs:%s:%d: proc (%d) from endpoint (%d) out of range\n",