Lines Matching refs:scbp
6173 struct scb *scbp; in ahc_search_disc_list() local
6208 scbp = ahc_lookup_scb(ahc, scb_index); in ahc_search_disc_list()
6209 if (ahc_match_scb(ahc, scbp, target, channel, lun, in ahc_search_disc_list()
6335 struct scb *scbp; in ahc_abort_scbs() local
6394 scbp = ahc_lookup_scb(ahc, scbid); in ahc_abort_scbs()
6395 if (scbp == NULL in ahc_abort_scbs()
6396 || ahc_match_scb(ahc, scbp, target, channel, in ahc_abort_scbs()
6426 scbp = ahc_lookup_scb(ahc, scbid); in ahc_abort_scbs()
6427 if ((scbp == NULL && scbid != SCB_LIST_NULL) in ahc_abort_scbs()
6428 || (scbp != NULL in ahc_abort_scbs()
6429 && ahc_match_scb(ahc, scbp, target, channel, lun, tag, role))) in ahc_abort_scbs()
6441 scbp = scbp_next; in ahc_abort_scbs()
6442 scbp_next = LIST_NEXT(scbp, pending_links); in ahc_abort_scbs()
6443 if (ahc_match_scb(ahc, scbp, target, channel, lun, tag, role)) { in ahc_abort_scbs()
6446 ostat = ahc_get_transaction_status(scbp); in ahc_abort_scbs()
6448 ahc_set_transaction_status(scbp, status); in ahc_abort_scbs()
6449 if (ahc_get_transaction_status(scbp) != CAM_REQ_CMP) in ahc_abort_scbs()
6450 ahc_freeze_scb(scbp); in ahc_abort_scbs()
6451 if ((scbp->flags & SCB_ACTIVE) == 0) in ahc_abort_scbs()
6453 ahc_done(ahc, scbp); in ahc_abort_scbs()