/linux-4.1.27/mm/ |
D | mempool.c | 24 static void poison_error(mempool_t *pool, void *element, size_t size, in poison_error() argument 34 pr_err(" nr=%d @ %p: %s0x", nr, element, start > 0 ? "... " : ""); in poison_error() 36 pr_cont("%x ", *(u8 *)(element + i)); in poison_error() 41 static void __check_element(mempool_t *pool, void *element, size_t size) in __check_element() argument 43 u8 *obj = element; in __check_element() 50 poison_error(pool, element, size, i); in __check_element() 57 static void check_element(mempool_t *pool, void *element) in check_element() argument 61 __check_element(pool, element, ksize(element)); in check_element() 66 void *addr = kmap_atomic((struct page *)element); in check_element() 73 static void __poison_element(void *element, size_t size) in __poison_element() argument [all …]
|
/linux-4.1.27/drivers/acpi/acpica/ |
D | uttrack.c | 315 struct acpi_debug_mem_block *element; in acpi_ut_find_allocation() local 317 element = acpi_gbl_global_list->list_head; in acpi_ut_find_allocation() 318 if (!element) { in acpi_ut_find_allocation() 329 while (element > allocation) { in acpi_ut_find_allocation() 333 if (!element->next) { in acpi_ut_find_allocation() 334 return (element); in acpi_ut_find_allocation() 337 element = element->next; in acpi_ut_find_allocation() 340 if (element == allocation) { in acpi_ut_find_allocation() 341 return (element); in acpi_ut_find_allocation() 344 return (element->previous); in acpi_ut_find_allocation() [all …]
|
/linux-4.1.27/security/tomoyo/ |
D | gc.c | 39 static bool tomoyo_struct_used_by_io_buffer(const struct list_head *element) in tomoyo_struct_used_by_io_buffer() argument 49 if (head->r.domain == element || head->r.group == element || in tomoyo_struct_used_by_io_buffer() 50 head->r.acl == element || &head->w.domain->list == element) in tomoyo_struct_used_by_io_buffer() 106 static inline void tomoyo_del_transition_control(struct list_head *element) in tomoyo_del_transition_control() argument 109 container_of(element, typeof(*ptr), head.list); in tomoyo_del_transition_control() 121 static inline void tomoyo_del_aggregator(struct list_head *element) in tomoyo_del_aggregator() argument 124 container_of(element, typeof(*ptr), head.list); in tomoyo_del_aggregator() 136 static inline void tomoyo_del_manager(struct list_head *element) in tomoyo_del_manager() argument 139 container_of(element, typeof(*ptr), head.list); in tomoyo_del_manager() 150 static void tomoyo_del_acl(struct list_head *element) in tomoyo_del_acl() argument [all …]
|
D | common.h | 1040 void tomoyo_del_condition(struct list_head *element);
|
/linux-4.1.27/scripts/ |
D | asn1_compiler.c | 651 struct element { struct 656 struct element *children; argument 657 struct element *next; argument 658 struct element *render_next; argument 659 struct element *list_next; argument 678 struct element *element; member 771 static struct element *parse_type(struct token **_cursor, struct token *stop, 792 type->element = parse_type(&cursor, type[1].name, NULL); in parse() 793 type->element->type_def = type; in parse() 807 static struct element *element_list; [all …]
|
/linux-4.1.27/drivers/acpi/ |
D | utils.c | 101 union acpi_object *element = &(package->package.elements[i]); in acpi_extract_package() local 103 switch (element->type) { in acpi_extract_package() 133 (element->string.length * sizeof(char)) + in acpi_extract_package() 139 sizeof(u8 *) + element->buffer.length; in acpi_extract_package() 205 union acpi_object *element = &(package->package.elements[i]); in acpi_extract_package() local 207 if (!element) { in acpi_extract_package() 211 switch (element->type) { in acpi_extract_package() 217 element->integer.value; in acpi_extract_package() 224 element->integer.value; in acpi_extract_package() 243 memcpy(tail, element->string.pointer, in acpi_extract_package() [all …]
|
D | property.c | 293 const union acpi_object *element, *end; in acpi_dev_get_property_reference() local 331 element = obj->package.elements; in acpi_dev_get_property_reference() 332 end = element + obj->package.count; in acpi_dev_get_property_reference() 334 while (element < end) { in acpi_dev_get_property_reference() 337 if (element->type != ACPI_TYPE_LOCAL_REFERENCE) in acpi_dev_get_property_reference() 340 ret = acpi_bus_get_device(element->reference.handle, &device); in acpi_dev_get_property_reference() 344 element++; in acpi_dev_get_property_reference() 348 for (i = 0; element + i < end; i++) { in acpi_dev_get_property_reference() 349 int type = element[i].type; in acpi_dev_get_property_reference() 363 args->args[i] = element[i].integer.value; in acpi_dev_get_property_reference() [all …]
|
D | processor_idle.c | 376 union acpi_object *element; in acpi_processor_get_power_info_cst() local 383 element = &(cst->package.elements[i]); in acpi_processor_get_power_info_cst() 384 if (element->type != ACPI_TYPE_PACKAGE) in acpi_processor_get_power_info_cst() 387 if (element->package.count != 4) in acpi_processor_get_power_info_cst() 390 obj = &(element->package.elements[0]); in acpi_processor_get_power_info_cst() 402 obj = &(element->package.elements[1]); in acpi_processor_get_power_info_cst() 458 obj = &(element->package.elements[2]); in acpi_processor_get_power_info_cst() 464 obj = &(element->package.elements[3]); in acpi_processor_get_power_info_cst()
|
D | battery.c | 408 union acpi_object *element; in extract_package() local 414 element = &package->package.elements[i]; in extract_package() 417 if (element->type == ACPI_TYPE_STRING || in extract_package() 418 element->type == ACPI_TYPE_BUFFER) in extract_package() 419 strncpy(ptr, element->string.pointer, 32); in extract_package() 420 else if (element->type == ACPI_TYPE_INTEGER) { in extract_package() 421 strncpy(ptr, (u8 *)&element->integer.value, in extract_package() 428 *x = (element->type == ACPI_TYPE_INTEGER) ? in extract_package() 429 element->integer.value : -1; in extract_package()
|
D | scan.c | 1595 union acpi_object *element = NULL; in acpi_bus_extract_wakeup_device_power_package() local 1616 element = &(package->package.elements[0]); in acpi_bus_extract_wakeup_device_power_package() 1617 if (!element) in acpi_bus_extract_wakeup_device_power_package() 1620 if (element->type == ACPI_TYPE_PACKAGE) { in acpi_bus_extract_wakeup_device_power_package() 1621 if ((element->package.count < 2) || in acpi_bus_extract_wakeup_device_power_package() 1622 (element->package.elements[0].type != in acpi_bus_extract_wakeup_device_power_package() 1624 || (element->package.elements[1].type != ACPI_TYPE_INTEGER)) in acpi_bus_extract_wakeup_device_power_package() 1628 element->package.elements[0].reference.handle; in acpi_bus_extract_wakeup_device_power_package() 1630 (u32) element->package.elements[1].integer.value; in acpi_bus_extract_wakeup_device_power_package() 1631 } else if (element->type == ACPI_TYPE_INTEGER) { in acpi_bus_extract_wakeup_device_power_package() [all …]
|
D | power.c | 142 union acpi_object *element = &package->package.elements[i]; in acpi_extract_power_resources() local 145 if (element->type != ACPI_TYPE_LOCAL_REFERENCE) { in acpi_extract_power_resources() 149 rhandle = element->reference.handle; in acpi_extract_power_resources()
|
/linux-4.1.27/net/irda/ |
D | irqueue.c | 233 static void enqueue_first(irda_queue_t **queue, irda_queue_t* element) in enqueue_first() argument 243 element->q_next = element->q_prev = *queue = element; in enqueue_first() 249 element->q_next = (*queue); in enqueue_first() 250 (*queue)->q_prev->q_next = element; in enqueue_first() 251 element->q_prev = (*queue)->q_prev; in enqueue_first() 252 (*queue)->q_prev = element; in enqueue_first() 253 (*queue) = element; in enqueue_first() 305 static irda_queue_t *dequeue_general(irda_queue_t **queue, irda_queue_t* element) in dequeue_general() argument 331 element->q_prev->q_next = element->q_next; in dequeue_general() 332 element->q_next->q_prev = element->q_prev; in dequeue_general() [all …]
|
D | irlmp.c | 1836 void *element; in irlmp_seq_hb_idx() local 1839 for (element = hashbin_get_first(iter->hashbin); in irlmp_seq_hb_idx() 1840 element != NULL; in irlmp_seq_hb_idx() 1841 element = hashbin_get_next(iter->hashbin)) { in irlmp_seq_hb_idx() 1844 return element; in irlmp_seq_hb_idx()
|
/linux-4.1.27/include/linux/ |
D | mempool.h | 12 typedef void (mempool_free_t)(void *element, void *pool_data); 35 extern void mempool_free(void *element, mempool_t *pool); 43 void mempool_free_slab(void *element, void *pool_data); 56 void mempool_kfree(void *element, void *pool_data); 68 void mempool_free_pages(void *element, void *pool_data);
|
D | lru_cache.h | 257 extern void lc_del(struct lru_cache *lc, struct lc_element *element);
|
D | btree.h | 55 void btree_free(void *element, void *pool_data);
|
/linux-4.1.27/arch/ia64/sn/kernel/ |
D | io_common.c | 353 struct sysdata_el *element; in sn_bus_store_sysdata() local 355 element = kzalloc(sizeof(struct sysdata_el), GFP_KERNEL); in sn_bus_store_sysdata() 356 if (!element) { in sn_bus_store_sysdata() 360 element->sysdata = SN_PCIDEV_INFO(dev); in sn_bus_store_sysdata() 361 list_add(&element->entry, &sn_sysdata_list); in sn_bus_store_sysdata() 366 struct sysdata_el *element; in sn_bus_free_sysdata() local 370 element = list_entry(list, struct sysdata_el, entry); in sn_bus_free_sysdata() 371 list_del(&element->entry); in sn_bus_free_sysdata() 373 (element->sysdata))->pdi_list)); in sn_bus_free_sysdata() 374 kfree(element->sysdata); in sn_bus_free_sysdata() [all …]
|
/linux-4.1.27/drivers/mfd/ |
D | si476x-prop.c | 27 static bool si476x_core_element_is_in_array(u16 element, in si476x_core_element_is_in_array() argument 34 if (element == array[i]) in si476x_core_element_is_in_array() 40 static bool si476x_core_element_is_in_range(u16 element, in si476x_core_element_is_in_range() argument 47 if (element <= range[i].high && element >= range[i].low) in si476x_core_element_is_in_range()
|
/linux-4.1.27/arch/powerpc/platforms/pseries/ |
D | hvcserver.c | 78 struct list_head *element; in hvcs_free_partner_info() local 84 element = head->next; in hvcs_free_partner_info() 85 pi = list_entry(element, struct hvcs_partner_info, node); in hvcs_free_partner_info() 86 list_del(element); in hvcs_free_partner_info()
|
/linux-4.1.27/drivers/thermal/int340x_thermal/ |
D | acpi_thermal_rel.c | 81 struct acpi_buffer element = { 0, NULL }; in acpi_parse_trt() local 108 element.length = sizeof(struct trt); in acpi_parse_trt() 109 element.pointer = trt; in acpi_parse_trt() 112 &trt_format, &element); in acpi_parse_trt() 161 struct acpi_buffer element = { 0, NULL }; in acpi_parse_art() local 190 element.length = sizeof(struct art); in acpi_parse_art() 191 element.pointer = art; in acpi_parse_art() 194 &art_format, &element); in acpi_parse_art()
|
/linux-4.1.27/scripts/coccinelle/misc/ |
D | array_size.cocci | 1 /// Use ARRAY_SIZE instead of dividing sizeof array with sizeof an element 5 //# element or by any indexed element or the element type. It replaces the
|
D | badty.cocci | 1 /// Use ARRAY_SIZE instead of dividing sizeof array with sizeof an element
|
/linux-4.1.27/Documentation/RCU/ |
D | rcuref.txt | 43 search_and_reference() could potentially hold reference to an element which 72 Sometimes, a reference to the element needs to be obtained in the 110 search_and_reference() cannot find this element, which means that the value 112 readers that can or ever will be able to reference the element. The 113 element can therefore safely be freed. This in turn guarantees that if 114 any reader finds the element, that reader may safely acquire a reference
|
D | UP.txt | 19 is referencing element B when it is interrupted by softirq processing, 20 which deletes element B, and then invokes call_rcu() to free element B 25 element B. This situation can greatly decrease the life expectancy of 40 on each element as it is scanned. Suppose further that this function 41 deletes element B from the list, then passes it to call_rcu() for deferred
|
D | arrayRCU.txt | 27 located in each array element, and where the array is never resized,
|
D | rcu.txt | 11 a grace period to elapse, then free the element. See the listRCU.txt
|
D | rcubarrier.txt | 23 element p from a linked list might do the following, while holding an 34 structure. Code to delete an element p from the linked list from IRQ
|
D | whatisRCU.txt | 431 o Use synchronize_rcu() -after- removing a data element from an 433 the data element, in order to wait for the completion of all 513 old version of the newly updated element. It also clearly shows the 520 o Use call_rcu() -after- removing a data element from an
|
D | checklist.txt | 73 b. Proceed as in (a) above, but also maintain per-element 75 that guard per-element state. Of course, fields that
|
D | torture.txt | 298 that have reached a given point in the pipeline. The first element
|
D | rcu_dereference.txt | 28 o Do not use single-element RCU-protected arrays. The compiler
|
D | trace.txt | 344 o Each element of the form "3/3 ..>. 0:7 ^0" represents one rcu_node
|
/linux-4.1.27/drivers/scsi/esas2r/ |
D | esas2r_int.c | 342 struct list_head *element, *next; in esas2r_do_deferred_processes() local 346 list_for_each_safe(element, next, &a->defer_list) { in esas2r_do_deferred_processes() 347 rq = list_entry(element, struct esas2r_request, in esas2r_do_deferred_processes() 351 list_del(element); in esas2r_do_deferred_processes() 361 list_del(element); in esas2r_do_deferred_processes() 364 list_del(element); in esas2r_do_deferred_processes() 395 struct list_head *element; in esas2r_process_adapter_reset() local 432 list_for_each(element, &a->defer_list) { in esas2r_process_adapter_reset() 433 rq = list_entry(element, struct esas2r_request, req_list); in esas2r_process_adapter_reset() 449 struct list_head *element; in esas2r_process_bus_reset() local [all …]
|
D | esas2r_io.c | 140 struct esas2r_inbound_list_source_entry *element; in esas2r_start_vda_request() local 158 element = in esas2r_start_vda_request() 167 element->address = cpu_to_le64(rq->vrq_md->phys_addr); in esas2r_start_vda_request() 168 element->length = cpu_to_le32(rq->vda_req_sz); in esas2r_start_vda_request() 771 struct list_head *next, *element; in esas2r_send_task_mgmt() local 782 list_for_each_safe(element, next, &a->defer_list) { in esas2r_send_task_mgmt() 783 rq = list_entry(element, struct esas2r_request, req_list); in esas2r_send_task_mgmt() 815 list_for_each_safe(element, next, &a->active_list) { in esas2r_send_task_mgmt() 816 rq = list_entry(element, struct esas2r_request, in esas2r_send_task_mgmt()
|
D | esas2r_init.c | 839 struct esas2r_inbound_list_source_entry *element; in esas2r_init_adapter_struct() local 973 element = in esas2r_init_adapter_struct() 979 element->address = 0; in esas2r_init_adapter_struct() 980 element->reserved = 0; in esas2r_init_adapter_struct() 981 element->length = cpu_to_le32(HWILSE_INTERFACE_F0 in esas2r_init_adapter_struct() 986 element++; in esas2r_init_adapter_struct()
|
D | esas2r.h | 1409 struct list_head *element, *next; in esas2r_comp_list_drain() local 1411 list_for_each_safe(element, next, comp_list) { in esas2r_comp_list_drain() 1412 rq = list_entry(element, struct esas2r_request, comp_list); in esas2r_comp_list_drain() 1413 list_del_init(element); in esas2r_comp_list_drain()
|
D | esas2r_disc.c | 1163 struct list_head *element; in esas2r_disc_fix_curr_requests() local 1169 list_for_each(element, &a->defer_list) { in esas2r_disc_fix_curr_requests() 1170 rq = list_entry(element, struct esas2r_request, req_list); in esas2r_disc_fix_curr_requests()
|
D | esas2r_main.c | 974 struct list_head *element, *next; in esas2r_check_active_queue() local 976 list_for_each_safe(element, next, queue) { in esas2r_check_active_queue() 978 rq = list_entry(element, struct esas2r_request, req_list); in esas2r_check_active_queue()
|
/linux-4.1.27/drivers/s390/net/ |
D | qeth_core_main.c | 1254 if (buf->buffer->element[0].sflags & SBAL_SFLAGS0_PCI_REQ) in qeth_clear_output_buffer() 1261 if (buf->buffer->element[i].addr && buf->is_header[i]) in qeth_clear_output_buffer() 1263 buf->buffer->element[i].addr); in qeth_clear_output_buffer() 1265 buf->buffer->element[i].length = 0; in qeth_clear_output_buffer() 1266 buf->buffer->element[i].addr = NULL; in qeth_clear_output_buffer() 1267 buf->buffer->element[i].eflags = 0; in qeth_clear_output_buffer() 1268 buf->buffer->element[i].sflags = 0; in qeth_clear_output_buffer() 1270 buf->buffer->element[15].eflags = 0; in qeth_clear_output_buffer() 1271 buf->buffer->element[15].sflags = 0; in qeth_clear_output_buffer() 2850 buf->buffer->element[i].length = PAGE_SIZE; in qeth_init_input_buffer() [all …]
|
D | qeth_l2_main.c | 511 .buffer->element[0]; in qeth_l2_poll() 539 .buffer->element[0]; in qeth_l2_poll()
|
D | qeth_l3_main.c | 2048 .buffer->element[0]; in qeth_l3_poll() 2076 .buffer->element[0]; in qeth_l3_poll()
|
/linux-4.1.27/drivers/s390/scsi/ |
D | zfcp_qdio.h | 80 return &qdio->req_q[q_req->sbal_last]->element[0]; in zfcp_qdio_sbale_req() 92 return &qdio->req_q[q_req->sbal_last]->element[q_req->sbale_curr]; in zfcp_qdio_sbale_curr() 223 sbale = qdio->req_q[q_req->sbal_first]->element; in zfcp_qdio_set_data_div() 267 sbale = qdio->req_q[q_req->sbal_first]->element; in zfcp_qdio_set_scount()
|
D | zfcp_qdio.c | 99 sbale = qdio->res_q[idx]->element; in zfcp_qdio_int_resp() 417 sbale = &(qdio->res_q[cc]->element[0]); in zfcp_qdio_open()
|
D | zfcp_fsf.c | 2369 sbale = &sbal->element[idx]; in zfcp_fsf_reqid_check()
|
/linux-4.1.27/drivers/infiniband/hw/mlx4/ |
D | sysfs.c | 505 struct port_table_attribute *element; in alloc_group_attrs() local 513 element = kzalloc(sizeof (struct port_table_attribute), in alloc_group_attrs() 515 if (!element) in alloc_group_attrs() 517 if (snprintf(element->name, sizeof (element->name), in alloc_group_attrs() 518 "%d", i) >= sizeof (element->name)) { in alloc_group_attrs() 519 kfree(element); in alloc_group_attrs() 522 sysfs_attr_init(&element->attr.attr); in alloc_group_attrs() 523 element->attr.attr.name = element->name; in alloc_group_attrs() 525 element->attr.attr.mode = S_IWUSR | S_IRUGO; in alloc_group_attrs() 526 element->attr.store = store; in alloc_group_attrs() [all …]
|
D | srq.c | 53 event.element.srq = ibsrq; in mlx4_ib_srq_event()
|
D | cq.c | 63 event.element.cq = ibcq; in mlx4_ib_cq_event()
|
D | main.c | 2716 ibev.element.port_num = 1; in handle_bonded_port_state_event() 2827 ibev.element.port_num = mlx4_is_bonded(ibdev->dev) ? 1 : (u8)p; in mlx4_ib_event()
|
D | mad.c | 1100 event.element.port_num = port_num; in mlx4_ib_dispatch_event()
|
/linux-4.1.27/drivers/infiniband/core/ |
D | sysfs.c | 483 struct port_table_attribute *element; in alloc_group_attrs() local 491 element = kzalloc(sizeof(struct port_table_attribute), in alloc_group_attrs() 493 if (!element) in alloc_group_attrs() 496 if (snprintf(element->name, sizeof(element->name), in alloc_group_attrs() 497 "%d", i) >= sizeof(element->name)) { in alloc_group_attrs() 498 kfree(element); in alloc_group_attrs() 502 element->attr.attr.name = element->name; in alloc_group_attrs() 503 element->attr.attr.mode = S_IRUGO; in alloc_group_attrs() 504 element->attr.show = show; in alloc_group_attrs() 505 element->index = i; in alloc_group_attrs() [all …]
|
D | uverbs_main.c | 474 __u64 element, __u64 event, in ib_uverbs_async_handler() argument 493 entry->desc.async.element = element; in ib_uverbs_async_handler() 509 struct ib_ucq_object *uobj = container_of(event->element.cq->uobject, in ib_uverbs_cq_event_handler() 522 if (!event->element.qp->uobject || !event->element.qp->uobject->live) in ib_uverbs_qp_event_handler() 525 uobj = container_of(event->element.qp->uobject, in ib_uverbs_qp_event_handler() 537 uobj = container_of(event->element.srq->uobject, in ib_uverbs_srq_event_handler() 551 ib_uverbs_async_handler(file, event->element.port_num, event->event, in ib_uverbs_event_handler()
|
D | verbs.c | 381 list_for_each_entry(event->element.qp, &qp->open_list, open_list) in __ib_shared_qp_event_handler() 382 if (event->element.qp->event_handler) in __ib_shared_qp_event_handler() 383 event->element.qp->event_handler(event, event->element.qp->qp_context); in __ib_shared_qp_event_handler()
|
D | multicast.c | 783 if (rdma_port_get_link_layer(dev->device, event->element.port_num) != in mcast_event_handler() 787 index = event->element.port_num - dev->start_port; in mcast_event_handler()
|
D | cache.c | 352 work->port_num = event->element.port_num; in ib_cache_event()
|
D | sa_query.c | 451 &sa_dev->port[event->element.port_num - sa_dev->start_port]; in ib_sa_event() 462 queue_work(ib_wq, &sa_dev->port[event->element.port_num - in ib_sa_event()
|
/linux-4.1.27/Documentation/ |
D | flexible-arrays.txt | 48 element size and total will be checked for validity at compile time. 73 flex_array_put() call on an element in that range is guaranteed not to 80 The return value is a pointer to the data element, or NULL if that 81 particular element has never been allocated. 83 Note that it is possible to get back a valid pointer for an element which 96 This function will set the given element to FLEX_ARRAY_FREE and return 97 zero. If storage for the indicated element is not allocated for the array, 99 element does not release the storage associated with it; to reduce the
|
D | sysfs-rules.txt | 60 - a directory name, identical to the last element of the devpath 67 last element of the target path 73 last element of the target path 139 path as an element. Assuming the existence of the "device"-link for 149 element. Assuming the existence of these links for devices which are
|
D | circular-buffers.txt | 188 there is always one element of the array left empty. Therefore, the 190 element currently being read by the consumer. Therefore, the unlock-lock 193 vacated a given element and the write by the producer to that same element.
|
D | vme_api.txt | 32 should be correctly set. The '.name' element is a pointer to a string holding 49 The '.probe' element should contain a pointer to the probe routine. The
|
D | rbtree.txt | 178 the first or last element in the tree. To continue, fetch the next or previous
|
D | CodingStyle | 508 (let* ((anchor (c-langelem-pos c-syntactic-element)) 509 (column (c-langelem-2nd-pos c-syntactic-element))
|
D | applying-patches.txt | 44 source directory and then strip the first element of the path from filenames
|
D | parport-lowlevel.txt | 277 *next' element of the 'struct parport *' that is returned. If 'next'
|
D | kmemcheck.txt | 419 In the first case, the list element we are looking for, "q", is being returned
|
/linux-4.1.27/drivers/scsi/megaraid/ |
D | megaraid_sas_fp.c | 355 u32 element; in getSpanInfo() local 374 for (element = 0; element < MAX_QUAD_DEPTH; element++) { in getSpanInfo() 375 span_set = &(ldSpanInfo[ld].span_set[element]); in getSpanInfo() 380 "width=%x, diff=%x\n", element, in getSpanInfo() 403 element + 1) { in getSpanInfo() 406 quad[element]; in getSpanInfo() 409 element, le32_to_cpu(quad->diff)); in getSpanInfo() 1154 u32 element, span_row_width; in mr_update_span_set() local 1168 for (element = 0; element < MAX_QUAD_DEPTH; element++) { in mr_update_span_set() 1172 element + 1) in mr_update_span_set() [all …]
|
/linux-4.1.27/lib/ |
D | lru_cache.c | 104 struct lc_element **element = NULL; in lc_create() local 122 element = kzalloc(e_count * sizeof(struct lc_element *), GFP_KERNEL); in lc_create() 123 if (!element) in lc_create() 141 lc->lc_element = element; in lc_create() 155 element[i] = e; in lc_create() 162 void *p = element[i]; in lc_create() 167 kfree(element); in lc_create()
|
D | btree.c | 87 void btree_free(void *element, void *pool_data) in btree_free() argument 89 kmem_cache_free(btree_cachep, element); in btree_free()
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/msm/ |
D | qcom,kpss-acc.txt | 20 Definition: the first element specifies the base address and size of 21 the register region. An optional second element specifies
|
D | qcom,saw2.txt | 34 Definition: the first element specifies the base address and size of 35 the register region. An optional second element specifies
|
/linux-4.1.27/net/ceph/ |
D | msgpool.c | 25 static void msgpool_free(void *element, void *arg) in msgpool_free() argument 28 struct ceph_msg *msg = element; in msgpool_free()
|
/linux-4.1.27/drivers/usb/host/ |
D | uhci-debug.c | 169 __hc32 element = qh_element(qh); in uhci_show_qh() local 183 hc32_to_cpu(uhci, element)); in uhci_show_qh() 195 if (element & UHCI_PTR_QH(uhci)) in uhci_show_qh() 198 if (element & UHCI_PTR_DEPTH(uhci)) in uhci_show_qh() 201 if (element & cpu_to_hc32(uhci, 8)) in uhci_show_qh() 204 if (!(element & ~(UHCI_PTR_QH(uhci) | UHCI_PTR_DEPTH(uhci)))) in uhci_show_qh() 224 if (element != LINK_TO_TD(uhci, td)) in uhci_show_qh()
|
D | uhci-hcd.h | 150 __hc32 element; /* Queue element (TD) pointer */ member 187 #define qh_element(qh) ACCESS_ONCE((qh)->element)
|
D | uhci-q.c | 258 qh->element = UHCI_PTR_TERM(uhci); in uhci_alloc_qh() 353 qh->element = UHCI_PTR_TERM(uhci); in uhci_cleanup_queue() 493 qh->element = LINK_TO_TD(uhci, td); in uhci_activate_qh() 1137 qh->element = LINK_TO_TD(uhci, td); in uhci_fixup_short_transfer() 1152 qh->element = td->link; in uhci_fixup_short_transfer() 1241 qh->element = UHCI_PTR_TERM(uhci); in uhci_result_common() 1714 qh->element = qh->post_td->link; in uhci_advance_check()
|
D | uhci-hcd.c | 650 uhci->skel_async_qh->element = uhci->skel_term_qh->element = in uhci_start()
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | Channel-Mapping-API.txt | 37 control element features. 39 As a ground design, each PCM substream may contain a control element 41 element is specified by: 49 Each control element provides at least the TLV read operation and the 138 the given stream. The control element returns an integer array
|
D | OSS-Emulation.txt | 203 OSS mixer is relatively complicated. ALSA builds up a mixer element 205 string. For example, the volume element SOUND_MIXER_PCM is composed 256 where the first column is the OSS volume element, the second column
|
D | HD-Audio.txt | 836 (mixer) elements, set/get the control element value, simulate the PCM
|
/linux-4.1.27/drivers/hwmon/ |
D | acpi_power_meter.c | 596 union acpi_object *element = &(pss->package.elements[i]); in read_domain_devices() local 599 if (element->type != ACPI_TYPE_LOCAL_REFERENCE) in read_domain_devices() 604 if (acpi_bus_get_device(element->reference.handle, in read_domain_devices() 792 union acpi_object *element = &(pss->package.elements[i]); in read_capabilities() local 794 if (element->type != ACPI_TYPE_STRING) { in read_capabilities() 799 *str = kzalloc(sizeof(u8) * (element->string.length + 1), in read_capabilities() 806 strncpy(*str, element->string.pointer, element->string.length); in read_capabilities()
|
D | ibmaem.c | 227 u8 element; member 384 rs_req.element = elt; in aem_read_sensor()
|
/linux-4.1.27/scripts/gdb/linux/ |
D | utils.py | 46 element = gdb.Value(0).cast(typeobj) 47 return int(str(element[field].address).split()[0], 16)
|
/linux-4.1.27/drivers/infiniband/hw/usnic/ |
D | usnic_ib_main.c | 148 ib_event.element.port_num = 1; in usnic_ib_handle_usdev_event() 160 ib_event.element.port_num = 1; in usnic_ib_handle_usdev_event() 169 ib_event.element.port_num = 1; in usnic_ib_handle_usdev_event() 191 ib_event.element.port_num = 1; in usnic_ib_handle_usdev_event() 257 ib_event.element.port_num = 1; in usnic_ib_handle_inet_event() 267 ib_event.element.port_num = 1; in usnic_ib_handle_inet_event()
|
D | usnic_ib_qp_grp.c | 478 ib_event.element.qp = &qp_grp->ibqp; in usnic_ib_qp_grp_modify()
|
/linux-4.1.27/drivers/scsi/mpt3sas/ |
D | mpt3sas_scsih.c | 3260 Mpi2EventIrConfigElement_t *element; in _scsih_check_ir_config_unhide_events() local 3269 element = (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0]; in _scsih_check_ir_config_unhide_events() 3270 for (i = 0; i < event_data->NumElements; i++, element++) { in _scsih_check_ir_config_unhide_events() 3274 if (element->ReasonCode == in _scsih_check_ir_config_unhide_events() 3276 element->ReasonCode == in _scsih_check_ir_config_unhide_events() 3278 volume_handle = le16_to_cpu(element->VolDevHandle); in _scsih_check_ir_config_unhide_events() 3285 element = (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0]; in _scsih_check_ir_config_unhide_events() 3286 for (i = 0; i < event_data->NumElements; i++, element++) { in _scsih_check_ir_config_unhide_events() 3290 if (element->ReasonCode == MPI2_EVENT_IR_CHANGE_RC_UNHIDE) { in _scsih_check_ir_config_unhide_events() 3291 volume_handle = le16_to_cpu(element->VolDevHandle); in _scsih_check_ir_config_unhide_events() [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/ |
D | srio-rmu.txt | 65 element is associated with the transmit (TX) interrupt and the 66 second element is associated with the receive (RX) interrupt. 95 element is associated with the transmit (TX) interrupt and the 96 second element is associated with the receive (RX) interrupt.
|
D | srio.txt | 70 property. Within the pair, the first element represents the 71 LIODN associated with memory transactions and the second element
|
D | fman.txt | 94 The first element is associated with the event interrupts and 95 the second element is associated with the error interrupts.
|
/linux-4.1.27/drivers/scsi/mpt2sas/ |
D | mpt2sas_scsih.c | 3566 Mpi2EventIrConfigElement_t *element; in _scsih_check_ir_config_unhide_events() local 3578 element = (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0]; in _scsih_check_ir_config_unhide_events() 3579 for (i = 0; i < event_data->NumElements; i++, element++) { in _scsih_check_ir_config_unhide_events() 3580 if (element->ReasonCode == in _scsih_check_ir_config_unhide_events() 3582 element->ReasonCode == in _scsih_check_ir_config_unhide_events() 3584 volume_handle = le16_to_cpu(element->VolDevHandle); in _scsih_check_ir_config_unhide_events() 3591 element = (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0]; in _scsih_check_ir_config_unhide_events() 3592 for (i = 0; i < event_data->NumElements; i++, element++) { in _scsih_check_ir_config_unhide_events() 3596 if (element->ReasonCode == MPI2_EVENT_IR_CHANGE_RC_UNHIDE) { in _scsih_check_ir_config_unhide_events() 3597 volume_handle = le16_to_cpu(element->VolDevHandle); in _scsih_check_ir_config_unhide_events() [all …]
|
/linux-4.1.27/drivers/gpio/ |
D | gpiolib-acpi.c | 728 const union acpi_object *element = obj->package.elements; in acpi_gpio_package_count() local 729 const union acpi_object *end = element + obj->package.count; in acpi_gpio_package_count() 732 while (element < end) { in acpi_gpio_package_count() 733 if (element->type == ACPI_TYPE_LOCAL_REFERENCE) in acpi_gpio_package_count() 736 element++; in acpi_gpio_package_count()
|
/linux-4.1.27/sound/usb/6fire/ |
D | control.h | 41 struct snd_kcontrol *element[CONTROL_MAX_ELEMENTS]; member
|
/linux-4.1.27/Documentation/devicetree/bindings/usb/ |
D | dwc3.txt | 11 - usb-phy : array of phandle for the PHY device. The first element 13 the second element is expected to be a handle to the USB3/SS PHY
|
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/ |
D | rockchip,pinctrl.txt | 34 - reg: first element is the general register space of the iomux controller 36 second element is the separate pull register space of the rk3188. 55 - reg: second element: separate pull register for rk3188 bank0, use
|
/linux-4.1.27/arch/x86/include/uapi/asm/ |
D | sigcontext32.h | 22 __u32 element[4]; member
|
D | sigcontext.h | 68 unsigned long element[4]; member
|
/linux-4.1.27/Documentation/filesystems/ |
D | path-lookup.txt | 10 child with the next element, and so on. 27 next path element. This is inefficient and unscalable. It is inefficient 28 because of the locks and atomic operations required for every dentry element 48 (usually the final element, or parent of final element). This is done by taking 51 iteratively for each subsequent name element, look up the child of the current 69 - perform dcache hash name lookups on (parent, name element) tuples; 248 | inode: 10 | path element which is "home"... 257 +---------------------+ check inode and look up the next element. 318 * NULL dentry (ie. any uncached path element) 344 element, nodentry for missing dentry, revalidate for filesystem revalidate
|
D | sysfs-pci.txt | 26 The topmost element describes the PCI domain and bus number. In this case,
|
D | porting | 376 d_revalidate is a callback that is made on every path element (if
|
/linux-4.1.27/drivers/infiniband/hw/amso1100/ |
D | c2_ae.c | 235 ib_event.element.qp = &qp->ibqp; in c2_ae_event() 310 ib_event.element.cq = &cq->ibcq; in c2_ae_event()
|
/linux-4.1.27/arch/s390/include/asm/ |
D | qdio.h | 222 struct qdio_buffer_element element[QDIO_MAX_ELEMENTS_PER_BUFFER]; member 238 struct sl_element element[QDIO_MAX_BUFFERS_PER_Q]; member
|
/linux-4.1.27/drivers/infiniband/hw/cxgb3/ |
D | iwch_ev.c | 91 event.element.cq = &chp->ibcq; in post_qp_event() 93 event.element.qp = &qhp->ibqp; in post_qp_event()
|
D | iwch.c | 261 event.element.port_num = portnum; in iwch_event_handler()
|
/linux-4.1.27/Documentation/power/ |
D | pm_qos_interface.txt | 40 Will insert an element into the list for that identified PM QoS class with the 47 Will update the list element pointed to by the handle with the new target value 52 Will remove the element. After removal it will update the aggregate target and 111 Will insert an element into the list for that identified device with the 118 Will update the list element pointed to by the handle with the new target value 123 Will remove the element. After removal it will update the aggregate target and
|
/linux-4.1.27/Documentation/devicetree/bindings/power/ |
D | rx51-battery.txt | 9 for each element in io-channel-names.
|
/linux-4.1.27/Documentation/scsi/ |
D | scsi-changer.txt | 144 are some vendor-specific element types. Grundig for example 146 CDs, which is addressed as element 0xc000 (type 5). To tell the 147 driver about this vendor-specific element, use this: 153 values, this way you can configure the element types 5-8.
|
/linux-4.1.27/drivers/infiniband/hw/cxgb4/ |
D | ev.c | 107 event.element.cq = &chp->ibcq; in post_qp_event() 109 event.element.qp = &qhp->ibqp; in post_qp_event()
|
/linux-4.1.27/drivers/platform/x86/ |
D | panasonic-laptop.c | 302 union acpi_object *element = &(hkey->package.elements[i]); in acpi_pcc_retrieve_biosdata() local 303 if (likely(element->type == ACPI_TYPE_INTEGER)) { in acpi_pcc_retrieve_biosdata() 304 pcc->sinf[i] = element->integer.value; in acpi_pcc_retrieve_biosdata()
|
/linux-4.1.27/drivers/net/ethernet/sfc/ |
D | bitfield.h | 136 #define EFX_EXTRACT64(element, min, max, low, high) \ argument 137 EFX_EXTRACT_NATIVE(le64_to_cpu(element), min, max, low, high) 143 #define EFX_EXTRACT32(element, min, max, low, high) \ argument 144 EFX_EXTRACT_NATIVE(le32_to_cpu(element), min, max, low, high)
|
/linux-4.1.27/drivers/infiniband/hw/ocrdma/ |
D | ocrdma_main.c | 159 gid_event.element.port_num = 1; in ocrdma_addr_event() 557 port_event.element.port_num = 1; in ocrdma_open() 582 err_event.element.qp = &qp->ibqp; in ocrdma_close() 591 err_event.element.port_num = 1; in ocrdma_close()
|
D | ocrdma_hw.c | 678 ib_evt.element.cq = &cq->ibcq; in ocrdma_dispatch_ibevent() 684 ib_evt.element.cq = &cq->ibcq; in ocrdma_dispatch_ibevent() 690 ib_evt.element.qp = &qp->ibqp; in ocrdma_dispatch_ibevent() 695 ib_evt.element.qp = &qp->ibqp; in ocrdma_dispatch_ibevent() 699 ib_evt.element.qp = &qp->ibqp; in ocrdma_dispatch_ibevent() 703 ib_evt.element.qp = &qp->ibqp; in ocrdma_dispatch_ibevent() 707 ib_evt.element.port_num = 1; in ocrdma_dispatch_ibevent() 713 ib_evt.element.srq = &qp->srq->ibsrq; in ocrdma_dispatch_ibevent() 719 ib_evt.element.srq = &qp->srq->ibsrq; in ocrdma_dispatch_ibevent() 725 ib_evt.element.qp = &qp->ibqp; in ocrdma_dispatch_ibevent()
|
/linux-4.1.27/net/dns_resolver/ |
D | Kconfig | 13 being resolving a UNC hostname element to an IP address for CIFS or
|
/linux-4.1.27/drivers/infiniband/ulp/ipoib/ |
D | ipoib_verbs.c | 302 if (record->element.port_num != priv->port) in ipoib_event() 306 record->device->name, record->element.port_num); in ipoib_event()
|
/linux-4.1.27/drivers/net/wireless/iwlegacy/ |
D | 3945-mac.c | 266 struct list_head *element; in il3945_clear_free_frames() local 271 element = il->free_frames.next; in il3945_clear_free_frames() 272 list_del(element); in il3945_clear_free_frames() 273 kfree(list_entry(element, struct il3945_frame, list)); in il3945_clear_free_frames() 288 struct list_head *element; in il3945_get_free_frame() local 300 element = il->free_frames.next; in il3945_get_free_frame() 301 list_del(element); in il3945_get_free_frame() 302 return list_entry(element, struct il3945_frame, list); in il3945_get_free_frame() 957 struct list_head *element; in il3945_rx_queue_restock() local 966 element = rxq->rx_free.next; in il3945_rx_queue_restock() [all …]
|
D | 4965-mac.c | 268 struct list_head *element; in il4965_rx_queue_restock() local 279 element = rxq->rx_free.next; in il4965_rx_queue_restock() 280 rxb = list_entry(element, struct il_rx_buf, list); in il4965_rx_queue_restock() 281 list_del(element); in il4965_rx_queue_restock() 318 struct list_head *element; in il4965_rx_allocate() local 380 element = rxq->rx_used.next; in il4965_rx_allocate() 381 rxb = list_entry(element, struct il_rx_buf, list); in il4965_rx_allocate() 382 list_del(element); in il4965_rx_allocate() 3706 struct list_head *element; in il4965_clear_free_frames() local 3711 element = il->free_frames.next; in il4965_clear_free_frames() [all …]
|
/linux-4.1.27/drivers/infiniband/hw/mthca/ |
D | mthca_mad.c | 126 event.element.port_num = port_num; in smp_snoop() 142 event.element.port_num = port_num; in smp_snoop()
|
D | mthca_catas.c | 96 event.element.port_num = 0; in handle_catas()
|
D | mthca_srq.c | 444 event.element.srq = &srq->ibsrq; in mthca_srq_event()
|
D | mthca_eq.c | 255 record.element.port_num = port; in port_change()
|
D | mthca_cq.c | 259 event.element.cq = &cq->ibcq; in mthca_cq_event()
|
D | mthca_qp.c | 260 event.element.qp = &qp->ibqp; in mthca_qp_event()
|
/linux-4.1.27/scripts/coccinelle/iterators/ |
D | list_entry_update.cocci | 1 /// list_for_each_entry uses its first argument to get from one element of
|
D | itnull.cocci | 2 /// to a real list element, never NULL.
|
/linux-4.1.27/drivers/net/wireless/ipw2x00/ |
D | ipw2100.c | 732 struct list_head *element; in ipw2100_hw_send_command() local 774 element = priv->msg_free_list.next; in ipw2100_hw_send_command() 776 packet = list_entry(element, struct ipw2100_tx_packet, list); in ipw2100_hw_send_command() 790 list_del(element); in ipw2100_hw_send_command() 793 list_add_tail(element, &priv->msg_pend_list); in ipw2100_hw_send_command() 2822 struct list_head *element; in __ipw2100_tx_process() local 2831 element = priv->fw_pend_list.next; in __ipw2100_tx_process() 2833 packet = list_entry(element, struct ipw2100_tx_packet, list); in __ipw2100_tx_process() 2897 list_del(element); in __ipw2100_tx_process() 2945 list_add_tail(element, &priv->tx_free_list); in __ipw2100_tx_process() [all …]
|
D | ipw2200.c | 3008 struct list_head *element, *safe; in ipw_remove_current_network() local 3013 list_for_each_safe(element, safe, &priv->ieee->network_list) { in ipw_remove_current_network() 3014 network = list_entry(element, struct libipw_network, list); in ipw_remove_current_network() 3016 list_del(element); in ipw_remove_current_network() 5165 struct list_head *element; in ipw_rx_queue_restock() local 5173 element = rxq->rx_free.next; in ipw_rx_queue_restock() 5174 rxb = list_entry(element, struct ipw_rx_mem_buffer, list); in ipw_rx_queue_restock() 5175 list_del(element); in ipw_rx_queue_restock() 5205 struct list_head *element; in ipw_rx_queue_replenish() local 5211 element = rxq->rx_used.next; in ipw_rx_queue_replenish() [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/clock/st/ |
D | st,flexgen.txt | 5 - a clock cross bar (represented by a mux element)
|
/linux-4.1.27/Documentation/input/ |
D | yealink.txt | 117 hide_icon Write, hide the element by writing the icon name. 118 show_icon Write, display the element by writing the icon name.
|
/linux-4.1.27/Documentation/scheduler/ |
D | completion.txt | 75 done element to "not available", thus again to 0, without touching the 214 (decrementing) the done element of struct completion. Waiting threads 219 done element. Calling complete_all() multiple times is a bug though. Both
|
/linux-4.1.27/drivers/infiniband/hw/ehca/ |
D | ehca_irq.c | 195 event.element.srq = &qp->ib_srq; in dispatch_qp_event() 201 event.element.qp = &qp->ib_qp; in dispatch_qp_event() 335 event.element.port_num = port_num; in dispatch_port_event()
|
D | ehca_qp.c | 2208 event.element.port_num = port_num; in internal_destroy_qp()
|
/linux-4.1.27/drivers/infiniband/hw/qib/ |
D | qib_intr.c | 78 event.element.port_num = ppd->port; in signal_ib_event()
|
D | qib_ruc.c | 213 ev.element.srq = qp->ibqp.srq; in qib_get_rwqe() 239 ev.element.qp = &qp->ibqp; in qib_migrate_qp() 628 ev.element.qp = &sqp->ibqp; in qib_ruc_loopback()
|
D | qib_cq.c | 77 ev.element.cq = &cq->ibcq; in qib_cq_enter()
|
D | qib_uc.c | 337 ev.element.qp = &qp->ibqp; in qib_uc_rcv()
|
D | qib_qp.c | 833 ev.element.qp = &qp->ibqp; in qib_modify_qp() 839 ev.element.qp = &qp->ibqp; in qib_modify_qp()
|
D | qib_rc.c | 1832 ev.element.qp = &qp->ibqp; in qib_rc_error() 1955 ev.element.qp = &qp->ibqp; in qib_rc_rcv()
|
D | qib_mad.c | 685 event.element.port_num = port; in subn_set_portinfo() 1031 event.element.port_num = port; in set_pkeys()
|
/linux-4.1.27/Documentation/devicetree/bindings/sound/ |
D | davinci-mcasp-audio.txt | 22 - dmas: two element list of DMA controller phandles and DMA request line
|
/linux-4.1.27/Documentation/devicetree/bindings/net/can/ |
D | m_can.txt | 20 RAM and each element(e.g Rx FIFO or Tx Buffer and etc)
|
/linux-4.1.27/drivers/s390/char/ |
D | Kconfig | 88 gives you a nice name for the system on the service element. 100 the service element and connected organisations about a kernel panic.
|
/linux-4.1.27/drivers/net/ethernet/intel/i40e/ |
D | i40e_main.c | 1260 struct i40e_aqc_remove_macvlan_element_data element; in i40e_rm_default_mac_filter() local 1268 memset(&element, 0, sizeof(element)); in i40e_rm_default_mac_filter() 1269 ether_addr_copy(element.mac_addr, macaddr); in i40e_rm_default_mac_filter() 1270 element.vlan_tag = 0; in i40e_rm_default_mac_filter() 1271 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH | in i40e_rm_default_mac_filter() 1273 aq_ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL); in i40e_rm_default_mac_filter() 1444 struct i40e_aqc_remove_macvlan_element_data element; in i40e_set_mac() local 1446 memset(&element, 0, sizeof(element)); in i40e_set_mac() 1447 ether_addr_copy(element.mac_addr, netdev->dev_addr); in i40e_set_mac() 1448 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH; in i40e_set_mac() [all …]
|
D | i40e_adminq_cmd.h | 611 struct i40e_aqc_switch_config_element_resp element[1]; member
|
/linux-4.1.27/fs/configfs/ |
D | dir.c | 173 void *element, int type) in configfs_new_dirent() argument 184 sd->s_element = element; in configfs_new_dirent() 226 struct dentry * dentry, void * element, in configfs_make_dirent() argument 231 sd = configfs_new_dirent(parent_sd, element, type); in configfs_make_dirent()
|
/linux-4.1.27/Documentation/usb/ |
D | functionfs.txt | 57 parameter's value is just a one-element list, then the behaviour
|
/linux-4.1.27/Documentation/devicetree/bindings/mips/cavium/ |
D | bootbus.txt | 20 length element for any triplet is zero, the chip select is disabled,
|
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmfmac/ |
D | fwil_types.h | 482 __le32 element[1]; /* variable length uint32 list */ member
|
D | cfg80211.c | 5269 ch.chspec = (u16)le32_to_cpu(chlist->element[i]); in brcmf_count_20mhz_channels() 5381 ch.chspec = (u16)le32_to_cpu(list->element[i]); in brcmf_construct_chaninfo() 5512 ch.chspec = (u16)le32_to_cpu(list->element[i]); in brcmf_enable_bw40_2g()
|
/linux-4.1.27/drivers/gpu/drm/qxl/ |
D | qxl_cmd.c | 153 void *element) in qxl_ring_pop() argument 169 memcpy(element, (void *)ring_elt, ring->element_size); in qxl_ring_pop()
|
/linux-4.1.27/drivers/infiniband/hw/ipath/ |
D | ipath_ruc.c | 237 ev.element.srq = qp->ibqp.srq; in ipath_get_rwqe() 502 ev.element.qp = &sqp->ibqp; in ipath_ruc_loopback()
|
D | ipath_cq.c | 74 ev.element.cq = &cq->ibcq; in ipath_cq_enter()
|
D | ipath_ud.c | 170 ev.element.srq = qp->ibqp.srq; in ipath_ud_loopback()
|
D | ipath_mad.c | 439 event.element.port_num = port; in recv_subn_set_portinfo() 775 event.element.port_num = port; in set_pkeys()
|
D | ipath_intr.c | 251 event.element.port_num = 1; in signal_ib_event()
|
D | ipath_qp.c | 606 ev.element.qp = &qp->ibqp; in ipath_modify_qp()
|
D | ipath_rc.c | 1538 ev.element.qp = &qp->ibqp; in ipath_rc_error()
|
/linux-4.1.27/Documentation/video4linux/cx2341x/ |
D | fw-dma.txt | 67 Each S-G array element is a struct of three 32-bit words. The first word is
|
/linux-4.1.27/Documentation/s390/ |
D | monreader.txt | 125 Reading from the device provides a 12 Byte monitor control element (MCE), 137 of the monitor control element layout. The layout of the monitor records can
|
D | Debugging390.txt | 123 element (SASCE), which points to the secondary space region or 128 element (HASCE), which points to the home space region/segment
|
/linux-4.1.27/arch/sh/kernel/cpu/sh5/ |
D | switchto.S | 132 ld.l r4, 4, r9 ! next->thread_info (2nd element of next task_struct)
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-class-uwb_rc | 52 The application-specific information element (ASIE)
|
D | sysfs-class-cxl | 58 work_element_descriptor: Treat the work element
|
D | sysfs-bus-iio | 666 The raw or input element of the name indicates whether the 797 The raw or input element of the name indicates whether the 1028 Scan element control for triggered data capture. 1045 Description of the scan element data storage within the buffer 1098 scan element in the buffer. Note these are not dependent on
|
D | sysfs-bus-pci | 239 element. Drivers have the ability at probe time to reduce the
|
/linux-4.1.27/Documentation/filesystems/nfs/ |
D | rpc-cache.txt | 41 as an element, usually the first. 43 Each cache element is reference counted and contains
|
/linux-4.1.27/Documentation/misc-devices/ |
D | lis3lv02d | 45 sensing element is internally moved little bit. Selftest measures difference
|
/linux-4.1.27/Documentation/video4linux/ |
D | pxa_camera.txt | 105 element to the video buffer scatter gather
|
/linux-4.1.27/Documentation/devicetree/bindings/c6x/ |
D | dscr.txt | 56 MAC addresses are contained in two registers. Each element of a MAC address
|
/linux-4.1.27/drivers/s390/cio/ |
D | qdio_main.c | 434 (q->sbal[q->first_to_check]->element[15].sflags) == 0x10)) { in process_buffer_error() 445 q->sbal[q->first_to_check]->element[14].sflags, in process_buffer_error() 446 q->sbal[q->first_to_check]->element[15].sflags); in process_buffer_error()
|
D | qdio_setup.c | 208 q->sl->element[j].sbal = (unsigned long)q->sbal[j]; in setup_storage_lists()
|
/linux-4.1.27/drivers/crypto/caam/ |
D | regs.h | 593 struct rtic_element element[2]; member
|
/linux-4.1.27/net/sunrpc/xprtrdma/ |
D | svc_rdma_transport.c | 195 event->event, event->element.qp); in qp_event_handler() 206 event->event, event->element.qp); in qp_event_handler()
|
/linux-4.1.27/drivers/infiniband/hw/mlx5/ |
D | srq.c | 58 event.element.srq = ibsrq; in mlx5_ib_srq_event()
|
D | cq.c | 62 event.element.cq = ibcq; in mlx5_ib_cq_event()
|
D | main.c | 885 ibev.element.port_num = port; in mlx5_ib_event()
|
/linux-4.1.27/Documentation/arm/ |
D | vlocks.txt | 152 we do not care which element of currently_voting appears in which
|
/linux-4.1.27/include/uapi/rdma/ |
D | ib_user_verbs.h | 110 __u64 element; member
|
/linux-4.1.27/drivers/infiniband/ulp/srpt/ |
D | ib_srpt.c | 190 if (event->element.port_num <= sdev->device->phys_port_cnt) { in srpt_event_handler() 191 sport = &sdev->port[event->element.port_num - 1]; in srpt_event_handler() 203 if (event->element.port_num <= sdev->device->phys_port_cnt) { in srpt_event_handler() 204 sport = &sdev->port[event->element.port_num - 1]; in srpt_event_handler()
|
/linux-4.1.27/Documentation/networking/ |
D | filter.txt | 193 The element op is a 16 bit wide opcode that has a particular instruction 195 "jump if true", the other one "jump if false". Eventually, element k 1119 - find and delete element by key in a given map 1202 map element:
|
D | can.txt | 404 the easy handling of the length information the canfd_frame.len element 451 bit is set in can_id element of the can_filter structure. In 737 When sending a message to the broadcast manager the 'flags' element may 780 element of the BCM message head. The defined number of CAN frames are added
|
D | scaling.txt | 269 in rps_dev_flow[i] records the last element in flow i that has
|
/linux-4.1.27/kernel/locking/ |
D | lockdep.c | 906 unsigned long element[MAX_CIRCULAR_QUEUE_SIZE]; member 937 cq->element[cq->rear] = elem; in __cq_enqueue() 947 *elem = cq->element[cq->front]; in __cq_dequeue()
|
/linux-4.1.27/Documentation/hwmon/ |
D | sysfs-interface | 53 than once, even if there is a single element of the given type on the 54 specific chip. Other files do not refer to a specific element, so
|
/linux-4.1.27/Documentation/PCI/ |
D | MSI-HOWTO.txt | 241 two-element array. The driver is expected to fill in the 'entry' value 242 in each element of the array to indicate for which entries the kernel
|
/linux-4.1.27/Documentation/powerpc/ |
D | cxl.txt | 217 Get the current context id, also known as the process element.
|
/linux-4.1.27/block/ |
D | blk-core.c | 569 static void free_request_struct(void *element, void *unused) in free_request_struct() argument 571 kmem_cache_free(request_cachep, element); in free_request_struct()
|
/linux-4.1.27/drivers/net/ethernet/agere/ |
D | et131x.c | 2192 struct list_head *element; in nic_rx_pkts() local 2247 element = rx_local->recv_list.next; in nic_rx_pkts() 2248 rfd = list_entry(element, struct rfd, list_node); in nic_rx_pkts()
|
/linux-4.1.27/Documentation/locking/ |
D | rt-mutex-design.txt | 199 list, the head of the list is a different element than the nodes of a list. 498 task's waiter structure "task" element is NULL. This check is 500 sets the task's waiter structure "task" element to NULL with only
|
/linux-4.1.27/drivers/infiniband/ulp/iser/ |
D | iser_verbs.c | 66 event->device->name, event->element.port_num); in iser_event_handler()
|
/linux-4.1.27/Documentation/isdn/ |
D | INTERFACE.CAPI | 287 Macros to extract/set element values from/in a CAPI message header
|
/linux-4.1.27/drivers/net/ethernet/intel/i40evf/ |
D | i40e_adminq_cmd.h | 609 struct i40e_aqc_switch_config_element_resp element[1]; member
|
/linux-4.1.27/Documentation/vm/ |
D | cleancache.txt | 149 functions, or to a compare-struct-element-to-negative if a
|
D | unevictable-lru.txt | 130 lru_list enum element). The memory controller tracks the movement of pages to
|
/linux-4.1.27/scripts/kconfig/ |
D | zconf.lex.c_shipped | 1945 * The next element becomes the new top. 2235 /* Pop the buffer stack, destroying each element. */
|
D | zconf.tab.c_shipped | 1478 Waste one element of value and location stack
|
/linux-4.1.27/scripts/genksyms/ |
D | lex.lex.c_shipped | 1550 * The next element becomes the new top. 1840 /* Pop the buffer stack, destroying each element. */
|
D | parse.tab.c_shipped | 1523 Waste one element of value and location stack
|
/linux-4.1.27/scripts/dtc/ |
D | dtc-lexer.lex.c_shipped | 1813 * The next element becomes the new top. 2103 /* Pop the buffer stack, destroying each element. */
|
/linux-4.1.27/include/rdma/ |
D | ib_verbs.h | 422 } element; member
|
/linux-4.1.27/drivers/scsi/aic7xxx/ |
D | aic7xxx.seq | 988 * in addition to the currently active element. We 1187 * Load the next SG element's data address and length 1259 * all other adapters, we'll loop after each S/G element
|
D | aic79xx.seq | 91 * Find the end of the qfreeze list. The first element has 1814 * in addition to the currently active element. We
|
/linux-4.1.27/Documentation/virtual/kvm/ |
D | mmu.txt | 192 element of this array can be calculated from the gfn field when used, in
|
/linux-4.1.27/drivers/infiniband/hw/nes/ |
D | nes_verbs.c | 3950 event.element.port_num = nesvnic->logical_port + 1; in nes_handle_delayed_event() 3965 event.element.port_num = nesvnic->logical_port + 1; in nes_port_ibevent()
|
/linux-4.1.27/Documentation/cgroups/ |
D | cpusets.txt | 512 setup - one sched domain for each element (struct cpumask) in the
|