Home
last modified time | relevance | path

Searched refs:q_next (Results 1 – 6 of 6) sorted by relevance

/linux-2.4.37.9/net/irda/
Dirqueue.c263 entry = entry->q_next; in hashbin_find()
356 entry = entry->q_next; in hashbin_remove()
417 if((entry->q_next == NULL) || (entry->q_prev == NULL)) in hashbin_remove_this()
441 entry->q_next = NULL; in hashbin_remove_this()
514 entry = hashbin->hb_current->q_next; in hashbin_get_next()
565 element->q_next = element->q_prev = *queue = element; in __enqueue_last()
572 element->q_prev->q_next = element; in __enqueue_last()
574 element->q_next = *queue; in __enqueue_last()
608 element->q_next = element->q_prev = *queue = element; in enqueue_first()
614 element->q_next = (*queue); in enqueue_first()
[all …]
/linux-2.4.37.9/include/net/irda/
Dirqueue.h66 struct irda_queue *q_next; member
/linux-2.4.37.9/net/irda/irnet/
Dirnet_irda.c534 if((irnet_server.running) && (self->q.q_next == NULL)) in irda_irnet_connect()
593 if((irnet_server.running) && (self->q.q_next != NULL)) in irda_irnet_destroy()
600 self->q.q_next = NULL; in irda_irnet_destroy()
/linux-2.4.37.9/drivers/scsi/
Dips.c2970 item->q_next = queue->head;
3003 queue->head = item->q_next;
3004 item->q_next = NULL;
3041 while ((p) && (item != p->q_next))
3042 p = p->q_next;
3046 p->q_next = item->q_next;
3048 if (!item->q_next)
3051 item->q_next = NULL;
4618 scb_p->q_next = ha->scb_freelist;
4693 ha->scb_freelist = scb->q_next;
[all …]
Dips.h1155 struct ips_scb *q_next; member
1181 struct ips_scb *q_next; member
Daic7xxx_old.c842 struct aic7xxx_scb *q_next; /* next scb in queue */ member
2368 scb->q_next = queue->head; in scbq_insert_head()
2394 queue->head = queue->head->q_next; in scbq_remove_head()
2430 while ((curscb != NULL) && (curscb->q_next != scb)) in scbq_remove()
2432 curscb = curscb->q_next; in scbq_remove()
2437 curscb->q_next = scb->q_next; in scbq_remove()
2438 if (scb->q_next == NULL) in scbq_remove()
2464 scb->q_next = NULL; in scbq_insert_tail()
2466 queue->tail->q_next = scb; in scbq_insert_tail()
3467 scbp = scbp->q_next; in aic7xxx_reset_device()
[all …]