Home
last modified time | relevance | path

Searched refs:numSGE (Results 1 – 6 of 6) sorted by relevance

/linux-2.6.39/drivers/message/fusion/
Dmptfc.c1187 int numSGE = 0; in mptfc_probe() local
1280 numSGE = (scale - 1) * in mptfc_probe()
1284 numSGE = 1 + (scale - 1) * in mptfc_probe()
1289 if (numSGE < sh->sg_tablesize) { in mptfc_probe()
1293 ioc->name, numSGE, sh->sg_tablesize)); in mptfc_probe()
1294 sh->sg_tablesize = numSGE; in mptfc_probe()
Dmptspi.c1346 int numSGE = 0; in mptspi_probe() local
1453 numSGE = (scale - 1) * in mptspi_probe()
1457 numSGE = 1 + (scale - 1) * in mptspi_probe()
1462 if (numSGE < sh->sg_tablesize) { in mptspi_probe()
1466 ioc->name, numSGE, sh->sg_tablesize)); in mptspi_probe()
1467 sh->sg_tablesize = numSGE; in mptspi_probe()
Dmptbase.c4259 int scale, num_sge, numSGE; in initChainBuffers() local
4302 numSGE = (scale - 1) * (ioc->facts.MaxChainDepth-1) + scale + in initChainBuffers()
4305 numSGE = 1 + (scale - 1) * (ioc->facts.MaxChainDepth-1) + in initChainBuffers()
4309 ioc->name, num_sge, numSGE)); in initChainBuffers()
4312 if (numSGE > MPT_SCSI_FC_SG_DEPTH) in initChainBuffers()
4313 numSGE = MPT_SCSI_FC_SG_DEPTH; in initChainBuffers()
4315 if (numSGE > MPT_SCSI_SG_DEPTH) in initChainBuffers()
4316 numSGE = MPT_SCSI_SG_DEPTH; in initChainBuffers()
4320 while (numSGE - num_sge > 0) { in initChainBuffers()
4327 ioc->name, numSGE, num_sge, num_chain)); in initChainBuffers()
Dmptsas.c5129 int numSGE = 0; in mptsas_probe() local
5225 numSGE = (scale - 1) * in mptsas_probe()
5229 numSGE = 1 + (scale - 1) * in mptsas_probe()
5234 if (numSGE < sh->sg_tablesize) { in mptsas_probe()
5238 ioc->name, numSGE, sh->sg_tablesize)); in mptsas_probe()
5239 sh->sg_tablesize = numSGE; in mptsas_probe()
/linux-2.6.39/drivers/scsi/megaraid/
Dmegaraid_sas_fusion.h96 u8 numSGE; member
Dmegaraid_sas_fusion.c1524 io_request->RaidContext.numSGE = sge_count; in megasas_build_io_fusion()