Lines Matching refs:QueueDepth

1645 		unsigned char QueueDepth = 0;  in BusLogic_ReadHostAdapterConfiguration()  local
1646 if (HostAdapter->DriverOptions != NULL && HostAdapter->DriverOptions->QueueDepth[TargetID] > 0) in BusLogic_ReadHostAdapterConfiguration()
1647 QueueDepth = HostAdapter->DriverOptions->QueueDepth[TargetID]; in BusLogic_ReadHostAdapterConfiguration()
1649 QueueDepth = BusLogic_TaggedQueueDepthBB; in BusLogic_ReadHostAdapterConfiguration()
1650 HostAdapter->QueueDepth[TargetID] = QueueDepth; in BusLogic_ReadHostAdapterConfiguration()
1808 if (HostAdapter->QueueDepth[TargetID] != HostAdapter->QueueDepth[0]) { in BusLogic_ReportHostAdapterConfiguration()
1813 if (HostAdapter->QueueDepth[0] > 0) in BusLogic_ReportHostAdapterConfiguration()
1814 BusLogic_Info("%d", HostAdapter, HostAdapter->QueueDepth[0]); in BusLogic_ReportHostAdapterConfiguration()
2150 int QueueDepth = HostAdapter->QueueDepth[TargetID]; in BusLogic_SlaveConfigure() local
2153 if (QueueDepth == 0) in BusLogic_SlaveConfigure()
2154 QueueDepth = BusLogic_MaxAutomaticTaggedQueueDepth; in BusLogic_SlaveConfigure()
2155 HostAdapter->QueueDepth[TargetID] = QueueDepth; in BusLogic_SlaveConfigure()
2156 scsi_adjust_queue_depth(Device, MSG_SIMPLE_TAG, QueueDepth); in BusLogic_SlaveConfigure()
2159 QueueDepth = HostAdapter->UntaggedQueueDepth; in BusLogic_SlaveConfigure()
2160 HostAdapter->QueueDepth[TargetID] = QueueDepth; in BusLogic_SlaveConfigure()
2161 scsi_adjust_queue_depth(Device, 0, QueueDepth); in BusLogic_SlaveConfigure()
2163 QueueDepth = 0; in BusLogic_SlaveConfigure()
2166 QueueDepth += HostAdapter->QueueDepth[TargetID]; in BusLogic_SlaveConfigure()
2168 if (QueueDepth > HostAdapter->AllocatedCCBs) in BusLogic_SlaveConfigure()
2169 BusLogic_CreateAdditionalCCBs(HostAdapter, QueueDepth - HostAdapter->AllocatedCCBs, false); in BusLogic_SlaveConfigure()
3236 …" %3d %3u %9u %9u\n", HostAdapter->QueueDepth[TargetID], HostAdapter->ActiveCommands[… in BusLogic_ProcDirectoryInfo()
3448 unsigned short QueueDepth = simple_strtoul(OptionsString, &OptionsString, 0); in BusLogic_ParseDriverOptions() local
3449 if (QueueDepth > BusLogic_MaxTaggedQueueDepth) { in BusLogic_ParseDriverOptions()
3450 …BusLogic_Error("BusLogic: Invalid Driver Options " "(invalid Queue Depth %d)\n", NULL, QueueDepth); in BusLogic_ParseDriverOptions()
3453 DriverOptions->QueueDepth[TargetID] = QueueDepth; in BusLogic_ParseDriverOptions()
3469 unsigned short QueueDepth = simple_strtoul(OptionsString, &OptionsString, 0); in BusLogic_ParseDriverOptions() local
3470 if (QueueDepth == 0 || QueueDepth > BusLogic_MaxTaggedQueueDepth) { in BusLogic_ParseDriverOptions()
3471 …BusLogic_Error("BusLogic: Invalid Driver Options " "(invalid Queue Depth %d)\n", NULL, QueueDepth); in BusLogic_ParseDriverOptions()
3474 DriverOptions->CommonQueueDepth = QueueDepth; in BusLogic_ParseDriverOptions()
3476 DriverOptions->QueueDepth[TargetID] = QueueDepth; in BusLogic_ParseDriverOptions()
3549 if (DriverOptions->QueueDepth[TargetID] == 1) { in BusLogic_ParseDriverOptions()