Home
last modified time | relevance | path

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

/Linux-v5.10/drivers/scsi/
Dinitio.c705 static void initio_append_pend_scb(struct initio_host * host, struct scsi_ctrl_blk * scbp) in initio_append_pend_scb() argument
709 printk("Append pend SCB %p; ", scbp); in initio_append_pend_scb()
711 scbp->status = SCB_PEND; in initio_append_pend_scb()
712 scbp->next = NULL; in initio_append_pend_scb()
714 host->last_pending->next = scbp; in initio_append_pend_scb()
715 host->last_pending = scbp; in initio_append_pend_scb()
717 host->first_pending = scbp; in initio_append_pend_scb()
718 host->last_pending = scbp; in initio_append_pend_scb()
723 static void initio_push_pend_scb(struct initio_host * host, struct scsi_ctrl_blk * scbp) in initio_push_pend_scb() argument
727 printk("Push pend SCB %p; ", scbp); in initio_push_pend_scb()
[all …]
/Linux-v5.10/drivers/scsi/aic7xxx/
Daic7xxx_core.c6112 struct scb *scbp; in ahc_search_disc_list() local
6147 scbp = ahc_lookup_scb(ahc, scb_index); in ahc_search_disc_list()
6148 if (ahc_match_scb(ahc, scbp, target, channel, lun, in ahc_search_disc_list()
6274 struct scb *scbp; in ahc_abort_scbs() local
6333 scbp = ahc_lookup_scb(ahc, scbid); in ahc_abort_scbs()
6334 if (scbp == NULL in ahc_abort_scbs()
6335 || ahc_match_scb(ahc, scbp, target, channel, in ahc_abort_scbs()
6365 scbp = ahc_lookup_scb(ahc, scbid); in ahc_abort_scbs()
6366 if ((scbp == NULL && scbid != SCB_LIST_NULL) in ahc_abort_scbs()
6367 || (scbp != NULL in ahc_abort_scbs()
[all …]
Daic79xx_core.c8495 struct scb *scbp; in ahd_abort_scbs() local
8541 scbp = ahd_lookup_scb(ahd, scbid); in ahd_abort_scbs()
8542 if (scbp == NULL in ahd_abort_scbs()
8543 || ahd_match_scb(ahd, scbp, target, channel, in ahd_abort_scbs()
8565 scbp = scbp_next; in ahd_abort_scbs()
8566 scbp_next = LIST_NEXT(scbp, pending_links); in ahd_abort_scbs()
8567 if (ahd_match_scb(ahd, scbp, target, channel, lun, tag, role)) { in ahd_abort_scbs()
8570 ostat = ahd_get_transaction_status(scbp); in ahd_abort_scbs()
8572 ahd_set_transaction_status(scbp, status); in ahd_abort_scbs()
8573 if (ahd_get_transaction_status(scbp) != CAM_REQ_CMP) in ahd_abort_scbs()
[all …]