/linux-2.4.37.9/drivers/scsi/ |
D | i91uscsi.c | 590 int init_tulip(HCS * pCurHcb, SCB * scbp, int tul_num_scb, BYTE * pbBiosAdr, int seconds) in init_tulip() argument 603 pCurHcb->HCS_Scb = scbp; in init_tulip() 604 pCurHcb->HCS_NxtPend = scbp; in init_tulip() 605 pCurHcb->HCS_NxtAvail = scbp; in init_tulip() 606 for (i = 0, pTmpScb = scbp; i < tul_num_scb; i++, pTmpScb++) { in init_tulip() 614 pCurHcb->HCS_FirstAvail = scbp; in init_tulip() 740 void tul_release_scb(HCS * hcsp, SCB * scbp) in tul_release_scb() argument 745 printk("Release SCB %lx; ", (ULONG) scbp); in tul_release_scb() 753 scbp->SCB_Srb = 0; in tul_release_scb() 754 scbp->SCB_Status = 0; in tul_release_scb() [all …]
|
D | aic7xxx_old.c | 2386 struct aic7xxx_scb * scbp; in scbq_remove_head() local 2392 scbp = queue->head; in scbq_remove_head() local 2398 return(scbp); in scbq_remove_head() 2635 struct aic7xxx_scb *scbp = NULL; in aic7xxx_allocate_scb() local 2703 scbp = &scb_ap[i]; in aic7xxx_allocate_scb() 2704 scbp->hscb = &p->scb_data->hscbs[p->scb_data->numscbs]; in aic7xxx_allocate_scb() 2705 scbp->sg_list = &hsgp[i * AIC7XXX_MAX_SG]; in aic7xxx_allocate_scb() 2706 scbp->sense_cmd = bufs; in aic7xxx_allocate_scb() 2707 scbp->cmnd = bufs + 6; in aic7xxx_allocate_scb() 2709 scbp->scb_dma = scb_dma; in aic7xxx_allocate_scb() [all …]
|
D | i60uscsi.c | 301 void orc_exec_scb(ORC_HCS * hcsp, ORC_SCB * scbp) in orc_exec_scb() argument 303 scbp->SCB_Status = SCB_POST; in orc_exec_scb() 304 ORC_WR(hcsp->HCS_Base + ORC_PQUEUE, scbp->SCB_ScbIdx); in orc_exec_scb() 672 void orc_release_scb(ORC_HCS * hcsp, ORC_SCB * scbp) in orc_release_scb() argument 681 Index = scbp->SCB_ScbIdx; in orc_release_scb()
|
D | inia100.c | 127 extern void orc_exec_scb(ORC_HCS * hcsp, ORC_SCB * scbp); 128 extern void orc_release_scb(ORC_HCS * hcsp, ORC_SCB * scbp);
|
D | megaraid.c | 5374 mega_scb *scbp; local 5422 for( scbp = this_hba->qPendingH; scbp; scbp = scbp->next ) { 5424 if( scbp->pthru->logdrv < 0x80 ) 5425 scbp->pthru->logdrv += 0x80; 5427 if( scbp->pthru.logdrv < 0x80 ) 5428 scbp->pthru.logdrv += 0x80;
|
/linux-2.4.37.9/drivers/net/ |
D | dgrs.c | 204 I596_SCB *scbp; /* Ptr to SCB struct in VM */ member 780 priv0->scbp->status |= I596_SCB_RNR; /* simulate I82596 */ in dgrs_start_xmit() 912 cmd = priv0->scbp->cmd; in dgrs_intr() 920 priv0->rfdp = (I596_RFD *) S2H(priv0->scbp->rfdp); in dgrs_intr() 922 priv0->scbp->status &= ~(I596_SCB_RNR|I596_SCB_RUS); in dgrs_intr() 942 priv0->scbp->cmd = 0; /* Ignore all other commands */ in dgrs_intr() 945 priv0->scbp->status &= ~(I596_SCB_CNA|I596_SCB_CUS); in dgrs_intr() 950 cbp = (I596_CB *) S2H(priv0->scbp->cbp); in dgrs_intr() 951 priv0->scbp->cmd = 0; /* Safe to clear the command */ in dgrs_intr() 967 priv0->scbp->status |= I596_SCB_CNA; in dgrs_intr() [all …]
|
D | dgrs_ether.h | 26 I596_SCB *scbp; /* Uncached SCB pointer */ member
|
D | dgrs_i82596.h | 448 I596_SCB *scbp; member
|
/linux-2.4.37.9/drivers/scsi/aic7xxx/ |
D | aic7xxx_core.c | 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() [all …]
|
D | aic79xx_core.c | 7289 struct scb *scbp; in ahd_abort_scbs() local 7335 scbp = ahd_lookup_scb(ahd, scbid); in ahd_abort_scbs() 7336 if (scbp == NULL in ahd_abort_scbs() 7337 || ahd_match_scb(ahd, scbp, target, channel, in ahd_abort_scbs() 7359 scbp = scbp_next; in ahd_abort_scbs() 7360 scbp_next = LIST_NEXT(scbp, pending_links); in ahd_abort_scbs() 7361 if (ahd_match_scb(ahd, scbp, target, channel, lun, tag, role)) { in ahd_abort_scbs() 7364 ostat = ahd_get_transaction_status(scbp); in ahd_abort_scbs() 7366 ahd_set_transaction_status(scbp, status); in ahd_abort_scbs() 7367 if (ahd_get_transaction_status(scbp) != CAM_REQ_CMP) in ahd_abort_scbs() [all …]
|