Lines Matching refs:scbp
6107 struct scb *scbp; in ahc_search_disc_list() local
6142 scbp = ahc_lookup_scb(ahc, scb_index); in ahc_search_disc_list()
6143 if (ahc_match_scb(ahc, scbp, target, channel, lun, in ahc_search_disc_list()
6269 struct scb *scbp; in ahc_abort_scbs() local
6328 scbp = ahc_lookup_scb(ahc, scbid); in ahc_abort_scbs()
6329 if (scbp == NULL in ahc_abort_scbs()
6330 || ahc_match_scb(ahc, scbp, target, channel, in ahc_abort_scbs()
6360 scbp = ahc_lookup_scb(ahc, scbid); in ahc_abort_scbs()
6361 if ((scbp == NULL && scbid != SCB_LIST_NULL) in ahc_abort_scbs()
6362 || (scbp != NULL in ahc_abort_scbs()
6363 && ahc_match_scb(ahc, scbp, target, channel, lun, tag, role))) in ahc_abort_scbs()
6375 scbp = scbp_next; in ahc_abort_scbs()
6376 scbp_next = LIST_NEXT(scbp, pending_links); in ahc_abort_scbs()
6377 if (ahc_match_scb(ahc, scbp, target, channel, lun, tag, role)) { in ahc_abort_scbs()
6380 ostat = ahc_get_transaction_status(scbp); in ahc_abort_scbs()
6382 ahc_set_transaction_status(scbp, status); in ahc_abort_scbs()
6383 if (ahc_get_transaction_status(scbp) != CAM_REQ_CMP) in ahc_abort_scbs()
6384 ahc_freeze_scb(scbp); in ahc_abort_scbs()
6385 if ((scbp->flags & SCB_ACTIVE) == 0) in ahc_abort_scbs()
6387 ahc_done(ahc, scbp); in ahc_abort_scbs()