Home
last modified time | relevance | path

Searched refs:fp_job_tail (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/sys/fibre-channel/impl/
H A Dfctl_private.h446 struct job_request *fp_job_tail; member
/illumos-gate/usr/src/uts/common/io/fibre-channel/impl/
H A Dfctl.c4334 if (port->fp_job_tail == NULL) { in fctl_enque_job()
4336 port->fp_job_head = port->fp_job_tail = job; in fctl_enque_job()
4338 port->fp_job_tail->job_next = job; in fctl_enque_job()
4339 port->fp_job_tail = job; in fctl_enque_job()
4356 ASSERT(port->fp_job_tail == NULL); in fctl_deque_job()
4361 ASSERT(job == port->fp_job_tail); in fctl_deque_job()
4362 port->fp_job_tail = NULL; in fctl_deque_job()
4377 if (port->fp_job_tail == NULL) { in fctl_priority_enque_job()
4379 port->fp_job_head = port->fp_job_tail = job; in fctl_priority_enque_job()
H A Dfp.c1159 ASSERT(port->fp_job_tail == NULL && port->fp_job_head == NULL); in fp_attach_handler()
1167 port->fp_job_head = port->fp_job_tail = job; in fp_attach_handler()
/illumos-gate/usr/src/cmd/mdb/common/modules/fctl/
H A Dfctl.c481 mdb_printf(" fp_job_tail : 0x%p\n", port.fp_job_tail); in fcport()