/linux-2.6.39/block/ |
D | blk-tag.c | 42 BUG_ON(find_first_bit(bqt->tag_map, bqt->max_depth) < in __blk_free_tags() 43 bqt->max_depth); in __blk_free_tags() 130 tags->max_depth = depth; in init_tag_map() 225 int max_depth, nr_ulongs; in blk_queue_resize_tags() local 237 bqt->max_depth = new_depth; in blk_queue_resize_tags() 253 max_depth = bqt->real_max_depth; in blk_queue_resize_tags() 258 memcpy(bqt->tag_index, tag_index, max_depth * sizeof(struct request *)); in blk_queue_resize_tags() 259 nr_ulongs = ALIGN(max_depth, BITS_PER_LONG) / BITS_PER_LONG; in blk_queue_resize_tags() 340 unsigned max_depth; in blk_queue_start_tag() local 358 max_depth = bqt->max_depth; in blk_queue_start_tag() [all …]
|
/linux-2.6.39/drivers/staging/octeon/ |
D | cvmx-cmd-queue.c | 112 int max_depth, int fpa_pool, in cvmx_cmd_queue_initialize() argument 129 if ((max_depth < 0) || (max_depth > 1 << 20)) in cvmx_cmd_queue_initialize() 131 } else if (max_depth != 0) in cvmx_cmd_queue_initialize() 141 if (max_depth != (int)qstate->max_depth) { in cvmx_cmd_queue_initialize() 145 (int)qstate->max_depth); in cvmx_cmd_queue_initialize() 182 qstate->max_depth = max_depth; in cvmx_cmd_queue_initialize()
|
D | cvmx-cmd-queue.h | 131 uint32_t max_depth; member 169 int max_depth, int fpa_pool, 341 if (CVMX_CMD_QUEUE_ENABLE_MAX_DEPTH && unlikely(qptr->max_depth)) { in cvmx_cmd_queue_write() 343 (cvmx_cmd_queue_length(queue_id) > (int)qptr->max_depth)) { in cvmx_cmd_queue_write() 439 if (CVMX_CMD_QUEUE_ENABLE_MAX_DEPTH && unlikely(qptr->max_depth)) { in cvmx_cmd_queue_write2() 441 (cvmx_cmd_queue_length(queue_id) > (int)qptr->max_depth)) { in cvmx_cmd_queue_write2() 540 if (CVMX_CMD_QUEUE_ENABLE_MAX_DEPTH && unlikely(qptr->max_depth)) { in cvmx_cmd_queue_write3() 542 (cvmx_cmd_queue_length(queue_id) > (int)qptr->max_depth)) { in cvmx_cmd_queue_write3()
|
/linux-2.6.39/drivers/acpi/acpica/ |
D | nswalk.c | 186 u32 max_depth, in acpi_ns_walk_namespace() argument 313 (level < max_depth) && (status != AE_CTRL_DEPTH)) { in acpi_ns_walk_namespace()
|
D | nsdump.c | 623 u32 max_depth, in acpi_ns_dump_objects() argument 647 (void)acpi_ns_walk_namespace(type, start_handle, max_depth, in acpi_ns_dump_objects() 699 void acpi_ns_dump_tables(acpi_handle search_base, u32 max_depth) in acpi_ns_dump_tables() argument 723 acpi_ns_dump_objects(ACPI_TYPE_ANY, ACPI_DISPLAY_OBJECTS, max_depth, in acpi_ns_dump_tables()
|
D | acnamesp.h | 105 u32 max_depth, 173 void acpi_ns_dump_tables(acpi_handle search_base, u32 max_depth); 191 u32 max_depth,
|
D | nsxfeval.c | 465 u32 max_depth, in acpi_walk_namespace() argument 477 (!max_depth) || (!pre_order_visit && !post_order_visit)) { in acpi_walk_namespace() 508 status = acpi_ns_walk_namespace(type, start_object, max_depth, in acpi_walk_namespace()
|
/linux-2.6.39/tools/perf/util/ |
D | callchain.h | 30 u64 max_depth; member 82 root->max_depth = 0; in callchain_init()
|
D | callchain.c | 390 if (cursor->nr > root->max_depth) in callchain_append() 391 root->max_depth = cursor->nr; in callchain_append()
|
/linux-2.6.39/drivers/firewire/ |
D | core-topology.c | 161 if (node->ports[i]->max_depth > depths[0]) { in update_hop_count() 163 depths[0] = node->ports[i]->max_depth; in update_hop_count() 164 } else if (node->ports[i]->max_depth > depths[1]) in update_hop_count() 165 depths[1] = node->ports[i]->max_depth; in update_hop_count() 168 node->max_depth = depths[0] + 1; in update_hop_count()
|
D | core.h | 173 u8 max_depth:4; /* Maximum depth to any leaf node */ member
|
/linux-2.6.39/fs/befs/ |
D | befs_fs_types.h | 219 fs32 max_depth; member 229 u32 max_depth; member
|
D | btree.c | 153 sup->max_depth = fs32_to_cpu(sb, od_sup->max_depth); in befs_bt_read_super()
|
D | debug.c | 254 befs_debug(sb, " max_depth %08x", fs32_to_cpu(sb, super->max_depth)); in befs_dump_index_entry()
|
/linux-2.6.39/include/acpi/ |
D | acpiosxf.h | 159 u16 max_depth, acpi_cache_t ** return_cache);
|
D | acpixf.h | 163 u32 max_depth,
|
D | actypes.h | 1058 u16 max_depth; member
|
/linux-2.6.39/drivers/message/fusion/ |
D | mptscsih.c | 2407 int max_depth; in mptscsih_change_queue_depth() local 2419 max_depth = 1; in mptscsih_change_queue_depth() 2422 max_depth = MPT_SCSI_CMD_PER_DEV_HIGH; in mptscsih_change_queue_depth() 2424 max_depth = MPT_SCSI_CMD_PER_DEV_LOW; in mptscsih_change_queue_depth() 2426 max_depth = ioc->sh->can_queue; in mptscsih_change_queue_depth() 2429 max_depth = 1; in mptscsih_change_queue_depth() 2431 if (qdepth > max_depth) in mptscsih_change_queue_depth() 2432 qdepth = max_depth; in mptscsih_change_queue_depth()
|
/linux-2.6.39/drivers/scsi/mpt2sas/ |
D | mpt2sas_scsih.c | 1138 int max_depth; in _scsih_adjust_queue_depth() local 1145 max_depth = shost->can_queue; in _scsih_adjust_queue_depth() 1162 max_depth = MPT2SAS_SATA_QUEUE_DEPTH; in _scsih_adjust_queue_depth() 1167 max_depth = 1; in _scsih_adjust_queue_depth() 1168 if (qdepth > max_depth) in _scsih_adjust_queue_depth() 1169 qdepth = max_depth; in _scsih_adjust_queue_depth()
|
/linux-2.6.39/include/linux/ |
D | blkdev.h | 230 int max_depth; /* what we will send to device */ member
|
/linux-2.6.39/Documentation/block/ |
D | biodoc.txt | 827 int max_depth; /* max queue depth */
|