taglinefilesource code
msgh44ipc/msg.cstruct msg *msgh;
msgh79ipc/msg.cmsgh = (struct msg *) kmalloc (sizeof(*msgh) + msgsz, GFP_USER);
msgh80ipc/msg.cif (!msgh)
msgh82ipc/msg.cmsgh->msg_spot = (char *) (msgh + 1);
msgh83ipc/msg.cmemcpy_fromfs (msgh->msg_spot, msgp->mtext, msgsz); 
msgh87ipc/msg.ckfree(msgh);
msgh91ipc/msg.cmsgh->msg_next = NULL;
msgh93ipc/msg.cmsq->msg_first = msq->msg_last = msgh;
msgh95ipc/msg.cmsq->msg_last->msg_next = msgh;
msgh96ipc/msg.cmsq->msg_last = msgh;
msgh98ipc/msg.cmsgh->msg_ts = msgsz;
msgh99ipc/msg.cmsgh->msg_type = mtype;
msgh295ipc/msg.cstruct msg *msgp, *msgh;
msgh311ipc/msg.cfor (msgp = msq->msg_first; msgp; msgp = msgh ) {
msgh312ipc/msg.cmsgh = msgp->msg_next;