Lines Matching refs:QueueConfig

734   static agsaQueueConfig_t   QueueConfig;
793 osti_memset(&QueueConfig, 0, sizeof(QueueConfig));
855 /* param3 points to QueueConfig; tdsaAllShared does not exit at this point yet */
856 SwConfig.param3 = (void *)&QueueConfig;
893 QueueConfig.numInboundQueues = DEFAULT_NUM_INBOUND_QUEUE; /* default 1 Inbound queue */
911 QueueConfig.numInboundQueues = (bit16) osti_strtoul (buffer, &pLastUsedChar, 0);
915 QueueConfig.numInboundQueues = (bit16) osti_strtoul (buffer, &pLastUsedChar, 10);
918 if (QueueConfig.numInboundQueues > AGSA_MAX_INBOUND_Q)
920 QueueConfig.numInboundQueues = AGSA_MAX_INBOUND_Q;
930 QueueConfig.numOutboundQueues = DEFAULT_NUM_OUTBOUND_QUEUE; /* default 1 Outbound queue */
948 QueueConfig.numOutboundQueues = (bit16) osti_strtoul (buffer, &pLastUsedChar, 0);
952 QueueConfig.numOutboundQueues = (bit16) osti_strtoul (buffer, &pLastUsedChar, 10);
955 if (QueueConfig.numOutboundQueues > AGSA_MAX_OUTBOUND_Q)
957 QueueConfig.numOutboundQueues = AGSA_MAX_OUTBOUND_Q;
1145 for (i=0;i<QueueConfig.numInboundQueues;i++)
1263 for (i=0;i<QueueConfig.numOutboundQueues;i++)
1460 for (i=0;i<QueueConfig.numInboundQueues;i++)
1571 for (i=0;i<QueueConfig.numOutboundQueues;i++)
1755 for (i=0;i<QueueConfig.numInboundQueues;i++)
1757 QueueConfig.inboundQueues[i].elementCount = InboundQueueSize[i];
1758 QueueConfig.inboundQueues[i].elementSize = InboundQueueEleSize[i];
1759 QueueConfig.inboundQueues[i].priority = InboundQueuePriority[i];
1761 for (i=0;i<QueueConfig.numOutboundQueues;i++)
1763 QueueConfig.outboundQueues[i].elementCount = OutboundQueueSize[i];
1764 QueueConfig.outboundQueues[i].elementSize = OutboundQueueEleSize[i];
1765 QueueConfig.outboundQueues[i].interruptDelay = OutboundQueueInterruptDelay[i];
1766 QueueConfig.outboundQueues[i].interruptCount = OutboundQueueInterruptCount[i];
1767 QueueConfig.outboundQueues[i].interruptEnable = OutboundQueueInterruptEnable[i];
2025 QueueConfig.sasHwEventQueue[i] = 0;
2026 QueueConfig.sataNCQErrorEventQueue[i] = 0;
2032 QueueConfig.tgtITNexusEventQueue[i] = 0;
2033 QueueConfig.tgtSSPEventQueue[i] = 0;
2034 QueueConfig.tgtSMPEventQueue[i] = 0;
2038 QueueConfig.iqNormalPriorityProcessingDepth = 0;
2039 QueueConfig.iqHighPriorityProcessingDepth = 0;
2040 QueueConfig.generalEventQueue = 0;
3301 agsaQueueConfig_t *QueueConfig;
3306 QueueConfig = &tdsaAllShared->QueueConfig;
3308 for(i=0;i<QueueConfig->numInboundQueues;i++)
3310 QueueConfig->inboundQueues[i].elementCount = tdsaAllShared->InboundQueueSize[i];
3311 QueueConfig->inboundQueues[i].elementSize = tdsaAllShared->InboundQueueEleSize[i];
3312 QueueConfig->inboundQueues[i].priority = tdsaAllShared->InboundQueuePriority[i];
3313 QueueConfig->inboundQueues[i].reserved = 0;
3315 for(i=0;i<QueueConfig->numOutboundQueues;i++)
3317 QueueConfig->outboundQueues[i].elementCount = tdsaAllShared->OutboundQueueSize[i];
3318 QueueConfig->outboundQueues[i].elementSize = tdsaAllShared->OutboundQueueEleSize[i];
3319 QueueConfig->outboundQueues[i].interruptDelay = tdsaAllShared->OutboundQueueInterruptDelay[i]; /* default 0; no interrupt delay */
3320 QueueConfig->outboundQueues[i].interruptCount = tdsaAllShared->OutboundQueueInterruptCount[i]; /* default 1*/
3321 QueueConfig->outboundQueues[i].interruptEnable = tdsaAllShared->OutboundQueueInterruptEnable[i]; /* default 1*/
3322 QueueConfig->outboundQueues[i].interruptVectorIndex = 0;
3327 QueueConfig->sasHwEventQueue[i] = 0;
3328 QueueConfig->sataNCQErrorEventQueue[i] = 0;
3334 QueueConfig->tgtITNexusEventQueue[i] = 0;
3335 QueueConfig->tgtSSPEventQueue[i] = 0;
3336 QueueConfig->tgtSMPEventQueue[i] = 0;
3339 QueueConfig->iqNormalPriorityProcessingDepth = 0;
3340 QueueConfig->iqHighPriorityProcessingDepth = 0;
3341 QueueConfig->generalEventQueue = 0;