Home
last modified time | relevance | path

Searched refs:first_pending (Results 1 – 3 of 3) sorted by relevance

/linux-4.1.27/block/
Dblk-throttle.c73 struct rb_node *first_pending; /* first node in the tree */ member
559 if (!parent_sq->first_pending) in throtl_rb_first()
560 parent_sq->first_pending = rb_first(&parent_sq->pending_tree); in throtl_rb_first()
562 if (parent_sq->first_pending) in throtl_rb_first()
563 return rb_entry_tg(parent_sq->first_pending); in throtl_rb_first()
577 if (parent_sq->first_pending == n) in throtl_rb_erase()
578 parent_sq->first_pending = NULL; in throtl_rb_erase()
616 parent_sq->first_pending = &tg->rb_node; in tg_service_queue_add()
/linux-4.1.27/drivers/scsi/
Dinitio.c747 host->first_pending = scbp; in initio_append_pend_scb()
760 if ((scbp->next = host->first_pending) != NULL) { in initio_push_pend_scb()
761 host->first_pending = scbp; in initio_push_pend_scb()
763 host->first_pending = scbp; in initio_push_pend_scb()
773 first = host->first_pending; in initio_find_first_pend_scb()
803 prev = tmp = host->first_pending; in initio_unlink_pend_scb()
806 if (tmp == host->first_pending) { in initio_unlink_pend_scb()
807 if ((host->first_pending = tmp->next) == NULL) in initio_unlink_pend_scb()
969 prev = tmp = host->first_pending; /* Check Pend queue */ in initio_abort_srb()
976 } else if (tmp == host->first_pending) { in initio_abort_srb()
[all …]
Dinitio.h529 struct scsi_ctrl_blk *first_pending; /* 40 */ member