Lines Matching refs:scbp
5653 struct scb *scbp; in ahc_search_disc_list() local
5688 scbp = ahc_lookup_scb(ahc, scb_index); in ahc_search_disc_list()
5689 if (ahc_match_scb(ahc, scbp, target, channel, lun, in ahc_search_disc_list()
5815 struct scb *scbp; in ahc_abort_scbs() local
5874 scbp = ahc_lookup_scb(ahc, scbid); in ahc_abort_scbs()
5875 if (scbp == NULL in ahc_abort_scbs()
5876 || ahc_match_scb(ahc, scbp, target, channel, in ahc_abort_scbs()
5906 scbp = ahc_lookup_scb(ahc, scbid); in ahc_abort_scbs()
5907 if ((scbp == NULL && scbid != SCB_LIST_NULL) in ahc_abort_scbs()
5908 || (scbp != NULL in ahc_abort_scbs()
5909 && ahc_match_scb(ahc, scbp, target, channel, lun, tag, role))) in ahc_abort_scbs()
5921 scbp = scbp_next; in ahc_abort_scbs()
5922 scbp_next = LIST_NEXT(scbp, pending_links); in ahc_abort_scbs()
5923 if (ahc_match_scb(ahc, scbp, target, channel, lun, tag, role)) { in ahc_abort_scbs()
5926 ostat = ahc_get_transaction_status(scbp); in ahc_abort_scbs()
5928 ahc_set_transaction_status(scbp, status); in ahc_abort_scbs()
5929 if (ahc_get_transaction_status(scbp) != CAM_REQ_CMP) in ahc_abort_scbs()
5930 ahc_freeze_scb(scbp); in ahc_abort_scbs()
5931 if ((scbp->flags & SCB_ACTIVE) == 0) in ahc_abort_scbs()
5933 ahc_done(ahc, scbp); in ahc_abort_scbs()