Home
last modified time | relevance | path

Searched refs:node (Results 2301 - 2325 of 6932) sorted by relevance

1...<<919293949596979899100>>...278

/kernel/linux/linux-6.6/drivers/gpu/drm/
H A Ddrm_buddy.c44 struct drm_buddy_block *node; in list_insert_sorted() local
53 list_for_each_entry(node, head, link) in list_insert_sorted()
54 if (drm_buddy_block_offset(block) < drm_buddy_block_offset(node)) in list_insert_sorted()
57 __list_add(&block->link, node->link.prev, &node->link); in list_insert_sorted()
420 struct drm_buddy_block *max_block = NULL, *node; in get_maxblock() local
425 node = list_last_entry(&mm->free_list[i], in get_maxblock()
429 max_block = node; in get_maxblock()
433 if (drm_buddy_block_offset(node) > in get_maxblock()
435 max_block = node; in get_maxblock()
[all...]
/kernel/linux/linux-6.6/drivers/irqchip/
H A Dirq-ti-sci-inta.c615 struct device_node *node = dev_of_node(dev); in ti_sci_inta_get_unmapped_sources() local
619 count = of_count_phandle_with_args(node, "ti,unmapped-event-sources", NULL); in ti_sci_inta_get_unmapped_sources()
630 of_for_each_phandle(&it, err, node, "ti,unmapped-event-sources", NULL, 0) { in ti_sci_inta_get_unmapped_sources()
633 ret = of_property_read_u32(it.node, "ti,sci-dev-id", &dev_id); in ti_sci_inta_get_unmapped_sources()
635 dev_err(dev, "ti,sci-dev-id read failure for %pOFf\n", it.node); in ti_sci_inta_get_unmapped_sources()
636 of_node_put(it.node); in ti_sci_inta_get_unmapped_sources()
650 struct device_node *parent_node, *node; in ti_sci_inta_irq_domain_probe() local
655 node = dev_of_node(dev); in ti_sci_inta_irq_domain_probe()
656 parent_node = of_irq_find_parent(node); in ti_sci_inta_irq_domain_probe()
658 dev_err(dev, "Failed to get IRQ parent node\ in ti_sci_inta_irq_domain_probe()
[all...]
H A Dirq-stm32-exti.c753 struct device_node *node) in stm32_exti_host_init()
768 host_data->base = of_iomap(node, 0); in stm32_exti_host_init()
770 pr_err("%pOF: Unable to map registers\n", node); in stm32_exti_host_init()
789 struct device_node *node) in stm32_exti_chip_init()
810 pr_info("%pOF: bank%d\n", node, bank_idx); in stm32_exti_chip_init()
816 struct device_node *node) in stm32_exti_init()
824 host_data = stm32_exti_host_init(drv_data, node); in stm32_exti_init()
828 domain = irq_domain_add_linear(node, drv_data->bank_nr * IRQS_PER_BANK, in stm32_exti_init()
832 node); in stm32_exti_init()
841 node); in stm32_exti_init()
752 stm32_exti_host_init(const struct stm32_exti_drv_data *dd, struct device_node *node) stm32_exti_host_init() argument
787 stm32_exti_chip_init(struct stm32_exti_host_data *h_data, u32 bank_idx, struct device_node *node) stm32_exti_chip_init() argument
815 stm32_exti_init(const struct stm32_exti_drv_data *drv_data, struct device_node *node) stm32_exti_init() argument
[all...]
/kernel/linux/linux-6.6/net/sunrpc/xprtrdma/
H A Dsvc_rdma_sendto.c126 int node = ibdev_to_node(rdma->sc_cm_id->device); in svc_rdma_send_ctxt_alloc() local
133 GFP_KERNEL, node); in svc_rdma_send_ctxt_alloc()
136 buffer = kmalloc_node(rdma->sc_max_req_size, GFP_KERNEL, node); in svc_rdma_send_ctxt_alloc()
176 struct llist_node *node; in svc_rdma_send_ctxts_destroy() local
178 while ((node = llist_del_first(&rdma->sc_send_ctxts)) != NULL) { in svc_rdma_send_ctxts_destroy()
179 ctxt = llist_entry(node, struct svc_rdma_send_ctxt, sc_node); in svc_rdma_send_ctxts_destroy()
199 struct llist_node *node; in svc_rdma_send_ctxt_get() local
202 node = llist_del_first(&rdma->sc_send_ctxts); in svc_rdma_send_ctxt_get()
203 if (!node) in svc_rdma_send_ctxt_get()
205 ctxt = llist_entry(node, struc in svc_rdma_send_ctxt_get()
[all...]
/kernel/liteos_a/kernel/extended/container/
H A Dlos_pid_container.c53 LOS_ListTailInsert(&pidContainer->pidFreeList, &processVid->node); in FreeVpid()
76 ProcessVid *vpid = LOS_DL_LIST_ENTRY(LOS_DL_LIST_FIRST(&pidContainer->pidFreeList), ProcessVid, node); in OsGetFreeVpid()
77 LOS_ListDelete(&vpid->node); in OsGetFreeVpid()
100 LOS_ListDelete(&processVid->node); in OsAllocSpecifiedVpidUnsafe()
106 LOS_ListDelete(&vppidItem->node); in OsAllocSpecifiedVpidUnsafe()
165 ProcessVid *vtid = LOS_DL_LIST_ENTRY(LOS_DL_LIST_FIRST(&pidContainer->tidFreeList), ProcessVid, node); in OsGetFreeVtid()
166 LOS_ListDelete(&vtid->node); in OsGetFreeVtid()
181 LOS_ListTailInsert(&pidContainer->tidFreeList, &item->node); in OsFreeVtid()
272 LOS_ListTailInsert(&newPidContainer->pidFreeList, &vpid->node); in CreateNewPidContainer()
281 LOS_ListTailInsert(&newPidContainer->tidFreeList, &vtid->node); in CreateNewPidContainer()
[all...]
/kernel/liteos_m/components/power/
H A Dlos_pm.c400 UINT32 LOS_PmRegister(LOS_PmNodeType type, VOID *node) in LOS_PmRegister() argument
404 if (node == NULL) { in LOS_PmRegister()
410 return OsPmDeviceRegister(pm, (LosPmDevice *)node); in LOS_PmRegister()
412 return OsPmTickTimerRegister(pm, (LosPmTickTimer *)node); in LOS_PmRegister()
414 return OsPmSysctrlRegister(pm, (LosPmSysctrl *)node); in LOS_PmRegister()
467 UINT32 LOS_PmUnregister(LOS_PmNodeType type, VOID *node) in LOS_PmUnregister() argument
471 if (node == NULL) { in LOS_PmUnregister()
477 return OsPmDeviceUnregister(pm, (LosPmDevice *)node); in LOS_PmUnregister()
479 return OsPmTickTimerUnregister(pm, (LosPmTickTimer *)node); in LOS_PmUnregister()
481 return OsPmSysctrlUnregister(pm, (LosPmSysctrl *)node); in LOS_PmUnregister()
[all...]
/kernel/linux/linux-5.10/drivers/irqchip/
H A Dirq-stm32-exti.c688 struct device_node *node) in stm32_exti_host_init()
703 host_data->base = of_iomap(node, 0); in stm32_exti_host_init()
705 pr_err("%pOF: Unable to map registers\n", node); in stm32_exti_host_init()
724 struct device_node *node) in stm32_exti_chip_init()
744 pr_info("%pOF: bank%d\n", node, bank_idx); in stm32_exti_chip_init()
750 struct device_node *node) in stm32_exti_init()
758 host_data = stm32_exti_host_init(drv_data, node); in stm32_exti_init()
762 domain = irq_domain_add_linear(node, drv_data->bank_nr * IRQS_PER_BANK, in stm32_exti_init()
766 node); in stm32_exti_init()
775 node); in stm32_exti_init()
687 stm32_exti_host_init(const struct stm32_exti_drv_data *dd, struct device_node *node) stm32_exti_host_init() argument
722 stm32_exti_chip_init(struct stm32_exti_host_data *h_data, u32 bank_idx, struct device_node *node) stm32_exti_chip_init() argument
749 stm32_exti_init(const struct stm32_exti_drv_data *drv_data, struct device_node *node) stm32_exti_init() argument
[all...]
/kernel/linux/linux-5.10/fs/hmdfs/
H A Dfile_merge.c105 static void recursive_delete(struct rb_node *node) in recursive_delete() argument
109 if (!node) in recursive_delete()
112 recursive_delete(node->rb_left); in recursive_delete()
113 recursive_delete(node->rb_right); in recursive_delete()
115 entry = container_of(node, struct hmdfs_cache_entry, rb_node); in recursive_delete()
131 struct rb_node **node = &(root->rb_node); in delete_filename() local
135 while (*node) { in delete_filename()
136 entry = container_of(*node, struct hmdfs_cache_entry, rb_node); in delete_filename()
149 node = &((*node) in delete_filename()
[all...]
/kernel/linux/linux-6.6/fs/hmdfs/
H A Dfile_merge.c105 static void recursive_delete(struct rb_node *node) in recursive_delete() argument
109 if (!node) in recursive_delete()
112 recursive_delete(node->rb_left); in recursive_delete()
113 recursive_delete(node->rb_right); in recursive_delete()
115 entry = container_of(node, struct hmdfs_cache_entry, rb_node); in recursive_delete()
131 struct rb_node **node = &(root->rb_node); in delete_filename() local
135 while (*node) { in delete_filename()
136 entry = container_of(*node, struct hmdfs_cache_entry, rb_node); in delete_filename()
149 node = &((*node) in delete_filename()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/amdkfd/
H A Dkfd_priv.h832 * checkpointed node to refer to this device.
1020 int kfd_process_gpuid_from_node(struct kfd_process *p, struct kfd_node *node,
1095 int kfd_gtt_sa_allocate(struct kfd_node *node, unsigned int size,
1098 int kfd_gtt_sa_free(struct kfd_node *node, struct kfd_mem_obj *mem_obj);
1120 static inline bool kfd_irq_is_from_node(struct kfd_node *node, uint32_t node_id, in kfd_irq_is_from_node() argument
1123 return (node->interrupt_bitmap & (1 << node_id)) != 0 && in kfd_irq_is_from_node()
1124 (node->compute_vmid_bitmap & (1 << vmid)) != 0; in kfd_irq_is_from_node()
1485 static inline int kfd_devcgroup_check_permission(struct kfd_node *node) in kfd_devcgroup_check_permission() argument
1490 if (node->xcp) in kfd_devcgroup_check_permission()
1491 ddev = node in kfd_devcgroup_check_permission()
1503 kfd_is_first_node(struct kfd_node *node) kfd_is_first_node() argument
[all...]
/kernel/linux/linux-6.6/kernel/
H A Daudit_tree.c84 * node.index allows to get from node.list to containing chunk.
619 struct audit_node *node = list_entry(p, struct audit_node, list); in trim_marked() local
621 if (node->index & (1U<<31)) { in trim_marked()
687 struct audit_node *node; in audit_trim_trees() local
705 list_for_each_entry(node, &tree->chunks, list) { in audit_trim_trees()
706 struct audit_chunk *chunk = find_chunk(node); in audit_trim_trees()
708 node->index |= 1U<<31; in audit_trim_trees()
712 node->index &= ~(1U<<31); in audit_trim_trees()
843 struct audit_node *node; in audit_add_tree_rule() local
942 struct audit_node *node; audit_tag_tree() local
[all...]
/kernel/linux/linux-6.6/drivers/media/platform/amphion/
H A Dvpu_core.c544 struct device_node *node; in vpu_core_parse_dt() local
553 node = of_parse_phandle(np, "memory-region", 0); in vpu_core_parse_dt()
554 if (!node) { in vpu_core_parse_dt()
558 if (of_address_to_resource(node, 0, &res)) { in vpu_core_parse_dt()
560 of_node_put(node); in vpu_core_parse_dt()
566 of_node_put(node); in vpu_core_parse_dt()
568 node = of_parse_phandle(np, "memory-region", 1); in vpu_core_parse_dt()
569 if (!node) { in vpu_core_parse_dt()
573 if (of_address_to_resource(node, 0, &res)) { in vpu_core_parse_dt()
575 of_node_put(node); in vpu_core_parse_dt()
[all...]
/kernel/linux/linux-6.6/tools/perf/ui/browsers/
H A Dannotate.c44 struct annotation_line *al = list_entry(entry, struct annotation_line, node); in disasm_line__filter()
95 struct annotation_line *al = list_entry(entry, struct annotation_line, node); in annotate_browser__write()
125 struct disasm_line *pos = list_prev_entry(cursor, al.node); in is_fused()
130 pos = list_prev_entry(pos, al.node); in is_fused()
281 pos = list_entry(pos->node.prev, struct annotation_line, node); in annotate_browser__set_top()
321 list_for_each_entry(pos, &notes->src->source, al.node) { in annotate_browser__calc_percent()
358 list_for_each_entry_continue(it, browser->b.entries, node) { in annotate_browser__find_next_asm_line()
365 list_for_each_entry_continue_reverse(it, browser->b.entries, node) { in annotate_browser__find_next_asm_line()
381 al = list_entry(browser->b.top, struct annotation_line, node); in annotate_browser__toggle_source()
[all...]
/kernel/linux/linux-5.10/drivers/ata/
H A Dpata_macio.c231 struct device_node *node; member
482 const char* cable = of_get_property(priv->node, "cable-type", in pata_macio_cable_detect()
505 if (of_device_is_compatible(priv->node, "K2-UATA") || in pata_macio_cable_detect()
506 of_device_is_compatible(priv->node, "shasta-ata")) in pata_macio_cable_detect()
755 ppc_md.feature_call(PMAC_FTR_IDE_ENABLE, priv->node, 0, 1); in pata_macio_reset_hw()
761 priv->node, priv->aapl_bus_id, 1); in pata_macio_reset_hw()
763 priv->node, priv->aapl_bus_id, 1); in pata_macio_reset_hw()
768 priv->node, priv->aapl_bus_id, 0); in pata_macio_reset_hw()
892 ppc_md.feature_call(PMAC_FTR_IDE_ENABLE, priv->node, in pata_macio_do_suspend()
950 if (of_device_is_compatible(priv->node, "shast in pata_macio_invariants()
[all...]
/kernel/linux/linux-5.10/crypto/
H A Daf_alg.c43 struct alg_type_list *node; in alg_get_type() local
46 list_for_each_entry(node, &alg_types, list) { in alg_get_type()
47 if (strcmp(node->type->name, name)) in alg_get_type()
50 if (try_module_get(node->type->owner)) in alg_get_type()
51 type = node->type; in alg_get_type()
61 struct alg_type_list *node; in af_alg_register_type() local
65 list_for_each_entry(node, &alg_types, list) { in af_alg_register_type()
66 if (!strcmp(node->type->name, type->name)) in af_alg_register_type()
70 node = kmalloc(sizeof(*node), GFP_KERNE in af_alg_register_type()
91 struct alg_type_list *node; af_alg_unregister_type() local
[all...]
/kernel/linux/linux-5.10/drivers/dma/
H A Dsirf-dma.c83 struct list_head node; member
249 node); in sirfsoc_dma_execute()
251 list_move_tail(&sdesc->node, &schan->active); in sirfsoc_dma_execute()
285 struct sirfsoc_dma_desc, node); in sirfsoc_dma_irq()
307 struct sirfsoc_dma_desc, node); in sirfsoc_dma_irq()
359 list_for_each_entry(sdesc, &list, node) { in sirfsoc_dma_process_completed()
380 struct sirfsoc_dma_desc, node); in sirfsoc_dma_process_completed()
416 list_move_tail(&sdesc->node, &schan->queued); in sirfsoc_dma_tx_submit()
580 list_add_tail(&sdesc->node, &descs); in sirfsoc_dma_alloc_chan_resources()
618 list_for_each_entry_safe(sdesc, tmp, &descs, node) in sirfsoc_dma_free_chan_resources()
[all...]
/kernel/linux/linux-6.6/drivers/ata/
H A Dpata_macio.c232 struct device_node *node; member
483 const char* cable = of_get_property(priv->node, "cable-type", in pata_macio_cable_detect()
506 if (of_device_is_compatible(priv->node, "K2-UATA") || in pata_macio_cable_detect()
507 of_device_is_compatible(priv->node, "shasta-ata")) in pata_macio_cable_detect()
755 ppc_md.feature_call(PMAC_FTR_IDE_ENABLE, priv->node, 0, 1); in pata_macio_reset_hw()
761 priv->node, priv->aapl_bus_id, 1); in pata_macio_reset_hw()
763 priv->node, priv->aapl_bus_id, 1); in pata_macio_reset_hw()
768 priv->node, priv->aapl_bus_id, 0); in pata_macio_reset_hw()
888 ppc_md.feature_call(PMAC_FTR_IDE_ENABLE, priv->node, in pata_macio_do_suspend()
949 if (of_device_is_compatible(priv->node, "shast in pata_macio_invariants()
[all...]
/kernel/linux/linux-6.6/drivers/net/wireless/ath/ath11k/
H A Dahb.c916 struct device_node *node; in ath11k_ahb_setup_msa_resources() local
920 node = of_parse_phandle(dev->of_node, "memory-region", 0); in ath11k_ahb_setup_msa_resources()
921 if (!node) in ath11k_ahb_setup_msa_resources()
924 ret = of_address_to_resource(node, 0, &r); in ath11k_ahb_setup_msa_resources()
925 of_node_put(node); in ath11k_ahb_setup_msa_resources()
934 node = of_parse_phandle(dev->of_node, "memory-region", 1); in ath11k_ahb_setup_msa_resources()
935 if (!node) in ath11k_ahb_setup_msa_resources()
938 ret = of_address_to_resource(node, 0, &r); in ath11k_ahb_setup_msa_resources()
939 of_node_put(node); in ath11k_ahb_setup_msa_resources()
958 struct device_node *node; in ath11k_ahb_fw_resources_init() local
[all...]
/kernel/linux/linux-6.6/crypto/
H A Daf_alg.c46 struct alg_type_list *node; in alg_get_type() local
49 list_for_each_entry(node, &alg_types, list) { in alg_get_type()
50 if (strcmp(node->type->name, name)) in alg_get_type()
53 if (try_module_get(node->type->owner)) in alg_get_type()
54 type = node->type; in alg_get_type()
64 struct alg_type_list *node; in af_alg_register_type() local
68 list_for_each_entry(node, &alg_types, list) { in af_alg_register_type()
69 if (!strcmp(node->type->name, type->name)) in af_alg_register_type()
73 node = kmalloc(sizeof(*node), GFP_KERNE in af_alg_register_type()
94 struct alg_type_list *node; af_alg_unregister_type() local
[all...]
/kernel/linux/linux-6.6/drivers/hwmon/
H A Dnct7802.c1059 struct device_node *node, u8 *mode_mask, in nct7802_get_channel_config()
1066 if (!node->name || of_node_cmp(node->name, "channel")) in nct7802_get_channel_config()
1069 if (of_property_read_u32(node, "reg", &reg)) { in nct7802_get_channel_config()
1071 node->full_name); in nct7802_get_channel_config()
1077 node->full_name); in nct7802_get_channel_config()
1082 if (!of_device_is_available(node)) in nct7802_get_channel_config()
1092 if (!of_device_is_available(node)) { in nct7802_get_channel_config()
1098 if (of_property_read_string(node, "sensor-type", &type_str)) { in nct7802_get_channel_config()
1099 dev_err(dev, "No type for '%s'\n", node in nct7802_get_channel_config()
1058 nct7802_get_channel_config(struct device *dev, struct device_node *node, u8 *mode_mask, u8 *mode_val) nct7802_get_channel_config() argument
1148 struct device_node *node; nct7802_configure_channels() local
[all...]
/kernel/linux/linux-6.6/mm/
H A Dslab_common.c1006 static void *__kmalloc_large_node(size_t size, gfp_t flags, int node);
1008 void *__do_kmalloc_node(size_t size, gfp_t flags, int node, unsigned long caller) in __do_kmalloc_node() argument
1014 ret = __kmalloc_large_node(size, flags, node); in __do_kmalloc_node()
1016 PAGE_SIZE << get_order(size), flags, node); in __do_kmalloc_node()
1025 ret = __kmem_cache_alloc_node(s, flags, node, size, caller); in __do_kmalloc_node()
1027 trace_kmalloc(caller, ret, size, s->size, flags, node); in __do_kmalloc_node()
1031 void *__kmalloc_node(size_t size, gfp_t flags, int node) in __kmalloc_node() argument
1033 return __do_kmalloc_node(size, flags, node, _RET_IP_); in __kmalloc_node()
1044 int node, unsigned long caller) in __kmalloc_node_track_caller()
1046 return __do_kmalloc_node(size, flags, node, calle in __kmalloc_node_track_caller()
1043 __kmalloc_node_track_caller(size_t size, gfp_t flags, int node, unsigned long caller) __kmalloc_node_track_caller() argument
1127 kmalloc_node_trace(struct kmem_cache *s, gfp_t gfpflags, int node, size_t size) kmalloc_node_trace() argument
1157 __kmalloc_large_node(size_t size, gfp_t flags, int node) __kmalloc_large_node() argument
1192 kmalloc_large_node(size_t size, gfp_t flags, int node) kmalloc_large_node() argument
[all...]
/kernel/linux/linux-5.10/fs/ubifs/
H A Ddebug.c133 return "padding node"; in dbg_ntype()
135 return "superblock node"; in dbg_ntype()
137 return "master node"; in dbg_ntype()
139 return "reference node"; in dbg_ntype()
141 return "inode node"; in dbg_ntype()
143 return "direntry node"; in dbg_ntype()
145 return "xentry node"; in dbg_ntype()
147 return "data node"; in dbg_ntype()
149 return "truncate node"; in dbg_ntype()
151 return "indexing node"; in dbg_ntype()
294 ubifs_dump_node(const struct ubifs_info *c, const void *node, int node_len) ubifs_dump_node() argument
2001 void *node; check_leaf() local
[all...]
/kernel/linux/linux-6.6/fs/ubifs/
H A Ddebug.c133 return "padding node"; in dbg_ntype()
135 return "superblock node"; in dbg_ntype()
137 return "master node"; in dbg_ntype()
139 return "reference node"; in dbg_ntype()
141 return "inode node"; in dbg_ntype()
143 return "direntry node"; in dbg_ntype()
145 return "xentry node"; in dbg_ntype()
147 return "data node"; in dbg_ntype()
149 return "truncate node"; in dbg_ntype()
151 return "indexing node"; in dbg_ntype()
294 ubifs_dump_node(const struct ubifs_info *c, const void *node, int node_len) ubifs_dump_node() argument
2001 void *node; check_leaf() local
[all...]
/kernel/linux/linux-6.6/drivers/i3c/
H A Dmaster.c1376 list_add_tail(&dev->common.node, &master->bus.devs.i3c); in i3c_master_attach_i3c_dev()
1423 list_del(&dev->common.node); in i3c_master_detach_i3c_dev()
1437 list_add_tail(&dev->common.node, &master->bus.devs.i2c); in i3c_master_attach_i2c_dev()
1446 list_del(&dev->common.node); in i3c_master_detach_i2c_dev()
1636 common.node) { in i3c_master_detach_free_devs()
1648 common.node) { in i3c_master_detach_free_devs()
1701 list_for_each_entry(i2cboardinfo, &master->boardinfo.i2c, node) { in i3c_master_bus_init()
1769 list_for_each_entry(i3cboardinfo, &master->boardinfo.i3c, node) { in i3c_master_bus_init()
1833 list_for_each_entry(i3cboardinfo, &master->boardinfo.i3c, node) { in i3c_master_attach_boardinfo()
2012 struct device_node *node, u3 in of_i3c_master_add_i2c_boardinfo()
2011 of_i3c_master_add_i2c_boardinfo(struct i3c_master_controller *master, struct device_node *node, u32 *reg) of_i3c_master_add_i2c_boardinfo() argument
2046 of_i3c_master_add_i3c_boardinfo(struct i3c_master_controller *master, struct device_node *node, u32 *reg) of_i3c_master_add_i3c_boardinfo() argument
2093 of_i3c_master_add_dev(struct i3c_master_controller *master, struct device_node *node) of_i3c_master_add_dev() argument
2122 struct device_node *node; of_populate_i3c_bus() local
2408 struct list_head node; global() member
[all...]
/kernel/linux/linux-5.10/drivers/acpi/
H A Dpptt.c12 * The PPTT structure is an inverted tree, with each node potentially
60 struct acpi_pptt_processor *node, in acpi_get_pptt_resource()
65 if (resource >= node->number_of_priv_resources) in acpi_get_pptt_resource()
68 ref = ACPI_ADD_PTR(u32, node, sizeof(struct acpi_pptt_processor)); in acpi_get_pptt_resource()
90 * of cache levels for the cache node.
92 * Given a pptt resource, verify that it is a cache node, then walk
125 * continue looking at this node's resource list in acpi_pptt_walk_cache()
127 * cache node. in acpi_pptt_walk_cache()
147 /* walk down from processor node */ in acpi_find_cache_level()
155 * possible for a given node t in acpi_find_cache_level()
59 acpi_get_pptt_resource(struct acpi_table_header *table_hdr, struct acpi_pptt_processor *node, int resource) acpi_get_pptt_resource() argument
204 acpi_pptt_leaf_node(struct acpi_table_header *table_hdr, struct acpi_pptt_processor *node) acpi_pptt_leaf_node() argument
319 acpi_find_cache_node(struct acpi_table_header *table_hdr, u32 acpi_cpu_id, enum cache_type type, unsigned int level, struct acpi_pptt_processor **node) acpi_find_cache_node() argument
[all...]

Completed in 33 milliseconds

1...<<919293949596979899100>>...278