Lines Matching refs:norbi
588 struct orb_info *norbi; in sbp_targ_abort() local
591 for (; orbi != NULL; orbi = norbi) { in sbp_targ_abort()
593 norbi = STAILQ_NEXT(orbi, link); in sbp_targ_abort()
665 struct orb_info *norbi; in sbp_targ_send_status()
712 norbi = STAILQ_NEXT(orbi, link); in sbp_targ_send_status()
713 while (norbi) { in sbp_targ_send_status()
714 printf("%s: status=%d\n", __func__, norbi->state); in sbp_targ_send_status()
715 if (norbi->ccb != NULL) { in sbp_targ_send_status()
716 norbi->ccb->ccb_h.status = CAM_REQ_ABORTED; in sbp_targ_send_status()
717 xpt_done(norbi->ccb); in sbp_targ_send_status()
718 norbi->ccb = NULL; in sbp_targ_send_status()
720 sbp_targ_remove_orb_info_locked(orbi->login, norbi); in sbp_targ_send_status()
721 norbi = STAILQ_NEXT(norbi, link); in sbp_targ_send_status()
722 free(norbi, M_SBP_TARG); in sbp_targ_send_status()