Searched refs:scbp (Results 1 – 4 of 4) sorted by relevance
/drivers/scsi/ |
D | initio.c | 735 static void initio_append_pend_scb(struct initio_host * host, struct scsi_ctrl_blk * scbp) in initio_append_pend_scb() argument 739 printk("Append pend SCB %p; ", scbp); in initio_append_pend_scb() 741 scbp->status = SCB_PEND; in initio_append_pend_scb() 742 scbp->next = NULL; in initio_append_pend_scb() 744 host->last_pending->next = scbp; in initio_append_pend_scb() 745 host->last_pending = scbp; in initio_append_pend_scb() 747 host->first_pending = scbp; in initio_append_pend_scb() 748 host->last_pending = scbp; in initio_append_pend_scb() 753 static void initio_push_pend_scb(struct initio_host * host, struct scsi_ctrl_blk * scbp) in initio_push_pend_scb() argument 757 printk("Push pend SCB %p; ", scbp); in initio_push_pend_scb() [all …]
|
D | aic7xxx_old.c | 2298 struct aic7xxx_scb * scbp; in scbq_remove_head() local 2300 scbp = queue->head; in scbq_remove_head() 2305 return(scbp); in scbq_remove_head() 2530 struct aic7xxx_scb *scbp = NULL; in aic7xxx_allocate_scb() local 2598 scbp = &scb_ap[i]; in aic7xxx_allocate_scb() 2599 scbp->hscb = &p->scb_data->hscbs[p->scb_data->numscbs]; in aic7xxx_allocate_scb() 2600 scbp->sg_list = &hsgp[i * AIC7XXX_MAX_SG]; in aic7xxx_allocate_scb() 2601 scbp->sense_cmd = bufs; in aic7xxx_allocate_scb() 2602 scbp->cmnd = bufs + 6; in aic7xxx_allocate_scb() 2604 scbp->scb_dma = scb_dma; in aic7xxx_allocate_scb() [all …]
|
/drivers/scsi/aic7xxx/ |
D | aic7xxx_core.c | 6174 struct scb *scbp; in ahc_search_disc_list() local 6209 scbp = ahc_lookup_scb(ahc, scb_index); in ahc_search_disc_list() 6210 if (ahc_match_scb(ahc, scbp, target, channel, lun, in ahc_search_disc_list() 6336 struct scb *scbp; in ahc_abort_scbs() local 6395 scbp = ahc_lookup_scb(ahc, scbid); in ahc_abort_scbs() 6396 if (scbp == NULL in ahc_abort_scbs() 6397 || ahc_match_scb(ahc, scbp, target, channel, in ahc_abort_scbs() 6427 scbp = ahc_lookup_scb(ahc, scbid); in ahc_abort_scbs() 6428 if ((scbp == NULL && scbid != SCB_LIST_NULL) in ahc_abort_scbs() 6429 || (scbp != NULL in ahc_abort_scbs() [all …]
|
D | aic79xx_core.c | 8586 struct scb *scbp; in ahd_abort_scbs() local 8632 scbp = ahd_lookup_scb(ahd, scbid); in ahd_abort_scbs() 8633 if (scbp == NULL in ahd_abort_scbs() 8634 || ahd_match_scb(ahd, scbp, target, channel, in ahd_abort_scbs() 8656 scbp = scbp_next; in ahd_abort_scbs() 8657 scbp_next = LIST_NEXT(scbp, pending_links); in ahd_abort_scbs() 8658 if (ahd_match_scb(ahd, scbp, target, channel, lun, tag, role)) { in ahd_abort_scbs() 8661 ostat = ahd_get_transaction_status(scbp); in ahd_abort_scbs() 8663 ahd_set_transaction_status(scbp, status); in ahd_abort_scbs() 8664 if (ahd_get_transaction_status(scbp) != CAM_REQ_CMP) in ahd_abort_scbs() [all …]
|