Home | History | Annotate | Download | only in raidframe

Lines Matching refs:elem

67 rf_FifoEnqueue(void *q_in, RF_DiskQueueData_t *elem, int priority)
73 elem->next = NULL;
77 q->hq_head = q->hq_tail = elem;
80 q->hq_tail->next = elem;
81 q->hq_tail = elem;
85 RF_ASSERT(elem->next == NULL);
89 elem->raidPtr->raidid);
94 q->lq_head = q->lq_tail = elem;
97 q->lq_tail->next = elem;
98 q->lq_tail = elem;
102 if ((q->hq_count + q->lq_count) != elem->queue->queueLength) {
104 q->hq_count, q->lq_count, (int) elem->queue->queueLength);
106 (int) elem->queue->numOutstanding,
107 (int) elem->queue->maxOutstanding,
108 (int) elem->queue->col);
110 RF_ASSERT((q->hq_count + q->lq_count) == elem->queue->queueLength);