Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/io/fibre-channel/ulp/
H A Dfcsm.c2446 if (fcsm->sm_job_tail == NULL) { in fcsm_enque_job()
2448 fcsm->sm_job_head = fcsm->sm_job_tail = job; in fcsm_enque_job()
2458 if (fcsm->sm_job_tail == NULL) { in fcsm_enque_job()
2460 fcsm->sm_job_head = fcsm->sm_job_tail = job; in fcsm_enque_job()
2463 fcsm->sm_job_tail->job_next = job; in fcsm_enque_job()
2464 fcsm->sm_job_tail = job; in fcsm_enque_job()
2605 ASSERT(fcsm->sm_job_tail == NULL); in fcsm_deque_job()
2608 ASSERT(fcsm->sm_job_tail != NULL); in fcsm_deque_job()
2611 ASSERT(fcsm->sm_job_tail == job); in fcsm_deque_job()
2612 fcsm->sm_job_tail = NULL; in fcsm_deque_job()
[all …]
/illumos-gate/usr/src/uts/common/sys/fibre-channel/ulp/
H A Dfcsm.h116 fcsm_job_t *sm_job_tail; /* port's job queue tail */ member