Lines Matching refs:qdepth
1643 unsigned char qdepth = 0;
1645 adapter->drvr_opts->qdepth[tgt_id] > 0)
1646 qdepth = adapter->drvr_opts->qdepth[tgt_id];
1647 adapter->qdepth[tgt_id] = qdepth;
1809 if (adapter->qdepth[tgt_id] != adapter->qdepth[0]) {
1814 if (adapter->qdepth[0] > 0)
1815 blogic_info("%d", adapter, adapter->qdepth[0]);
2167 int qdepth = adapter->qdepth[tgt_id];
2171 if (qdepth == 0)
2172 qdepth = BLOGIC_MAX_AUTO_TAG_DEPTH;
2173 adapter->qdepth[tgt_id] = qdepth;
2174 scsi_change_queue_depth(dev, qdepth);
2177 qdepth = adapter->untag_qdepth;
2178 adapter->qdepth[tgt_id] = qdepth;
2179 scsi_change_queue_depth(dev, qdepth);
2181 qdepth = 0;
2184 qdepth += adapter->qdepth[tgt_id];
2185 if (qdepth > adapter->alloc_ccbs)
2186 blogic_create_addlccbs(adapter, qdepth - adapter->alloc_ccbs,
3355 " %3d %3u %9u %9u\n", adapter->qdepth[tgt], adapter->active_cmds[tgt], tgt_stats[tgt].cmds_tried, tgt_stats[tgt].cmds_complete);
3539 unsigned short qdepth = simple_strtoul(options, &options, 0);
3540 if (qdepth > BLOGIC_MAX_TAG_DEPTH) {
3541 blogic_err("BusLogic: Invalid Driver Options (invalid Queue Depth %d)\n", NULL, qdepth);
3544 drvr_opts->qdepth[tgt_id] = qdepth;
3560 unsigned short qdepth = simple_strtoul(options, &options, 0);
3561 if (qdepth == 0 ||
3562 qdepth > BLOGIC_MAX_TAG_DEPTH) {
3563 blogic_err("BusLogic: Invalid Driver Options (invalid Queue Depth %d)\n", NULL, qdepth);
3566 drvr_opts->common_qdepth = qdepth;
3568 drvr_opts->qdepth[tgt_id] = qdepth;
3649 if (drvr_opts->qdepth[tgt_id] == 1) {