Symbol: queue_depth
sys/dev/isci/isci.h
183
uint32_t queue_depth;
sys/dev/isci/isci_controller.c
350
controller->queue_depth = SCI_MAX_IO_REQUESTS - SCI_MAX_DOMAINS;
sys/dev/isci/isci_controller.c
353
&controller->queue_depth)) {
sys/dev/isci/isci_controller.c
354
controller->queue_depth = max(1, min(controller->queue_depth,
sys/dev/isci/isci_controller.c
361
controller->sim_queue_depth = controller->queue_depth - 1;
sys/dev/isci/isci_controller.c
456
controller->queue_depth * isci_io_request_get_object_size();
sys/dev/isci/isci_controller.c
492
for (int i = 0; i < controller->queue_depth; i++) {
sys/dev/isci/scil/intel_ata.h
373
U16 queue_depth; // word 75
sys/dev/isci/scil/sati_device.c
160
(U8) (identify->queue_depth
sys/dev/mana/hw_channel.c
360
comp_read = mana_gd_poll_cq(q_self, completions, hwc_cq->queue_depth);
sys/dev/mana/hw_channel.c
442
hwc_cq->queue_depth = q_depth;
sys/dev/mana/hw_channel.c
562
hwc_wq->queue_depth = q_depth;
sys/dev/mana/hw_channel.h
163
uint16_t queue_depth;
sys/dev/mana/hw_channel.h
177
uint16_t queue_depth;
sys/dev/mrsas/mrsas.h
3421
u_int32_t queue_depth;
sys/dev/ocs_fc/ocs_ioctl.h
156
uint32_t queue_depth; /**< queue depth for command looping */
sys/dev/smartpqi/smartpqi_cam.c
1164
smartpqi_adjust_queue_depth(struct cam_path *path, uint32_t queue_depth)
sys/dev/smartpqi/smartpqi_cam.c
1175
crs.openings = queue_depth;
sys/dev/smartpqi/smartpqi_cam.c
1216
smartpqi_adjust_queue_depth(path, dvp->queue_depth);
sys/dev/smartpqi/smartpqi_defines.h
1141
uint32_t queue_depth;
sys/dev/smartpqi/smartpqi_discovery.c
1305
device->queue_depth = PQI_PHYSICAL_DISK_DEFAULT_MAX_QUEUE_DEPTH;
sys/dev/smartpqi/smartpqi_discovery.c
1309
device->queue_depth =
sys/dev/smartpqi/smartpqi_discovery.c
1325
DBG_DISC("BMIC DEV_TYPE: %x QUEUE DEPTH: 0x%x \n", device->device_type, device->queue_depth);
sys/dev/smartpqi/smartpqi_discovery.c
1384
device_exist->queue_depth = new_device->queue_depth;
sys/dev/smartpqi/smartpqi_discovery.c
1774
device->queue_depth = PQI_LOGICAL_DISK_DEFAULT_MAX_QUEUE_DEPTH;
sys/dev/smartpqi/smartpqi_discovery.c
2081
qdepth = logical_queue_dev_list->lun_entries[i - physical_cnt].queue_depth;
sys/dev/smartpqi/smartpqi_discovery.c
2084
device->queue_depth = qdepth*256;
sys/dev/smartpqi/smartpqi_discovery.c
2087
device->queue_depth = qdepth*16;
sys/dev/smartpqi/smartpqi_discovery.c
2089
if (device->queue_depth > softs->adapterQDepth) {
sys/dev/smartpqi/smartpqi_discovery.c
2091
device->queue_depth = softs->adapterQDepth;
sys/dev/smartpqi/smartpqi_discovery.c
2115
device->queue_depth = softs->adapterQDepth;
sys/dev/smartpqi/smartpqi_helper.c
272
device->queue_depth);
sys/dev/smartpqi/smartpqi_helper.c
286
device->queue_depth);
sys/dev/smartpqi/smartpqi_helper.c
300
device->queue_depth);
sys/dev/smartpqi/smartpqi_helper.c
314
device->queue_depth,
sys/dev/smartpqi/smartpqi_main.c
208
softs->hint.queue_depth = value;
sys/dev/smartpqi/smartpqi_misc.c
223
uint32_t queue_depth = softs->pqi_cap.max_outstanding_io;
sys/dev/smartpqi/smartpqi_misc.c
227
if ((!softs->hint.queue_depth) || (softs->hint.queue_depth >
sys/dev/smartpqi/smartpqi_misc.c
232
else if (softs->hint.queue_depth < PQISRC_MIN_OUTSTANDING_REQ) {
sys/dev/smartpqi/smartpqi_misc.c
239
softs->hint.queue_depth;
sys/dev/smartpqi/smartpqi_misc.c
243
queue_depth, softs->pqi_cap.max_outstanding_io);
sys/dev/smartpqi/smartpqi_structures.h
891
uint16_t queue_depth; /* max. queue_depth for this device */
sys/dev/smartpqi/smartpqi_structures.h
967
uint8_t queue_depth:7;
usr.sbin/camdd/camdd.c
1042
if ((io_opts->queue_depth != 0)
usr.sbin/camdd/camdd.c
1043
&& (io_opts->queue_depth != 1)) {
usr.sbin/camdd/camdd.c
1045
"command supported", (uintmax_t)io_opts->queue_depth,
usr.sbin/camdd/camdd.c
109
uint64_t queue_depth;
usr.sbin/camdd/camdd.c
1609
if (io_opts->queue_depth != 0)
usr.sbin/camdd/camdd.c
1610
dev->target_queue_depth = io_opts->queue_depth;
usr.sbin/camdd/camdd.c
3492
io_opts->queue_depth = strtoull(value, &endptr, 0);