Home
last modified time | relevance | path

Searched refs:fcipd_head (Results 1 – 2 of 2) sorted by relevance

/titanic_44/usr/src/uts/common/io/fibre-channel/ulp/
H A Dfcip.c4233 fcip_pkt->fcip_pkt_next = fdestp->fcipd_head; in fcip_fdestp_enqueue_pkt()
4237 if (fdestp->fcipd_head != NULL) { in fcip_fdestp_enqueue_pkt()
4238 ASSERT(fdestp->fcipd_head->fcip_pkt_prev == NULL); in fcip_fdestp_enqueue_pkt()
4239 fdestp->fcipd_head->fcip_pkt_prev = fcip_pkt; in fcip_fdestp_enqueue_pkt()
4242 fdestp->fcipd_head = fcip_pkt; in fcip_fdestp_enqueue_pkt()
4259 fcipd_pkt = fdestp->fcipd_head; in fcip_fdestp_dequeue_pkt()
4264 if (fcipd_pkt == fdestp->fcipd_head) { in fcip_fdestp_dequeue_pkt()
4267 fdestp->fcipd_head = in fcip_fdestp_dequeue_pkt()
4287 ASSERT(fdestp->fcipd_head == fcip_pkt); in fcip_fdestp_dequeue_pkt()
4288 fdestp->fcipd_head = fcip_pkt->fcip_pkt_next; in fcip_fdestp_dequeue_pkt()
[all …]
/titanic_44/usr/src/uts/common/sys/fibre-channel/ulp/
H A Dfcip.h372 fcip_pkt_t *fcipd_head; /* packet head for this port */ member