Home
last modified time | relevance | path

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

/drivers/message/fusion/
Dmptfc.c1184 int numSGE = 0; in mptfc_probe() local
1277 numSGE = (scale - 1) * in mptfc_probe()
1281 numSGE = 1 + (scale - 1) * in mptfc_probe()
1286 if (numSGE < sh->sg_tablesize) { in mptfc_probe()
1290 ioc->name, numSGE, sh->sg_tablesize)); in mptfc_probe()
1291 sh->sg_tablesize = numSGE; in mptfc_probe()
Dmptspi.c1365 int numSGE = 0; in mptspi_probe() local
1477 numSGE = (scale - 1) * in mptspi_probe()
1481 numSGE = 1 + (scale - 1) * in mptspi_probe()
1486 if (numSGE < sh->sg_tablesize) { in mptspi_probe()
1490 ioc->name, numSGE, sh->sg_tablesize)); in mptspi_probe()
1491 sh->sg_tablesize = numSGE; in mptspi_probe()
Dmptbase.c4299 int scale, num_sge, numSGE; in initChainBuffers() local
4342 numSGE = (scale - 1) * (ioc->facts.MaxChainDepth-1) + scale + in initChainBuffers()
4345 numSGE = 1 + (scale - 1) * (ioc->facts.MaxChainDepth-1) + in initChainBuffers()
4349 ioc->name, num_sge, numSGE)); in initChainBuffers()
4352 if (numSGE > MPT_SCSI_FC_SG_DEPTH) in initChainBuffers()
4353 numSGE = MPT_SCSI_FC_SG_DEPTH; in initChainBuffers()
4355 if (numSGE > MPT_SCSI_SG_DEPTH) in initChainBuffers()
4356 numSGE = MPT_SCSI_SG_DEPTH; in initChainBuffers()
4360 while (numSGE - num_sge > 0) { in initChainBuffers()
4367 ioc->name, numSGE, num_sge, num_chain)); in initChainBuffers()
Dmptsas.c5138 int numSGE = 0; in mptsas_probe() local
5236 numSGE = (scale - 1) * in mptsas_probe()
5240 numSGE = 1 + (scale - 1) * in mptsas_probe()
5245 if (numSGE < sh->sg_tablesize) { in mptsas_probe()
5249 ioc->name, numSGE, sh->sg_tablesize)); in mptsas_probe()
5250 sh->sg_tablesize = numSGE; in mptsas_probe()
/drivers/scsi/megaraid/
Dmegaraid_sas_fusion.h128 u8 numSGE; member
Dmegaraid_sas_fusion.c1984 io_request->RaidContext.numSGE = sge_count; in megasas_build_io_fusion()