blob: cd26cb971a1c2e324cb33af21e1faee330912788 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2 *
3 * Module Name: nsalloc - Namespace allocation and deletion utilities
4 *
5 ******************************************************************************/
6
7/*
Bob Moore4a90c7e2006-01-13 16:22:00 -05008 * Copyright (C) 2000 - 2006, R. Byron Moore
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi.h>
45#include <acpi/acnamesp.h>
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define _COMPONENT ACPI_NAMESPACE
Len Brown4be44fc2005-08-05 00:44:28 -040048ACPI_MODULE_NAME("nsalloc")
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Robert Moore44f6c012005-04-18 22:49:35 -040050/* Local prototypes */
Len Brown4be44fc2005-08-05 00:44:28 -040051static void acpi_ns_remove_reference(struct acpi_namespace_node *node);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/*******************************************************************************
54 *
55 * FUNCTION: acpi_ns_create_node
56 *
Robert Moore44f6c012005-04-18 22:49:35 -040057 * PARAMETERS: Name - Name of the new node (4 char ACPI name)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 *
Robert Moore44f6c012005-04-18 22:49:35 -040059 * RETURN: New namespace node (Null on failure)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 *
61 * DESCRIPTION: Create a namespace node
62 *
63 ******************************************************************************/
64
Len Brown4be44fc2005-08-05 00:44:28 -040065struct acpi_namespace_node *acpi_ns_create_node(u32 name)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
Len Brown4be44fc2005-08-05 00:44:28 -040067 struct acpi_namespace_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Len Brown4be44fc2005-08-05 00:44:28 -040069 ACPI_FUNCTION_TRACE("ns_create_node");
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Len Brown4be44fc2005-08-05 00:44:28 -040071 node = ACPI_MEM_CALLOCATE(sizeof(struct acpi_namespace_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 if (!node) {
Len Brown4be44fc2005-08-05 00:44:28 -040073 return_PTR(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 }
75
Len Brown4be44fc2005-08-05 00:44:28 -040076 ACPI_MEM_TRACKING(acpi_gbl_ns_node_list->total_allocated++);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Len Brown4be44fc2005-08-05 00:44:28 -040078 node->name.integer = name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 node->reference_count = 1;
Len Brown4be44fc2005-08-05 00:44:28 -040080 ACPI_SET_DESCRIPTOR_TYPE(node, ACPI_DESC_TYPE_NAMED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Len Brown4be44fc2005-08-05 00:44:28 -040082 return_PTR(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083}
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/*******************************************************************************
86 *
87 * FUNCTION: acpi_ns_delete_node
88 *
89 * PARAMETERS: Node - Node to be deleted
90 *
91 * RETURN: None
92 *
93 * DESCRIPTION: Delete a namespace node
94 *
95 ******************************************************************************/
96
Len Brown4be44fc2005-08-05 00:44:28 -040097void acpi_ns_delete_node(struct acpi_namespace_node *node)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
Len Brown4be44fc2005-08-05 00:44:28 -040099 struct acpi_namespace_node *parent_node;
100 struct acpi_namespace_node *prev_node;
101 struct acpi_namespace_node *next_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Len Brown4be44fc2005-08-05 00:44:28 -0400103 ACPI_FUNCTION_TRACE_PTR("ns_delete_node", node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Len Brown4be44fc2005-08-05 00:44:28 -0400105 parent_node = acpi_ns_get_parent_node(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107 prev_node = NULL;
108 next_node = parent_node->child;
109
110 /* Find the node that is the previous peer in the parent's child list */
111
112 while (next_node != node) {
113 prev_node = next_node;
114 next_node = prev_node->peer;
115 }
116
117 if (prev_node) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 /* Node is not first child, unlink it */
120
121 prev_node->peer = next_node->peer;
122 if (next_node->flags & ANOBJ_END_OF_PEER_LIST) {
123 prev_node->flags |= ANOBJ_END_OF_PEER_LIST;
124 }
Len Brown4be44fc2005-08-05 00:44:28 -0400125 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 /* Node is first child (has no previous peer) */
127
128 if (next_node->flags & ANOBJ_END_OF_PEER_LIST) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 /* No peers at all */
131
132 parent_node->child = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400133 } else { /* Link peer list to parent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 parent_node->child = next_node->peer;
136 }
137 }
138
Len Brown4be44fc2005-08-05 00:44:28 -0400139 ACPI_MEM_TRACKING(acpi_gbl_ns_node_list->total_freed++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 /*
142 * Detach an object if there is one then delete the node
143 */
Len Brown4be44fc2005-08-05 00:44:28 -0400144 acpi_ns_detach_object(node);
145 ACPI_MEM_FREE(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 return_VOID;
147}
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149/*******************************************************************************
150 *
151 * FUNCTION: acpi_ns_install_node
152 *
153 * PARAMETERS: walk_state - Current state of the walk
154 * parent_node - The parent of the new Node
155 * Node - The new Node to install
156 * Type - ACPI object type of the new Node
157 *
158 * RETURN: None
159 *
160 * DESCRIPTION: Initialize a new namespace node and install it amongst
161 * its peers.
162 *
Robert Moore0c9938c2005-07-29 15:15:00 -0700163 * Note: Current namespace lookup is linear search. This appears
164 * to be sufficient as namespace searches consume only a small
165 * fraction of the execution time of the ACPI subsystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 *
167 ******************************************************************************/
168
Len Brown4be44fc2005-08-05 00:44:28 -0400169void acpi_ns_install_node(struct acpi_walk_state *walk_state, struct acpi_namespace_node *parent_node, /* Parent */
170 struct acpi_namespace_node *node, /* New Child */
171 acpi_object_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Len Brown4be44fc2005-08-05 00:44:28 -0400173 acpi_owner_id owner_id = 0;
174 struct acpi_namespace_node *child_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Len Brown4be44fc2005-08-05 00:44:28 -0400176 ACPI_FUNCTION_TRACE("ns_install_node");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 /*
179 * Get the owner ID from the Walk state
180 * The owner ID is used to track table deletion and
181 * deletion of objects created by methods
182 */
183 if (walk_state) {
184 owner_id = walk_state->owner_id;
185 }
186
187 /* Link the new entry into the parent and existing children */
188
189 child_node = parent_node->child;
190 if (!child_node) {
191 parent_node->child = node;
192 node->flags |= ANOBJ_END_OF_PEER_LIST;
193 node->peer = parent_node;
Len Brown4be44fc2005-08-05 00:44:28 -0400194 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 while (!(child_node->flags & ANOBJ_END_OF_PEER_LIST)) {
196 child_node = child_node->peer;
197 }
198
199 child_node->peer = node;
200
201 /* Clear end-of-list flag */
202
203 child_node->flags &= ~ANOBJ_END_OF_PEER_LIST;
Robert Moore0c9938c2005-07-29 15:15:00 -0700204 node->flags |= ANOBJ_END_OF_PEER_LIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 node->peer = parent_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
207
208 /* Init the new entry */
209
210 node->owner_id = owner_id;
211 node->type = (u8) type;
212
Len Brown4be44fc2005-08-05 00:44:28 -0400213 ACPI_DEBUG_PRINT((ACPI_DB_NAMES,
214 "%4.4s (%s) [Node %p Owner %X] added to %4.4s (%s) [Node %p]\n",
215 acpi_ut_get_node_name(node),
216 acpi_ut_get_type_name(node->type), node, owner_id,
217 acpi_ut_get_node_name(parent_node),
218 acpi_ut_get_type_name(parent_node->type),
219 parent_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 /*
222 * Increment the reference count(s) of all parents up to
223 * the root!
224 */
Len Brown4be44fc2005-08-05 00:44:28 -0400225 while ((node = acpi_ns_get_parent_node(node)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 node->reference_count++;
227 }
228
229 return_VOID;
230}
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232/*******************************************************************************
233 *
234 * FUNCTION: acpi_ns_delete_children
235 *
236 * PARAMETERS: parent_node - Delete this objects children
237 *
238 * RETURN: None.
239 *
240 * DESCRIPTION: Delete all children of the parent object. In other words,
241 * deletes a "scope".
242 *
243 ******************************************************************************/
244
Len Brown4be44fc2005-08-05 00:44:28 -0400245void acpi_ns_delete_children(struct acpi_namespace_node *parent_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Len Brown4be44fc2005-08-05 00:44:28 -0400247 struct acpi_namespace_node *child_node;
248 struct acpi_namespace_node *next_node;
249 struct acpi_namespace_node *node;
250 u8 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Len Brown4be44fc2005-08-05 00:44:28 -0400252 ACPI_FUNCTION_TRACE_PTR("ns_delete_children", parent_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 if (!parent_node) {
255 return_VOID;
256 }
257
258 /* If no children, all done! */
259
260 child_node = parent_node->child;
261 if (!child_node) {
262 return_VOID;
263 }
264
265 /*
266 * Deallocate all children at this level
267 */
268 do {
Bob Moore52fc0b02006-10-02 00:00:00 -0400269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 /* Get the things we need */
271
Len Brown4be44fc2005-08-05 00:44:28 -0400272 next_node = child_node->peer;
273 flags = child_node->flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 /* Grandchildren should have all been deleted already */
276
277 if (child_node->child) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500278 ACPI_ERROR((AE_INFO, "Found a grandchild! P=%p C=%p",
279 parent_node, child_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
281
282 /* Now we can free this child object */
283
Len Brown4be44fc2005-08-05 00:44:28 -0400284 ACPI_MEM_TRACKING(acpi_gbl_ns_node_list->total_freed++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Len Brown4be44fc2005-08-05 00:44:28 -0400286 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
287 "Object %p, Remaining %X\n", child_node,
288 acpi_gbl_current_node_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290 /*
291 * Detach an object if there is one, then free the child node
292 */
Len Brown4be44fc2005-08-05 00:44:28 -0400293 acpi_ns_detach_object(child_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
295 /*
296 * Decrement the reference count(s) of all parents up to
297 * the root! (counts were incremented when the node was created)
298 */
299 node = child_node;
Len Brown4be44fc2005-08-05 00:44:28 -0400300 while ((node = acpi_ns_get_parent_node(node)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 node->reference_count--;
302 }
303
304 /* There should be only one reference remaining on this node */
305
306 if (child_node->reference_count != 1) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500307 ACPI_WARNING((AE_INFO,
308 "Existing references (%d) on node being deleted (%p)",
309 child_node->reference_count, child_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
311
312 /* Now we can delete the node */
313
Len Brown4be44fc2005-08-05 00:44:28 -0400314 ACPI_MEM_FREE(child_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 /* And move on to the next child in the list */
317
318 child_node = next_node;
319
320 } while (!(flags & ANOBJ_END_OF_PEER_LIST));
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 /* Clear the parent's child pointer */
323
324 parent_node->child = NULL;
325
326 return_VOID;
327}
328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329/*******************************************************************************
330 *
331 * FUNCTION: acpi_ns_delete_namespace_subtree
332 *
333 * PARAMETERS: parent_node - Root of the subtree to be deleted
334 *
335 * RETURN: None.
336 *
337 * DESCRIPTION: Delete a subtree of the namespace. This includes all objects
338 * stored within the subtree.
339 *
340 ******************************************************************************/
341
Len Brown4be44fc2005-08-05 00:44:28 -0400342void acpi_ns_delete_namespace_subtree(struct acpi_namespace_node *parent_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
Len Brown4be44fc2005-08-05 00:44:28 -0400344 struct acpi_namespace_node *child_node = NULL;
345 u32 level = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Len Brown4be44fc2005-08-05 00:44:28 -0400347 ACPI_FUNCTION_TRACE("ns_delete_namespace_subtree");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 if (!parent_node) {
350 return_VOID;
351 }
352
353 /*
354 * Traverse the tree of objects until we bubble back up
355 * to where we started.
356 */
357 while (level > 0) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 /* Get the next node in this scope (NULL if none) */
360
Len Brown4be44fc2005-08-05 00:44:28 -0400361 child_node = acpi_ns_get_next_node(ACPI_TYPE_ANY, parent_node,
362 child_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (child_node) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 /* Found a child node - detach any attached object */
366
Len Brown4be44fc2005-08-05 00:44:28 -0400367 acpi_ns_detach_object(child_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 /* Check if this node has any children */
370
Len Brown4be44fc2005-08-05 00:44:28 -0400371 if (acpi_ns_get_next_node
372 (ACPI_TYPE_ANY, child_node, NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 /*
374 * There is at least one child of this node,
375 * visit the node
376 */
377 level++;
378 parent_node = child_node;
379 child_node = NULL;
380 }
Len Brown4be44fc2005-08-05 00:44:28 -0400381 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 /*
383 * No more children of this parent node.
384 * Move up to the grandparent.
385 */
386 level--;
387
388 /*
389 * Now delete all of the children of this parent
390 * all at the same time.
391 */
Len Brown4be44fc2005-08-05 00:44:28 -0400392 acpi_ns_delete_children(parent_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394 /* New "last child" is this parent node */
395
396 child_node = parent_node;
397
398 /* Move up the tree to the grandparent */
399
Len Brown4be44fc2005-08-05 00:44:28 -0400400 parent_node = acpi_ns_get_parent_node(parent_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
402 }
403
404 return_VOID;
405}
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407/*******************************************************************************
408 *
409 * FUNCTION: acpi_ns_remove_reference
410 *
411 * PARAMETERS: Node - Named node whose reference count is to be
412 * decremented
413 *
414 * RETURN: None.
415 *
416 * DESCRIPTION: Remove a Node reference. Decrements the reference count
417 * of all parent Nodes up to the root. Any node along
418 * the way that reaches zero references is freed.
419 *
420 ******************************************************************************/
421
Len Brown4be44fc2005-08-05 00:44:28 -0400422static void acpi_ns_remove_reference(struct acpi_namespace_node *node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Len Brown4be44fc2005-08-05 00:44:28 -0400424 struct acpi_namespace_node *parent_node;
425 struct acpi_namespace_node *this_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Len Brown4be44fc2005-08-05 00:44:28 -0400427 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 /*
430 * Decrement the reference count(s) of this node and all
431 * nodes up to the root, Delete anything with zero remaining references.
432 */
433 this_node = node;
434 while (this_node) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 /* Prepare to move up to parent */
437
Len Brown4be44fc2005-08-05 00:44:28 -0400438 parent_node = acpi_ns_get_parent_node(this_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 /* Decrement the reference count on this node */
441
442 this_node->reference_count--;
443
444 /* Delete the node if no more references */
445
446 if (!this_node->reference_count) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 /* Delete all children and delete the node */
449
Len Brown4be44fc2005-08-05 00:44:28 -0400450 acpi_ns_delete_children(this_node);
451 acpi_ns_delete_node(this_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 }
453
454 this_node = parent_node;
455 }
456}
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458/*******************************************************************************
459 *
460 * FUNCTION: acpi_ns_delete_namespace_by_owner
461 *
462 * PARAMETERS: owner_id - All nodes with this owner will be deleted
463 *
464 * RETURN: Status
465 *
466 * DESCRIPTION: Delete entries within the namespace that are owned by a
467 * specific ID. Used to delete entire ACPI tables. All
468 * reference counts are updated.
469 *
470 ******************************************************************************/
471
Len Brown4be44fc2005-08-05 00:44:28 -0400472void acpi_ns_delete_namespace_by_owner(acpi_owner_id owner_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
Len Brown4be44fc2005-08-05 00:44:28 -0400474 struct acpi_namespace_node *child_node;
475 struct acpi_namespace_node *deletion_node;
476 u32 level;
477 struct acpi_namespace_node *parent_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Len Brown4be44fc2005-08-05 00:44:28 -0400479 ACPI_FUNCTION_TRACE_U32("ns_delete_namespace_by_owner", owner_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Robert Moore0c9938c2005-07-29 15:15:00 -0700481 if (owner_id == 0) {
482 return_VOID;
483 }
484
Len Brown4be44fc2005-08-05 00:44:28 -0400485 parent_node = acpi_gbl_root_node;
486 child_node = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 deletion_node = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400488 level = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 /*
491 * Traverse the tree of nodes until we bubble back up
492 * to where we started.
493 */
494 while (level > 0) {
495 /*
496 * Get the next child of this parent node. When child_node is NULL,
497 * the first child of the parent is returned
498 */
Len Brown4be44fc2005-08-05 00:44:28 -0400499 child_node =
500 acpi_ns_get_next_node(ACPI_TYPE_ANY, parent_node,
501 child_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 if (deletion_node) {
Len Brown4be44fc2005-08-05 00:44:28 -0400504 acpi_ns_remove_reference(deletion_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 deletion_node = NULL;
506 }
507
508 if (child_node) {
509 if (child_node->owner_id == owner_id) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 /* Found a matching child node - detach any attached object */
512
Len Brown4be44fc2005-08-05 00:44:28 -0400513 acpi_ns_detach_object(child_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
515
516 /* Check if this node has any children */
517
Len Brown4be44fc2005-08-05 00:44:28 -0400518 if (acpi_ns_get_next_node
519 (ACPI_TYPE_ANY, child_node, NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 /*
521 * There is at least one child of this node,
522 * visit the node
523 */
524 level++;
525 parent_node = child_node;
526 child_node = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400527 } else if (child_node->owner_id == owner_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 deletion_node = child_node;
529 }
Len Brown4be44fc2005-08-05 00:44:28 -0400530 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 /*
532 * No more children of this parent node.
533 * Move up to the grandparent.
534 */
535 level--;
536 if (level != 0) {
537 if (parent_node->owner_id == owner_id) {
538 deletion_node = parent_node;
539 }
540 }
541
542 /* New "last child" is this parent node */
543
544 child_node = parent_node;
545
546 /* Move up the tree to the grandparent */
547
Len Brown4be44fc2005-08-05 00:44:28 -0400548 parent_node = acpi_ns_get_parent_node(parent_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 }
550 }
551
552 return_VOID;
553}