Lines Matching refs:qdepth
1645 unsigned char qdepth = 0; in blogic_rdconfig() local
1647 adapter->drvr_opts->qdepth[tgt_id] > 0) in blogic_rdconfig()
1648 qdepth = adapter->drvr_opts->qdepth[tgt_id]; in blogic_rdconfig()
1649 adapter->qdepth[tgt_id] = qdepth; in blogic_rdconfig()
1812 if (adapter->qdepth[tgt_id] != adapter->qdepth[0]) { in blogic_reportconfig()
1817 if (adapter->qdepth[0] > 0) in blogic_reportconfig()
1818 blogic_info("%d", adapter, adapter->qdepth[0]); in blogic_reportconfig()
2171 int qdepth = adapter->qdepth[tgt_id]; in blogic_sdev_configure() local
2175 if (qdepth == 0) in blogic_sdev_configure()
2176 qdepth = BLOGIC_MAX_AUTO_TAG_DEPTH; in blogic_sdev_configure()
2177 adapter->qdepth[tgt_id] = qdepth; in blogic_sdev_configure()
2178 scsi_change_queue_depth(dev, qdepth); in blogic_sdev_configure()
2181 qdepth = adapter->untag_qdepth; in blogic_sdev_configure()
2182 adapter->qdepth[tgt_id] = qdepth; in blogic_sdev_configure()
2183 scsi_change_queue_depth(dev, qdepth); in blogic_sdev_configure()
2185 qdepth = 0; in blogic_sdev_configure()
2188 qdepth += adapter->qdepth[tgt_id]; in blogic_sdev_configure()
2189 if (qdepth > adapter->alloc_ccbs) in blogic_sdev_configure()
2190 blogic_create_addlccbs(adapter, qdepth - adapter->alloc_ccbs, in blogic_sdev_configure()
3358 …" %3d %3u %9u %9u\n", adapter->qdepth[tgt], adapter->active_cmds[tgt], tgt_stats[tgt]… in blogic_show_info()
3542 unsigned short qdepth = simple_strtoul(options, &options, 0); in blogic_parseopts() local
3543 if (qdepth > BLOGIC_MAX_TAG_DEPTH) { in blogic_parseopts()
3544 blogic_err("BusLogic: Invalid Driver Options (invalid Queue Depth %d)\n", NULL, qdepth); in blogic_parseopts()
3547 drvr_opts->qdepth[tgt_id] = qdepth; in blogic_parseopts()
3563 unsigned short qdepth = simple_strtoul(options, &options, 0); in blogic_parseopts() local
3564 if (qdepth == 0 || in blogic_parseopts()
3565 qdepth > BLOGIC_MAX_TAG_DEPTH) { in blogic_parseopts()
3566 blogic_err("BusLogic: Invalid Driver Options (invalid Queue Depth %d)\n", NULL, qdepth); in blogic_parseopts()
3569 drvr_opts->common_qdepth = qdepth; in blogic_parseopts()
3571 drvr_opts->qdepth[tgt_id] = qdepth; in blogic_parseopts()
3652 if (drvr_opts->qdepth[tgt_id] == 1) { in blogic_parseopts()