Home
last modified time | relevance | path

Searched refs:mq (Results 1 – 7 of 7) sorted by relevance

/linux-2.4.37.9/drivers/acorn/scsi/
Dmsgqueue.c27 struct msgqueue_entry *mq; in mqe_alloc() local
29 if ((mq = msgq->free) != NULL) in mqe_alloc()
30 msgq->free = mq->next; in mqe_alloc()
32 return mq; in mqe_alloc()
41 static void mqe_free(MsgQueue_t *msgq, struct msgqueue_entry *mq) in mqe_free() argument
43 if (mq) { in mqe_free()
44 mq->next = msgq->free; in mqe_free()
45 msgq->free = mq; in mqe_free()
85 struct msgqueue_entry *mq = msgq->qe; in msgqueue_msglength() local
88 for (mq = msgq->qe; mq; mq = mq->next) in msgqueue_msglength()
[all …]
/linux-2.4.37.9/drivers/isdn/avmb1/
Dkcapi.c664 struct msgidqueue *mq; in mq_enqueue() local
666 if ((mq = np->msgidfree) == 0) { in mq_enqueue()
670 np->msgidfree = mq->next; in mq_enqueue()
671 mq->msgid = msgid; in mq_enqueue()
672 mq->next = 0; in mq_enqueue()
674 np->msgidlast->next = mq; in mq_enqueue()
675 np->msgidlast = mq; in mq_enqueue()
677 np->msgidqueue = mq; in mq_enqueue()
689 struct msgidqueue *mq = *pp; in mq_dequeue() local
690 *pp = mq->next; in mq_dequeue()
[all …]
/linux-2.4.37.9/include/asm-ppc/
Dptrace.h30 unsigned long mq; /* 601 only (not used at present) */ member
/linux-2.4.37.9/arch/ppc64/xmon/
Dprivinst.h28 GSETSPR(0, mq)
/linux-2.4.37.9/arch/ppc/xmon/
Dprivinst.h24 GSETSPR(0, mq)
/linux-2.4.37.9/include/asm-ppc64/
Dptrace.h57 PPC_REG_32 mq; /* 601 only (not used at present) */ member
/linux-2.4.37.9/arch/ppc/kernel/
Dmk_defs.c109 DEFINE(_MQ, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, mq)); in main()