Home
last modified time | relevance | path

Searched refs:Exchanges (Results 1 – 5 of 5) sorted by relevance

/linux-2.4.37.9/drivers/scsi/
DcpqfcTSworker.c287 FC_EXCHANGES *Exchanges = fcChip->Exchanges; in cpqfcTS_WorkTask() local
326 if (Exchanges->fcExchange[ExchangeID].status & EXCHANGE_QUEUED) { in cpqfcTS_WorkTask()
432 if (Exchanges->fcExchange[x_ID].Cmnd == NULL) // should be RARE in cpqfcTS_WorkTask()
440 if (Exchanges->fcExchange[x_ID].status & FC2_TIMEOUT) { in cpqfcTS_WorkTask()
443 if (Exchanges->fcExchange[x_ID].status & INITIATOR_ABORT) { in cpqfcTS_WorkTask()
446 if (Exchanges->fcExchange[x_ID].status & PORTID_CHANGED) { in cpqfcTS_WorkTask()
449 if (Exchanges->fcExchange[x_ID].status & DEVICE_REMOVED) { in cpqfcTS_WorkTask()
452 if (Exchanges->fcExchange[x_ID].status & LINKFAIL_TX) { in cpqfcTS_WorkTask()
455 if (Exchanges->fcExchange[x_ID].status & FRAME_TO) { in cpqfcTS_WorkTask()
458 if (Exchanges->fcExchange[x_ID].status & ABORTSEQ_NOTIFY) { in cpqfcTS_WorkTask()
[all …]
DcpqfcTScontrol.c60 if (fcChip->Exchanges != NULL) in cpqfc_free_dma_consistent()
61 …pci_free_consistent(cpqfcHBAdata->PciDev, sizeof(FC_EXCHANGES), fcChip->Exchanges, fcChip->exch_dm… in cpqfc_free_dma_consistent()
62 fcChip->Exchanges = NULL; in cpqfc_free_dma_consistent()
91 fcChip->Exchanges = NULL; in CpqTsCreateTachLiteQues()
95 …fcChip->Exchanges = pci_alloc_consistent(cpqfcHBAdata->PciDev, sizeof(FC_EXCHANGES), &fcChip->exch… in CpqTsCreateTachLiteQues()
96 printk("@ %p\n", fcChip->Exchanges); in CpqTsCreateTachLiteQues()
98 if (fcChip->Exchanges == NULL) // fatal error!! in CpqTsCreateTachLiteQues()
104 memset(fcChip->Exchanges, 0, sizeof(FC_EXCHANGES)); in CpqTsCreateTachLiteQues()
643 FC_EXCHANGES *Exchanges = fcChip->Exchanges; in CpqTsProcessIMQEntry() local
724 Exchanges->fcExchange[x_ID].status |= dwStatus; in CpqTsProcessIMQEntry()
[all …]
DcpqfcTSinit.c1265 FC_EXCHANGES *Exchanges = fcChip->Exchanges; in cpqfcTS_eh_abort() local
1286 if (Exchanges->fcExchange[i].Cmnd == Cmnd) { in cpqfcTS_eh_abort()
1289 printk(" x_ID %Xh, type %Xh\n", i, Exchanges->fcExchange[i].type); in cpqfcTS_eh_abort()
1291 Exchanges->fcExchange[i].status = INITIATOR_ABORT; // seconds default in cpqfcTS_eh_abort()
1292 Exchanges->fcExchange[i].timeOut = 10; // seconds default (changed later) in cpqfcTS_eh_abort()
Dcpqfc.Readme7 SEST size 512 Exchanges (simultaneous I/Os) limited by module kmalloc()
112 Allocating 119808 for 576 Exchanges @ c0dc0000
114 Allocating 110600 for TachSEST for 512 Exchanges
248 This can be easily changed in "Exchanges[].timeOut".
DcpqfcTSstructs.h776 FC_EXCHANGES *Exchanges; member