]> Zhao Yanbai Git Server - minix.git/commitdiff
mini_receive() clean up
authorBen Gras <ben@minix3.org>
Tue, 29 Jun 2010 12:06:29 +0000 (12:06 +0000)
committerBen Gras <ben@minix3.org>
Tue, 29 Jun 2010 12:06:29 +0000 (12:06 +0000)
(r7461 from trunk)

kernel/proc.c

index 85fb811f7c5960e12a61232e11df2fae01a8cb27..70983478c73493e6b2816c055e4dcf6a9b59a90a 100644 (file)
@@ -590,10 +590,10 @@ PUBLIC int mini_send(
        caller_ptr->p_sendto_e = dst_e;
 
        /* Process is now blocked.  Put in on the destination's queue. */
+       assert(caller_ptr->p_q_link == NULL);
        xpp = &dst_ptr->p_caller_q;             /* find end of list */
        while (*xpp) xpp = &(*xpp)->p_q_link;   
        *xpp = caller_ptr;                      /* add caller to end */
-       caller_ptr->p_q_link = NULL;    /* mark new end of list */
   }
   return(OK);
 }
@@ -700,37 +700,40 @@ PRIVATE int mini_receive(
     /* Check caller queue. Use pointer pointers to keep code simple. */
     xpp = &caller_ptr->p_caller_q;
     while (*xpp) {
-        if (src_e == ANY || src_p == proc_nr(*xpp)) {
+       struct proc * sender = *xpp;
+
+        if (src_e == ANY || src_p == proc_nr(sender)) {
             int call;
-           assert(!RTS_ISSET(*xpp, RTS_SLOT_FREE));
-           assert(!RTS_ISSET(*xpp, RTS_NO_ENDPOINT));
+           assert(!RTS_ISSET(sender, RTS_SLOT_FREE));
+           assert(!RTS_ISSET(sender, RTS_NO_ENDPOINT));
 
            /* Found acceptable message. Copy it and update status. */
            assert(!(caller_ptr->p_misc_flags & MF_DELIVERMSG));
-           caller_ptr->p_delivermsg = (*xpp)->p_sendmsg;
-           caller_ptr->p_delivermsg.m_source = (*xpp)->p_endpoint;
+           caller_ptr->p_delivermsg = sender->p_sendmsg;
+           caller_ptr->p_delivermsg.m_source = sender->p_endpoint;
            caller_ptr->p_misc_flags |= MF_DELIVERMSG;
-           RTS_UNSET(*xpp, RTS_SENDING);
+           RTS_UNSET(sender, RTS_SENDING);
 
-           call = ((*xpp)->p_misc_flags & MF_REPLY_PEND ? SENDREC : SEND);
+           call = (sender->p_misc_flags & MF_REPLY_PEND ? SENDREC : SEND);
            IPC_STATUS_ADD_CALL(caller_ptr, call);
 
            /*
             * if the message is originaly from the kernel on behalf of this
             * process, we must send the status flags accordingly
             */
-           if ((*xpp)->p_misc_flags & MF_SENDING_FROM_KERNEL) {
+           if (sender->p_misc_flags & MF_SENDING_FROM_KERNEL) {
                IPC_STATUS_ADD_FLAGS(caller_ptr, IPC_FLG_MSG_FROM_KERNEL);
                /* we can clean the flag now, not need anymore */
-               (*xpp)->p_misc_flags &= ~MF_SENDING_FROM_KERNEL;
+               sender->p_misc_flags &= ~MF_SENDING_FROM_KERNEL;
            }
-           if ((*xpp)->p_misc_flags & MF_SIG_DELAY)
-               sig_delay_done(*xpp);
+           if (sender->p_misc_flags & MF_SIG_DELAY)
+               sig_delay_done(sender);
 
-            *xpp = (*xpp)->p_q_link;           /* remove from queue */
+            *xpp = sender->p_q_link;           /* remove from queue */
+           sender->p_q_link = NULL;
             return(OK);                                /* report success */
        }
-       xpp = &(*xpp)->p_q_link;                /* proceed to next */
+       xpp = &sender->p_q_link;                /* proceed to next */
     }
   }