Lines Matching refs:QueueConfig

130   agsaQueueConfig_t   *QueueConfig;
174 QueueConfig = (agsaQueueConfig_t *)&(tdsaAllShared->QueueConfig);
260 QueueConfig->numInboundQueues = DEFAULT_NUM_INBOUND_QUEUE; /* default 1 Inbound queue */
278 QueueConfig->numInboundQueues = (bit16) osti_strtoul (buffer, &pLastUsedChar, 0);
282 QueueConfig->numInboundQueues = (bit16) osti_strtoul (buffer, &pLastUsedChar, 10);
285 if (QueueConfig->numInboundQueues > AGSA_MAX_INBOUND_Q)
287 QueueConfig->numInboundQueues = AGSA_MAX_INBOUND_Q;
297 QueueConfig->numOutboundQueues = DEFAULT_NUM_OUTBOUND_QUEUE; /* default 1 Outbound queue */
315 QueueConfig->numOutboundQueues = (bit16) osti_strtoul (buffer, &pLastUsedChar, 0);
319 QueueConfig->numOutboundQueues = (bit16) osti_strtoul (buffer, &pLastUsedChar, 10);
322 if (QueueConfig->numOutboundQueues > AGSA_MAX_OUTBOUND_Q)
324 QueueConfig->numOutboundQueues = AGSA_MAX_OUTBOUND_Q;
548 for (i=0;i<QueueConfig->numInboundQueues;i++)
667 for (i=0;i<QueueConfig->numOutboundQueues;i++)
864 for (i=0;i<QueueConfig->numInboundQueues;i++)
976 for (i=0;i<QueueConfig->numOutboundQueues;i++)
1371 QueueConfig->iqNormalPriorityProcessingDepth = (bit8) osti_strtoul (buffer, &pLastUsedChar, 0);
1375 QueueConfig->iqNormalPriorityProcessingDepth = (bit8) osti_strtoul (buffer, &pLastUsedChar, 10);
1398 QueueConfig->iqHighPriorityProcessingDepth = (bit8) osti_strtoul (buffer, &pLastUsedChar, 0);
1402 QueueConfig->iqHighPriorityProcessingDepth = (bit8) osti_strtoul (buffer, &pLastUsedChar, 10);
3874 agsaQueueConfig_t *QueueConfig;
4007 QueueConfig = &tdsaAllShared->QueueConfig;
4009 for(i=0;i<QueueConfig->numInboundQueues;i++)
4011 QueueConfig->inboundQueues[i].elementCount = tdsaAllShared->InboundQueueSize[i];
4012 QueueConfig->inboundQueues[i].elementSize = tdsaAllShared->InboundQueueEleSize[i];
4013 QueueConfig->inboundQueues[i].priority = tdsaAllShared->InboundQueuePriority[i];
4014 QueueConfig->inboundQueues[i].reserved = 0;
4017 for(i=0;i<QueueConfig->numOutboundQueues;i++)
4019 QueueConfig->outboundQueues[i].elementCount = tdsaAllShared->OutboundQueueSize[i];
4020 QueueConfig->outboundQueues[i].elementSize = tdsaAllShared->OutboundQueueEleSize[i];
4021 QueueConfig->outboundQueues[i].interruptDelay = tdsaAllShared->OutboundQueueInterruptDelay[i]; /* default 0; no interrupt delay */
4022 QueueConfig->outboundQueues[i].interruptCount = tdsaAllShared->OutboundQueueInterruptCount[i]; /* default 1 */
4023 QueueConfig->outboundQueues[i].interruptEnable = tdsaAllShared->OutboundQueueInterruptEnable[i]; /* default 1 */
4024 QueueConfig->outboundQueues[i].interruptVectorIndex = 0;
4027 QueueConfig->outboundQueues[i].interruptVectorIndex = i % tdsaAllShared->SwConfig.max_MSIX_InterruptVectors;
4031 QueueConfig->outboundQueues[i].interruptVectorIndex = i % tdsaAllShared->SwConfig.max_MSI_InterruptVectors;
4035 QueueConfig->outboundQueues[i].interruptVectorIndex = 0;
4041 QueueConfig->queueOption = tdsaAllShared->QueueOption;
4043 tdsaAllShared->SwConfig.param3 = (void *)QueueConfig;
4048 for(i=0;i<QueueConfig->numInboundQueues;i++)
4050 if (QueueConfig->inboundQueues[i].priority != DEFAULT_INBOUND_QUEUE_PRIORITY) /* 0 */
6507 bit32 Indenom = tdsaAllShared->QueueConfig.numInboundQueues;
6508 bit32 Outdenom = tdsaAllShared->QueueConfig.numOutboundQueues;
7977 // bit32 denom = tdsaAllShared->QueueConfig.numOutboundQueues;
7986 ret = ((tdsaAllShared->QueueConfig.numOutboundQueues-1) << 16) | (tdsaAllShared->QueueConfig.numInboundQueues-1);
7998 bit32 denom = tdsaAllShared->QueueConfig.numInboundQueues;
8012 denom = tdsaAllShared->QueueConfig.numOutboundQueues;