Lines Matching defs:node
60 * acpi_is_root_bridge - determine whether an ACPI CA node is a PCI root bridge
61 * @handle: the ACPI CA node in question.
248 struct list_head node;
272 struct acpi_handle_node *node, *tmp;
281 node = kzalloc(sizeof(struct acpi_handle_node), GFP_KERNEL);
282 if (!node)
285 INIT_LIST_HEAD(&node->node);
286 node->handle = phandle;
287 list_add(&node->node, &device_list);
305 list_for_each_entry(node, &device_list, node) {
306 acpi_handle hnd = node->handle;
332 list_for_each_entry_safe(node, tmp, &device_list, node)
333 kfree(node);
884 int node = acpi_get_node(device->handle);
940 if (node != NUMA_NO_NODE)
941 dev_printk(KERN_DEBUG, &bus->dev, "on NUMA node %d\n", node);