Home
last modified time | relevance | path

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

/titanic_41/usr/src/uts/common/io/fibre-channel/ulp/
H A Dfcsm.c2447 if (fcsm->sm_job_tail == NULL) { in fcsm_enque_job()
2449 fcsm->sm_job_head = fcsm->sm_job_tail = job; in fcsm_enque_job()
2459 if (fcsm->sm_job_tail == NULL) { in fcsm_enque_job()
2461 fcsm->sm_job_head = fcsm->sm_job_tail = job; in fcsm_enque_job()
2464 fcsm->sm_job_tail->job_next = job; in fcsm_enque_job()
2465 fcsm->sm_job_tail = job; in fcsm_enque_job()
2606 ASSERT(fcsm->sm_job_tail == NULL); in fcsm_deque_job()
2609 ASSERT(fcsm->sm_job_tail != NULL); in fcsm_deque_job()
2612 ASSERT(fcsm->sm_job_tail == job); in fcsm_deque_job()
2613 fcsm->sm_job_tail = NULL; in fcsm_deque_job()
[all …]
/titanic_41/usr/src/uts/common/sys/fibre-channel/ulp/
H A Dfcsm.h116 fcsm_job_t *sm_job_tail; /* port's job queue tail */ member