Lines Matching refs:qdepth

1768 		unsigned char qdepth = 0;
1770 adapter->drvr_opts->qdepth[tgt_id] > 0)
1771 qdepth = adapter->drvr_opts->qdepth[tgt_id];
1773 qdepth = BLOGIC_TAG_DEPTH_BB;
1774 adapter->qdepth[tgt_id] = qdepth;
1943 if (adapter->qdepth[tgt_id] != adapter->qdepth[0]) {
1948 if (adapter->qdepth[0] > 0)
1949 blogic_info("%d", adapter, adapter->qdepth[0]);
2319 int qdepth = adapter->qdepth[tgt_id];
2323 if (qdepth == 0)
2324 qdepth = BLOGIC_MAX_AUTO_TAG_DEPTH;
2325 adapter->qdepth[tgt_id] = qdepth;
2326 scsi_change_queue_depth(dev, qdepth);
2329 qdepth = adapter->untag_qdepth;
2330 adapter->qdepth[tgt_id] = qdepth;
2331 scsi_change_queue_depth(dev, qdepth);
2333 qdepth = 0;
2336 qdepth += adapter->qdepth[tgt_id];
2337 if (qdepth > adapter->alloc_ccbs)
2338 blogic_create_addlccbs(adapter, qdepth - adapter->alloc_ccbs,
3499 " %3d %3u %9u %9u\n", adapter->qdepth[tgt], adapter->active_cmds[tgt], tgt_stats[tgt].cmds_tried, tgt_stats[tgt].cmds_complete);
3713 unsigned short qdepth = simple_strtoul(options, &options, 0);
3714 if (qdepth > BLOGIC_MAX_TAG_DEPTH) {
3715 blogic_err("BusLogic: Invalid Driver Options (invalid Queue Depth %d)\n", NULL, qdepth);
3718 drvr_opts->qdepth[tgt_id] = qdepth;
3734 unsigned short qdepth = simple_strtoul(options, &options, 0);
3735 if (qdepth == 0 ||
3736 qdepth > BLOGIC_MAX_TAG_DEPTH) {
3737 blogic_err("BusLogic: Invalid Driver Options (invalid Queue Depth %d)\n", NULL, qdepth);
3740 drvr_opts->common_qdepth = qdepth;
3742 drvr_opts->qdepth[tgt_id] = qdepth;
3823 if (drvr_opts->qdepth[tgt_id] == 1) {