tag | line | file | source code |
msgh | 44 | ipc/msg.c | struct msg *msgh; |
msgh | 79 | ipc/msg.c | msgh = (struct msg *) kmalloc (sizeof(*msgh) + msgsz, GFP_USER); |
msgh | 80 | ipc/msg.c | if (!msgh) |
msgh | 82 | ipc/msg.c | msgh->msg_spot = (char *) (msgh + 1); |
msgh | 83 | ipc/msg.c | memcpy_fromfs (msgh->msg_spot, msgp->mtext, msgsz); |
msgh | 87 | ipc/msg.c | kfree_s (msgh, sizeof(*msgh) + msgsz); |
msgh | 91 | ipc/msg.c | msgh->msg_next = NULL; |
msgh | 93 | ipc/msg.c | msq->msg_first = msq->msg_last = msgh; |
msgh | 95 | ipc/msg.c | msq->msg_last->msg_next = msgh; |
msgh | 96 | ipc/msg.c | msq->msg_last = msgh; |
msgh | 98 | ipc/msg.c | msgh->msg_ts = msgsz; |
msgh | 99 | ipc/msg.c | msgh->msg_type = mtype; |
msgh | 295 | ipc/msg.c | struct msg *msgp, *msgh; |
msgh | 311 | ipc/msg.c | for (msgp = msq->msg_first; msgp; msgp = msgh ) { |
msgh | 312 | ipc/msg.c | msgh = msgp->msg_next; |