/linux-4.4.14/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.4.14/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.4.14/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.4.14/scripts/ |
D | asn1_compiler.c | 685 struct element { struct 690 struct element *children; argument 691 struct element *next; argument 692 struct element *render_next; argument 693 struct element *list_next; argument 712 struct element *element; argument 802 static struct element *parse_type(struct token **_cursor, struct token *stop, 823 type->element = parse_type(&cursor, type[1].name, NULL); in parse() 824 type->element->type_def = type; in parse() 837 static struct element *element_list; [all …]
|
/linux-4.4.14/drivers/acpi/ |
D | utils.c | 97 union acpi_object *element = &(package->package.elements[i]); in acpi_extract_package() local 99 switch (element->type) { in acpi_extract_package() 129 (element->string.length * sizeof(char)) + in acpi_extract_package() 135 sizeof(u8 *) + element->buffer.length; in acpi_extract_package() 201 union acpi_object *element = &(package->package.elements[i]); in acpi_extract_package() local 203 if (!element) { in acpi_extract_package() 207 switch (element->type) { in acpi_extract_package() 213 element->integer.value; in acpi_extract_package() 220 element->integer.value; in acpi_extract_package() 239 memcpy(tail, element->string.pointer, in acpi_extract_package() [all …]
|
D | property.c | 491 const union acpi_object *element, *end; in acpi_data_get_property_reference() local 529 element = obj->package.elements; in acpi_data_get_property_reference() 530 end = element + obj->package.count; in acpi_data_get_property_reference() 532 while (element < end) { in acpi_data_get_property_reference() 535 if (element->type != ACPI_TYPE_LOCAL_REFERENCE) in acpi_data_get_property_reference() 538 ret = acpi_bus_get_device(element->reference.handle, &device); in acpi_data_get_property_reference() 542 element++; in acpi_data_get_property_reference() 546 for (i = 0; element + i < end; i++) { in acpi_data_get_property_reference() 547 int type = element[i].type; in acpi_data_get_property_reference() 561 args->args[i] = element[i].integer.value; in acpi_data_get_property_reference() [all …]
|
D | processor_idle.c | 372 union acpi_object *element; in acpi_processor_get_power_info_cst() local 379 element = &(cst->package.elements[i]); in acpi_processor_get_power_info_cst() 380 if (element->type != ACPI_TYPE_PACKAGE) in acpi_processor_get_power_info_cst() 383 if (element->package.count != 4) in acpi_processor_get_power_info_cst() 386 obj = &(element->package.elements[0]); in acpi_processor_get_power_info_cst() 398 obj = &(element->package.elements[1]); in acpi_processor_get_power_info_cst() 454 obj = &(element->package.elements[2]); in acpi_processor_get_power_info_cst() 460 obj = &(element->package.elements[3]); in acpi_processor_get_power_info_cst()
|
D | scan.c | 750 union acpi_object *element = NULL; in acpi_bus_extract_wakeup_device_power_package() local 771 element = &(package->package.elements[0]); in acpi_bus_extract_wakeup_device_power_package() 772 if (!element) in acpi_bus_extract_wakeup_device_power_package() 775 if (element->type == ACPI_TYPE_PACKAGE) { in acpi_bus_extract_wakeup_device_power_package() 776 if ((element->package.count < 2) || in acpi_bus_extract_wakeup_device_power_package() 777 (element->package.elements[0].type != in acpi_bus_extract_wakeup_device_power_package() 779 || (element->package.elements[1].type != ACPI_TYPE_INTEGER)) in acpi_bus_extract_wakeup_device_power_package() 783 element->package.elements[0].reference.handle; in acpi_bus_extract_wakeup_device_power_package() 785 (u32) element->package.elements[1].integer.value; in acpi_bus_extract_wakeup_device_power_package() 786 } else if (element->type == ACPI_TYPE_INTEGER) { in acpi_bus_extract_wakeup_device_power_package() [all …]
|
D | battery.c | 397 union acpi_object *element; in extract_package() local 403 element = &package->package.elements[i]; in extract_package() 406 if (element->type == ACPI_TYPE_STRING || in extract_package() 407 element->type == ACPI_TYPE_BUFFER) in extract_package() 408 strncpy(ptr, element->string.pointer, 32); in extract_package() 409 else if (element->type == ACPI_TYPE_INTEGER) { in extract_package() 410 strncpy(ptr, (u8 *)&element->integer.value, in extract_package() 417 *x = (element->type == ACPI_TYPE_INTEGER) ? in extract_package() 418 element->integer.value : -1; in extract_package()
|
D | power.c | 141 union acpi_object *element = &package->package.elements[i]; in acpi_extract_power_resources() local 144 if (element->type != ACPI_TYPE_LOCAL_REFERENCE) { in acpi_extract_power_resources() 148 rhandle = element->reference.handle; in acpi_extract_power_resources()
|
/linux-4.4.14/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.4.14/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 | btree.h | 55 void btree_free(void *element, void *pool_data);
|
D | lru_cache.h | 257 extern void lc_del(struct lru_cache *lc, struct lc_element *element);
|
/linux-4.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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 | rcu.txt | 11 a grace period to elapse, then free the element. See the listRCU.txt
|
D | arrayRCU.txt | 39 located in each array element, and where the array is never resized,
|
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 | 433 o Use synchronize_rcu() -after- removing a data element from an 435 the data element, in order to wait for the completion of all 515 old version of the newly updated element. It also clearly shows the 522 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 | 285 that have reached a given point in the pipeline. The first element
|
D | trace.txt | 328 o Each element of the form "3/3 ..>. 0:7 ^0" represents one rcu_node
|
/linux-4.4.14/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 | 973 struct list_head *element, *next; in esas2r_check_active_queue() local 975 list_for_each_safe(element, next, queue) { in esas2r_check_active_queue() 977 rq = list_entry(element, struct esas2r_request, req_list); in esas2r_check_active_queue()
|
/linux-4.4.14/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.4.14/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 | 54 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 | 2744 ibev.element.port_num = 1; in handle_bonded_port_state_event() 2855 ibev.element.port_num = mlx4_is_bonded(ibdev->dev) ? 1 : (u8)p; in mlx4_ib_event()
|
/linux-4.4.14/drivers/infiniband/core/ |
D | sysfs.c | 466 struct port_table_attribute *element; in alloc_group_attrs() local 474 element = kzalloc(sizeof(struct port_table_attribute), in alloc_group_attrs() 476 if (!element) in alloc_group_attrs() 479 if (snprintf(element->name, sizeof(element->name), in alloc_group_attrs() 480 "%d", i) >= sizeof(element->name)) { in alloc_group_attrs() 481 kfree(element); in alloc_group_attrs() 485 element->attr.attr.name = element->name; in alloc_group_attrs() 486 element->attr.attr.mode = S_IRUGO; in alloc_group_attrs() 487 element->attr.show = show; in alloc_group_attrs() 488 element->index = i; in alloc_group_attrs() [all …]
|
D | uverbs_main.c | 501 __u64 element, __u64 event, in ib_uverbs_async_handler() argument 520 entry->desc.async.element = element; in ib_uverbs_async_handler() 536 struct ib_ucq_object *uobj = container_of(event->element.cq->uobject, in ib_uverbs_cq_event_handler() 549 if (!event->element.qp->uobject || !event->element.qp->uobject->live) in ib_uverbs_qp_event_handler() 552 uobj = container_of(event->element.qp->uobject, in ib_uverbs_qp_event_handler() 564 uobj = container_of(event->element.srq->uobject, in ib_uverbs_srq_event_handler() 578 ib_uverbs_async_handler(file, event->element.port_num, event->event, in ib_uverbs_event_handler() 1169 event.element.port_num = 0; in ib_uverbs_free_hw_resources()
|
D | verbs.c | 540 list_for_each_entry(event->element.qp, &qp->open_list, open_list) in __ib_shared_qp_event_handler() 541 if (event->element.qp->event_handler) in __ib_shared_qp_event_handler() 542 event->element.qp->event_handler(event, event->element.qp->qp_context); in __ib_shared_qp_event_handler()
|
D | multicast.c | 784 if (!rdma_cap_ib_mcast(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 | 171 event.element.port_num = port; in write_gid() 1005 work->port_num = event->element.port_num; in ib_cache_event()
|
D | sa_query.c | 911 &sa_dev->port[event->element.port_num - sa_dev->start_port]; in ib_sa_event() 922 queue_work(ib_wq, &sa_dev->port[event->element.port_num - in ib_sa_event()
|
/linux-4.4.14/drivers/s390/net/ |
D | qeth_core_main.c | 1255 if (buf->buffer->element[0].sflags & SBAL_SFLAGS0_PCI_REQ) in qeth_clear_output_buffer() 1262 if (buf->buffer->element[i].addr && buf->is_header[i]) in qeth_clear_output_buffer() 1264 buf->buffer->element[i].addr); in qeth_clear_output_buffer() 1266 buf->buffer->element[i].length = 0; in qeth_clear_output_buffer() 1267 buf->buffer->element[i].addr = NULL; in qeth_clear_output_buffer() 1268 buf->buffer->element[i].eflags = 0; in qeth_clear_output_buffer() 1269 buf->buffer->element[i].sflags = 0; in qeth_clear_output_buffer() 1271 buf->buffer->element[15].eflags = 0; in qeth_clear_output_buffer() 1272 buf->buffer->element[15].sflags = 0; in qeth_clear_output_buffer() 2802 buf->buffer->element[i].length = PAGE_SIZE; in qeth_init_input_buffer() [all …]
|
D | qeth_l2_main.c | 562 .buffer->element[0]; in qeth_l2_poll() 590 .buffer->element[0]; in qeth_l2_poll()
|
D | qeth_l3_main.c | 1941 .buffer->element[0]; in qeth_l3_poll() 1969 .buffer->element[0]; in qeth_l3_poll()
|
/linux-4.4.14/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'
|
/linux-4.4.14/drivers/scsi/megaraid/ |
D | megaraid_sas_fp.c | 363 u32 element; in getSpanInfo() local 382 for (element = 0; element < MAX_QUAD_DEPTH; element++) { in getSpanInfo() 383 span_set = &(ldSpanInfo[ld].span_set[element]); in getSpanInfo() 388 "width=%x, diff=%x\n", element, in getSpanInfo() 411 element + 1) { in getSpanInfo() 414 quad[element]; in getSpanInfo() 417 element, le32_to_cpu(quad->diff)); in getSpanInfo() 1163 u32 element, span_row_width; in mr_update_span_set() local 1177 for (element = 0; element < MAX_QUAD_DEPTH; element++) { in mr_update_span_set() 1181 element + 1) in mr_update_span_set() [all …]
|
/linux-4.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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
|
/linux-4.4.14/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.4.14/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.4.14/drivers/infiniband/hw/usnic/ |
D | usnic_ib_main.c | 163 ib_event.element.port_num = 1; in usnic_ib_handle_usdev_event() 175 ib_event.element.port_num = 1; in usnic_ib_handle_usdev_event() 184 ib_event.element.port_num = 1; in usnic_ib_handle_usdev_event() 206 ib_event.element.port_num = 1; in usnic_ib_handle_usdev_event() 272 ib_event.element.port_num = 1; in usnic_ib_handle_inet_event() 282 ib_event.element.port_num = 1; in usnic_ib_handle_inet_event()
|
D | usnic_ib_qp_grp.c | 493 ib_event.element.qp = &qp_grp->ibqp; in usnic_ib_qp_grp_modify()
|
/linux-4.4.14/drivers/scsi/mpt3sas/ |
D | mpt3sas_scsih.c | 3582 Mpi2EventIrConfigElement_t *element; in _scsih_check_ir_config_unhide_events() local 3594 element = (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0]; in _scsih_check_ir_config_unhide_events() 3595 for (i = 0; i < event_data->NumElements; i++, element++) { in _scsih_check_ir_config_unhide_events() 3599 if (element->ReasonCode == in _scsih_check_ir_config_unhide_events() 3601 element->ReasonCode == in _scsih_check_ir_config_unhide_events() 3603 volume_handle = le16_to_cpu(element->VolDevHandle); in _scsih_check_ir_config_unhide_events() 3610 element = (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0]; in _scsih_check_ir_config_unhide_events() 3611 for (i = 0; i < event_data->NumElements; i++, element++) { in _scsih_check_ir_config_unhide_events() 3615 if (element->ReasonCode == MPI2_EVENT_IR_CHANGE_RC_UNHIDE) { in _scsih_check_ir_config_unhide_events() 3616 volume_handle = le16_to_cpu(element->VolDevHandle); in _scsih_check_ir_config_unhide_events() [all …]
|
/linux-4.4.14/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.4.14/sound/usb/6fire/ |
D | control.h | 41 struct snd_kcontrol *element[CONTROL_MAX_ELEMENTS]; member
|
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/ |
D | rockchip,pinctrl.txt | 35 - reg: first element is the general register space of the iomux controller 37 second element is the separate pull register space of the rk3188. 56 - reg: second element: separate pull register for rk3188 bank0, use
|
/linux-4.4.14/drivers/gpio/ |
D | gpiolib-acpi.c | 844 const union acpi_object *element = obj->package.elements; in acpi_gpio_package_count() local 845 const union acpi_object *end = element + obj->package.count; in acpi_gpio_package_count() 848 while (element < end) { in acpi_gpio_package_count() 849 if (element->type == ACPI_TYPE_LOCAL_REFERENCE) in acpi_gpio_package_count() 852 element++; in acpi_gpio_package_count()
|
/linux-4.4.14/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.4.14/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.4.14/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.4.14/drivers/staging/rdma/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.4.14/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.4.14/Documentation/devicetree/bindings/power/ |
D | rx51-battery.txt | 9 for each element in io-channel-names.
|
/linux-4.4.14/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.4.14/Documentation/devicetree/bindings/usb/ |
D | dwc3.txt | 12 - usb-phy : array of phandle for the PHY device. The first element 14 the second element is expected to be a handle to the USB3/SS PHY
|
/linux-4.4.14/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.4.14/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.4.14/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.4.14/net/dns_resolver/ |
D | Kconfig | 13 being resolving a UNC hostname element to an IP address for CIFS or
|
/linux-4.4.14/drivers/infiniband/ulp/ipoib/ |
D | ipoib_verbs.c | 292 if (record->element.port_num != priv->port) in ipoib_event() 296 record->device->name, record->element.port_num); in ipoib_event()
|
/linux-4.4.14/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.4.14/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()
|
/linux-4.4.14/Documentation/powerpc/ |
D | dscr.txt | 72 The thread struct element 'dscr_inherit' represents whether the thread 74 following methods. This element signifies whether the thread wants to
|
D | cxl.txt | 220 Get the current context id, also known as the process element.
|
/linux-4.4.14/drivers/staging/rdma/hfi1/ |
D | intr.c | 102 event.element.port_num = ppd->port; in signal_ib_event()
|
D | ruc.c | 232 ev.element.srq = qp->ibqp.srq; in hfi1_get_rwqe() 259 ev.element.qp = &qp->ibqp; in hfi1_migrate_qp() 651 ev.element.qp = &sqp->ibqp; in ruc_loopback()
|
D | cq.c | 93 ev.element.cq = &cq->ibcq; in hfi1_cq_enter()
|
D | qp.c | 869 ev.element.qp = &qp->ibqp; in hfi1_modify_qp() 875 ev.element.qp = &qp->ibqp; in hfi1_modify_qp() 1683 ev.element.qp = &qp->ibqp; in qp_comm_est()
|
D | mad.c | 1089 event.element.port_num = port; in __subn_set_opa_portinfo() 1391 event.element.port_num = port; in set_pkeys()
|
/linux-4.4.14/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.4.14/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.4.14/Documentation/devicetree/bindings/leds/ |
D | leds-ktd2692.txt | 22 A discrete LED element connected to the device must be represented by a child
|
D | leds-aat1290.txt | 22 A discrete LED element connected to the device must be represented by a child
|
/linux-4.4.14/Documentation/devicetree/bindings/spi/ |
D | spi-mt65xx.txt | 35 controller used. This is a array, the element value should be 0~3,
|
/linux-4.4.14/Documentation/devicetree/bindings/clock/st/ |
D | st,flexgen.txt | 5 - a clock cross bar (represented by a mux element)
|
/linux-4.4.14/drivers/infiniband/hw/ocrdma/ |
D | ocrdma_main.c | 387 port_event.element.port_num = 1; in ocrdma_dispatch_port_active() 398 err_event.element.port_num = 1; in ocrdma_dispatch_port_error()
|
D | ocrdma_hw.c | 718 ib_evt.element.cq = &cq->ibcq; in ocrdma_dispatch_ibevent() 724 ib_evt.element.cq = &cq->ibcq; in ocrdma_dispatch_ibevent() 730 ib_evt.element.qp = &qp->ibqp; in ocrdma_dispatch_ibevent() 735 ib_evt.element.qp = &qp->ibqp; in ocrdma_dispatch_ibevent() 739 ib_evt.element.qp = &qp->ibqp; in ocrdma_dispatch_ibevent() 743 ib_evt.element.qp = &qp->ibqp; in ocrdma_dispatch_ibevent() 747 ib_evt.element.port_num = 1; in ocrdma_dispatch_ibevent() 753 ib_evt.element.srq = &qp->srq->ibsrq; in ocrdma_dispatch_ibevent() 759 ib_evt.element.srq = &qp->srq->ibsrq; in ocrdma_dispatch_ibevent() 765 ib_evt.element.qp = &qp->ibqp; in ocrdma_dispatch_ibevent()
|
/linux-4.4.14/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.4.14/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.4.14/drivers/staging/rdma/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.4.14/Documentation/devicetree/bindings/sound/ |
D | davinci-mcasp-audio.txt | 22 - dmas: two element list of DMA controller phandles and DMA request line
|
/linux-4.4.14/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.4.14/drivers/infiniband/hw/qib/ |
D | qib_intr.c | 78 event.element.port_num = ppd->port; in signal_ib_event()
|
D | qib_ruc.c | 214 ev.element.srq = qp->ibqp.srq; in qib_get_rwqe() 240 ev.element.qp = &qp->ibqp; in qib_migrate_qp() 629 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 | 1834 ev.element.qp = &qp->ibqp; in qib_rc_error() 1957 ev.element.qp = &qp->ibqp; in qib_rc_rcv()
|
D | qib_mad.c | 686 event.element.port_num = port; in subn_set_portinfo() 1032 event.element.port_num = port; in set_pkeys()
|
/linux-4.4.14/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.4.14/arch/x86/include/uapi/asm/ |
D | sigcontext.h | 98 __u32 element[4]; member
|
/linux-4.4.14/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.4.14/drivers/net/ethernet/intel/i40e/ |
D | i40e_main.c | 1329 struct i40e_aqc_remove_macvlan_element_data element; in i40e_rm_default_mac_filter() local 1337 memset(&element, 0, sizeof(element)); in i40e_rm_default_mac_filter() 1338 ether_addr_copy(element.mac_addr, macaddr); in i40e_rm_default_mac_filter() 1339 element.vlan_tag = 0; in i40e_rm_default_mac_filter() 1340 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH | in i40e_rm_default_mac_filter() 1342 ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL); in i40e_rm_default_mac_filter() 1521 struct i40e_aqc_remove_macvlan_element_data element; in i40e_set_mac() local 1523 memset(&element, 0, sizeof(element)); in i40e_set_mac() 1524 ether_addr_copy(element.mac_addr, netdev->dev_addr); in i40e_set_mac() 1525 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH; in i40e_set_mac() [all …]
|
D | i40e_adminq_cmd.h | 610 struct i40e_aqc_switch_config_element_resp element[1]; member
|
/linux-4.4.14/Documentation/usb/ |
D | functionfs.txt | 57 parameter's value is just a one-element list, then the behaviour
|
/linux-4.4.14/Documentation/devicetree/bindings/mips/cavium/ |
D | bootbus.txt | 20 length element for any triplet is zero, the chip select is disabled,
|
/linux-4.4.14/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.4.14/drivers/staging/rdma/ipath/ |
D | ipath_ruc.c | 236 ev.element.srq = qp->ibqp.srq; in ipath_get_rwqe() 501 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 | 169 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 | 250 event.element.port_num = 1; in signal_ib_event()
|
D | ipath_qp.c | 605 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.4.14/drivers/net/wireless/brcm80211/brcmfmac/ |
D | fwil_types.h | 525 __le32 element[1]; /* variable length uint32 list */ member
|
/linux-4.4.14/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.4.14/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
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-class-uwb_rc | 52 The application-specific information element (ASIE)
|
D | sysfs-class-cxl | 74 work_element_descriptor: Treat the work element
|
D | sysfs-bus-iio | 709 The raw or input element of the name indicates whether the 840 The raw or input element of the name indicates whether the 1088 Scan element control for triggered data capture. 1109 Description of the scan element data storage within the buffer 1166 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.4.14/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.4.14/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.4.14/Documentation/misc-devices/ |
D | lis3lv02d | 45 sensing element is internally moved little bit. Selftest measures difference
|
/linux-4.4.14/Documentation/devicetree/bindings/c6x/ |
D | dscr.txt | 56 MAC addresses are contained in two registers. Each element of a MAC address
|
/linux-4.4.14/Documentation/video4linux/ |
D | pxa_camera.txt | 105 element to the video buffer scatter gather
|
/linux-4.4.14/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.4.14/Documentation/vm/ |
D | idle_page_tracking.txt | 18 mapped to bit #i%64 of array element #i/64, byte order is native. When a bit is
|
D | cleancache.txt | 149 functions, or to a compare-struct-element-to-negative if a
|
/linux-4.4.14/Documentation/dmaengine/ |
D | pxa_dma.txt | 52 element to the video buffer scatter gather
|
/linux-4.4.14/drivers/infiniband/hw/mlx5/ |
D | srq.c | 58 event.element.srq = ibsrq; in mlx5_ib_srq_event()
|
D | cq.c | 63 event.element.cq = ibcq; in mlx5_ib_cq_event()
|
D | main.c | 995 ibev.element.port_num = port; in mlx5_ib_event()
|
/linux-4.4.14/net/sunrpc/xprtrdma/ |
D | svc_rdma_transport.c | 246 event->element.qp); in qp_event_handler() 258 event->element.qp); in qp_event_handler()
|
/linux-4.4.14/Documentation/arm/ |
D | vlocks.txt | 152 we do not care which element of currently_voting appears in which
|
/linux-4.4.14/drivers/crypto/caam/ |
D | regs.h | 643 struct rtic_element element[2]; member
|
/linux-4.4.14/include/uapi/rdma/ |
D | ib_user_verbs.h | 112 __u64 element; member
|
/linux-4.4.14/drivers/infiniband/ulp/srpt/ |
D | ib_srpt.c | 187 if (event->element.port_num <= sdev->device->phys_port_cnt) { in srpt_event_handler() 188 sport = &sdev->port[event->element.port_num - 1]; in srpt_event_handler() 200 if (event->element.port_num <= sdev->device->phys_port_cnt) { in srpt_event_handler() 201 sport = &sdev->port[event->element.port_num - 1]; in srpt_event_handler()
|
/linux-4.4.14/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 | 407 the easy handling of the length information the canfd_frame.len element 454 bit is set in can_id element of the can_filter structure. In 740 When sending a message to the broadcast manager the 'flags' element may 783 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.4.14/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.4.14/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.4.14/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.4.14/arch/arm/boot/dts/ |
D | am335x-evm.dts | 745 xbar-event-map element */
|
D | am437x-gp-evm.dts | 736 xbar-event-map element */
|
/linux-4.4.14/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.4.14/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.4.14/block/ |
D | blk-core.c | 610 static void free_request_struct(void *element, void *unused) in free_request_struct() argument 612 kmem_cache_free(request_cachep, element); in free_request_struct()
|
/linux-4.4.14/Documentation/isdn/ |
D | INTERFACE.CAPI | 287 Macros to extract/set element values from/in a CAPI message header
|
/linux-4.4.14/drivers/infiniband/ulp/iser/ |
D | iser_verbs.c | 69 event->device->name, event->element.port_num); in iser_event_handler()
|
/linux-4.4.14/drivers/net/ethernet/intel/i40evf/ |
D | i40e_adminq_cmd.h | 607 struct i40e_aqc_switch_config_element_resp element[1]; member
|
/linux-4.4.14/scripts/dtc/ |
D | dtc-lexer.lex.c_shipped | 1842 * The next element becomes the new top. 2132 /* Pop the buffer stack, destroying each element. */
|
/linux-4.4.14/scripts/genksyms/ |
D | lex.lex.c_shipped | 1550 * The next element becomes the new top. 1840 /* Pop the buffer stack, destroying each element. */
|
/linux-4.4.14/scripts/kconfig/ |
D | zconf.lex.c_shipped | 1998 * The next element becomes the new top. 2288 /* Pop the buffer stack, destroying each element. */
|
/linux-4.4.14/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
|
/linux-4.4.14/include/rdma/ |
D | ib_verbs.h | 488 } element; member
|
/linux-4.4.14/Documentation/virtual/kvm/ |
D | mmu.txt | 198 element of this array can be calculated from the gfn field when used, in
|
/linux-4.4.14/drivers/infiniband/hw/nes/ |
D | nes_verbs.c | 3942 event.element.port_num = nesvnic->logical_port + 1; in nes_handle_delayed_event() 3957 event.element.port_num = nesvnic->logical_port + 1; in nes_port_ibevent()
|
/linux-4.4.14/Documentation/security/ |
D | keys.txt | 1097 wrap the RCU calls to this element: 1206 the first element. It will then clear prep->payload.data[] so that the
|