blob: 500e2bbcfaf72647690f831504dec96bc6766435 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2 *
3 * Module Name: nssearch - Namespace search
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("nssearch")
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Robert Moore44f6c012005-04-18 22:49:35 -040050/* Local prototypes */
Robert Moore44f6c012005-04-18 22:49:35 -040051static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040052acpi_ns_search_parent_tree(u32 target_name,
53 struct acpi_namespace_node *node,
54 acpi_object_type type,
55 struct acpi_namespace_node **return_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57/*******************************************************************************
58 *
Bob Moore41195322006-05-26 16:36:00 -040059 * FUNCTION: acpi_ns_search_one_scope
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 *
Robert Moore44f6c012005-04-18 22:49:35 -040061 * PARAMETERS: target_name - Ascii ACPI name to search for
Bob Moore41195322006-05-26 16:36:00 -040062 * parent_node - Starting node where search will begin
Robert Moore44f6c012005-04-18 22:49:35 -040063 * Type - Object type to match
64 * return_node - Where the matched Named obj is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 *
66 * RETURN: Status
67 *
Bob Moore41195322006-05-26 16:36:00 -040068 * DESCRIPTION: Search a single level of the namespace. Performs a
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 * simple search of the specified level, and does not add
70 * entries or search parents.
71 *
72 *
73 * Named object lists are built (and subsequently dumped) in the
74 * order in which the names are encountered during the namespace load;
75 *
76 * All namespace searching is linear in this implementation, but
77 * could be easily modified to support any improved search
Bob Moore41195322006-05-26 16:36:00 -040078 * algorithm. However, the linear search was chosen for simplicity
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 * and because the trees are small and the other interpreter
80 * execution overhead is relatively high.
81 *
Bob Moore41195322006-05-26 16:36:00 -040082 * Note: CPU execution analysis has shown that the AML interpreter spends
83 * a very small percentage of its time searching the namespace. Therefore,
84 * the linear search seems to be sufficient, as there would seem to be
85 * little value in improving the search.
86 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 ******************************************************************************/
88
89acpi_status
Bob Moore41195322006-05-26 16:36:00 -040090acpi_ns_search_one_scope(u32 target_name,
91 struct acpi_namespace_node *parent_node,
92 acpi_object_type type,
93 struct acpi_namespace_node **return_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Bob Moore41195322006-05-26 16:36:00 -040095 struct acpi_namespace_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Bob Moore41195322006-05-26 16:36:00 -040097 ACPI_FUNCTION_TRACE(ns_search_one_scope);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99#ifdef ACPI_DEBUG_OUTPUT
100 if (ACPI_LV_NAMES & acpi_dbg_level) {
Len Brown4be44fc2005-08-05 00:44:28 -0400101 char *scope_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Bob Moore41195322006-05-26 16:36:00 -0400103 scope_name = acpi_ns_get_external_pathname(parent_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (scope_name) {
Len Brown4be44fc2005-08-05 00:44:28 -0400105 ACPI_DEBUG_PRINT((ACPI_DB_NAMES,
106 "Searching %s (%p) For [%4.4s] (%s)\n",
Bob Moore41195322006-05-26 16:36:00 -0400107 scope_name, parent_node,
108 ACPI_CAST_PTR(char, &target_name),
Len Brown4be44fc2005-08-05 00:44:28 -0400109 acpi_ut_get_type_name(type)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Bob Moore83135242006-10-03 00:00:00 -0400111 ACPI_FREE(scope_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 }
113 }
114#endif
115
116 /*
117 * Search for name at this namespace level, which is to say that we
118 * must search for the name among the children of this object
119 */
Bob Moore41195322006-05-26 16:36:00 -0400120 node = parent_node->child;
121 while (node) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 /* Check for match against the name */
124
Bob Moore41195322006-05-26 16:36:00 -0400125 if (node->name.integer == target_name) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 /* Resolve a control method alias if any */
128
Bob Moore41195322006-05-26 16:36:00 -0400129 if (acpi_ns_get_type(node) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400130 ACPI_TYPE_LOCAL_METHOD_ALIAS) {
Bob Moore41195322006-05-26 16:36:00 -0400131 node =
Len Brown4be44fc2005-08-05 00:44:28 -0400132 ACPI_CAST_PTR(struct acpi_namespace_node,
Bob Moore41195322006-05-26 16:36:00 -0400133 node->object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
135
Bob Moore793c2382006-03-31 00:00:00 -0500136 /* Found matching entry */
137
Len Brown4be44fc2005-08-05 00:44:28 -0400138 ACPI_DEBUG_PRINT((ACPI_DB_NAMES,
139 "Name [%4.4s] (%s) %p found in scope [%4.4s] %p\n",
Bob Mooredefba1d2005-12-16 17:05:00 -0500140 ACPI_CAST_PTR(char, &target_name),
Bob Moore41195322006-05-26 16:36:00 -0400141 acpi_ut_get_type_name(node->type),
142 node,
143 acpi_ut_get_node_name(parent_node),
144 parent_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Bob Moore41195322006-05-26 16:36:00 -0400146 *return_node = node;
Len Brown4be44fc2005-08-05 00:44:28 -0400147 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
149
150 /*
151 * The last entry in the list points back to the parent,
152 * so a flag is used to indicate the end-of-list
153 */
Bob Moore41195322006-05-26 16:36:00 -0400154 if (node->flags & ANOBJ_END_OF_PEER_LIST) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 /* Searched entire list, we are done */
157
158 break;
159 }
160
161 /* Didn't match name, move on to the next peer object */
162
Bob Moore41195322006-05-26 16:36:00 -0400163 node = node->peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 }
165
166 /* Searched entire namespace level, not found */
167
Len Brown4be44fc2005-08-05 00:44:28 -0400168 ACPI_DEBUG_PRINT((ACPI_DB_NAMES,
169 "Name [%4.4s] (%s) not found in search in scope [%4.4s] %p first child %p\n",
Bob Mooredefba1d2005-12-16 17:05:00 -0500170 ACPI_CAST_PTR(char, &target_name),
171 acpi_ut_get_type_name(type),
Bob Moore41195322006-05-26 16:36:00 -0400172 acpi_ut_get_node_name(parent_node), parent_node,
173 parent_node->child));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Len Brown4be44fc2005-08-05 00:44:28 -0400175 return_ACPI_STATUS(AE_NOT_FOUND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178/*******************************************************************************
179 *
180 * FUNCTION: acpi_ns_search_parent_tree
181 *
Robert Moore44f6c012005-04-18 22:49:35 -0400182 * PARAMETERS: target_name - Ascii ACPI name to search for
183 * Node - Starting node where search will begin
184 * Type - Object type to match
185 * return_node - Where the matched Node is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 *
187 * RETURN: Status
188 *
189 * DESCRIPTION: Called when a name has not been found in the current namespace
Bob Moore41195322006-05-26 16:36:00 -0400190 * level. Before adding it or giving up, ACPI scope rules require
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 * searching enclosing scopes in cases identified by acpi_ns_local().
192 *
193 * "A name is located by finding the matching name in the current
194 * name space, and then in the parent name space. If the parent
195 * name space does not contain the name, the search continues
196 * recursively until either the name is found or the name space
Bob Moore41195322006-05-26 16:36:00 -0400197 * does not have a parent (the root of the name space). This
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 * indicates that the name is not found" (From ACPI Specification,
199 * section 5.3)
200 *
201 ******************************************************************************/
202
203static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400204acpi_ns_search_parent_tree(u32 target_name,
205 struct acpi_namespace_node *node,
206 acpi_object_type type,
207 struct acpi_namespace_node **return_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
Len Brown4be44fc2005-08-05 00:44:28 -0400209 acpi_status status;
210 struct acpi_namespace_node *parent_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Bob Mooreb229cf92006-04-21 17:15:00 -0400212 ACPI_FUNCTION_TRACE(ns_search_parent_tree);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Len Brown4be44fc2005-08-05 00:44:28 -0400214 parent_node = acpi_ns_get_parent_node(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 /*
217 * If there is no parent (i.e., we are at the root) or type is "local",
218 * we won't be searching the parent tree.
219 */
220 if (!parent_node) {
Len Brown4be44fc2005-08-05 00:44:28 -0400221 ACPI_DEBUG_PRINT((ACPI_DB_NAMES, "[%4.4s] has no parent\n",
Bob Mooredefba1d2005-12-16 17:05:00 -0500222 ACPI_CAST_PTR(char, &target_name)));
Len Brown4be44fc2005-08-05 00:44:28 -0400223 return_ACPI_STATUS(AE_NOT_FOUND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 }
225
Len Brown4be44fc2005-08-05 00:44:28 -0400226 if (acpi_ns_local(type)) {
227 ACPI_DEBUG_PRINT((ACPI_DB_NAMES,
228 "[%4.4s] type [%s] must be local to this scope (no parent search)\n",
Bob Mooredefba1d2005-12-16 17:05:00 -0500229 ACPI_CAST_PTR(char, &target_name),
Len Brown4be44fc2005-08-05 00:44:28 -0400230 acpi_ut_get_type_name(type)));
231 return_ACPI_STATUS(AE_NOT_FOUND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 }
233
234 /* Search the parent tree */
235
Len Brown4be44fc2005-08-05 00:44:28 -0400236 ACPI_DEBUG_PRINT((ACPI_DB_NAMES,
237 "Searching parent [%4.4s] for [%4.4s]\n",
238 acpi_ut_get_node_name(parent_node),
Bob Mooredefba1d2005-12-16 17:05:00 -0500239 ACPI_CAST_PTR(char, &target_name)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 /*
242 * Search parents until target is found or we have backed up to the root
243 */
244 while (parent_node) {
245 /*
Bob Moore41195322006-05-26 16:36:00 -0400246 * Search parent scope. Use TYPE_ANY because we don't care about the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 * object type at this point, we only care about the existence of
Bob Moore41195322006-05-26 16:36:00 -0400248 * the actual name we are searching for. Typechecking comes later.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 */
Bob Moore41195322006-05-26 16:36:00 -0400250 status =
251 acpi_ns_search_one_scope(target_name, parent_node,
Len Brown4be44fc2005-08-05 00:44:28 -0400252 ACPI_TYPE_ANY, return_node);
253 if (ACPI_SUCCESS(status)) {
254 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
256
Bob Moore793c2382006-03-31 00:00:00 -0500257 /* Not found here, go up another level (until we reach the root) */
258
Len Brown4be44fc2005-08-05 00:44:28 -0400259 parent_node = acpi_ns_get_parent_node(parent_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 }
261
262 /* Not found in parent tree */
263
Len Brown4be44fc2005-08-05 00:44:28 -0400264 return_ACPI_STATUS(AE_NOT_FOUND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267/*******************************************************************************
268 *
269 * FUNCTION: acpi_ns_search_and_enter
270 *
271 * PARAMETERS: target_name - Ascii ACPI name to search for (4 chars)
272 * walk_state - Current state of the walk
Robert Moore44f6c012005-04-18 22:49:35 -0400273 * Node - Starting node where search will begin
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 * interpreter_mode - Add names only in ACPI_MODE_LOAD_PASS_x.
275 * Otherwise,search only.
276 * Type - Object type to match
277 * Flags - Flags describing the search restrictions
Robert Moore44f6c012005-04-18 22:49:35 -0400278 * return_node - Where the Node is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 *
280 * RETURN: Status
281 *
282 * DESCRIPTION: Search for a name segment in a single namespace level,
Bob Moore41195322006-05-26 16:36:00 -0400283 * optionally adding it if it is not found. If the passed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 * Type is not Any and the type previously stored in the
285 * entry was Any (i.e. unknown), update the stored type.
286 *
287 * In ACPI_IMODE_EXECUTE, search only.
288 * In other modes, search and add if not found.
289 *
290 ******************************************************************************/
291
292acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400293acpi_ns_search_and_enter(u32 target_name,
294 struct acpi_walk_state *walk_state,
295 struct acpi_namespace_node *node,
296 acpi_interpreter_mode interpreter_mode,
297 acpi_object_type type,
298 u32 flags, struct acpi_namespace_node **return_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Len Brown4be44fc2005-08-05 00:44:28 -0400300 acpi_status status;
301 struct acpi_namespace_node *new_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Bob Mooreb229cf92006-04-21 17:15:00 -0400303 ACPI_FUNCTION_TRACE(ns_search_and_enter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305 /* Parameter validation */
306
307 if (!node || !target_name || !return_node) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500308 ACPI_ERROR((AE_INFO,
Bob Moore958dd242006-05-12 17:12:00 -0400309 "Null parameter: Node %p Name %X ReturnNode %p",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500310 node, target_name, return_node));
Len Brown4be44fc2005-08-05 00:44:28 -0400311 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
313
Bob Moore793c2382006-03-31 00:00:00 -0500314 /*
315 * Name must consist of valid ACPI characters. We will repair the name if
316 * necessary because we don't want to abort because of this, but we want
317 * all namespace names to be printable. A warning message is appropriate.
318 *
319 * This issue came up because there are in fact machines that exhibit
320 * this problem, and we want to be able to enable ACPI support for them,
321 * even though there are a few bad names.
322 */
Len Brown4be44fc2005-08-05 00:44:28 -0400323 if (!acpi_ut_valid_acpi_name(target_name)) {
Bob Moore793c2382006-03-31 00:00:00 -0500324 target_name = acpi_ut_repair_name(target_name);
325
326 /* Report warning only if in strict mode or debug mode */
327
328 if (!acpi_gbl_enable_interpreter_slack) {
329 ACPI_WARNING((AE_INFO,
330 "Found bad character(s) in name, repaired: [%4.4s]\n",
331 ACPI_CAST_PTR(char, &target_name)));
332 } else {
333 ACPI_DEBUG_PRINT((ACPI_DB_WARN,
334 "Found bad character(s) in name, repaired: [%4.4s]\n",
335 ACPI_CAST_PTR(char, &target_name)));
336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
338
339 /* Try to find the name in the namespace level specified by the caller */
340
341 *return_node = ACPI_ENTRY_NOT_FOUND;
Bob Moore41195322006-05-26 16:36:00 -0400342 status = acpi_ns_search_one_scope(target_name, node, type, return_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 if (status != AE_NOT_FOUND) {
344 /*
345 * If we found it AND the request specifies that a find is an error,
346 * return the error
347 */
Len Brown4be44fc2005-08-05 00:44:28 -0400348 if ((status == AE_OK) && (flags & ACPI_NS_ERROR_IF_FOUND)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 status = AE_ALREADY_EXISTS;
350 }
351
Bob Moore793c2382006-03-31 00:00:00 -0500352 /* Either found it or there was an error: finished either way */
353
Len Brown4be44fc2005-08-05 00:44:28 -0400354 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
356
357 /*
Bob Moore41195322006-05-26 16:36:00 -0400358 * The name was not found. If we are NOT performing the first pass
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 * (name entry) of loading the namespace, search the parent tree (all the
360 * way to the root if necessary.) We don't want to perform the parent
Bob Moore41195322006-05-26 16:36:00 -0400361 * search when the namespace is actually being loaded. We want to perform
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 * the search when namespace references are being resolved (load pass 2)
363 * and during the execution phase.
364 */
365 if ((interpreter_mode != ACPI_IMODE_LOAD_PASS1) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400366 (flags & ACPI_NS_SEARCH_PARENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 /*
368 * Not found at this level - search parent tree according to the
369 * ACPI specification
370 */
Len Brown4be44fc2005-08-05 00:44:28 -0400371 status =
372 acpi_ns_search_parent_tree(target_name, node, type,
373 return_node);
374 if (ACPI_SUCCESS(status)) {
375 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 }
377 }
378
Bob Moore793c2382006-03-31 00:00:00 -0500379 /* In execute mode, just search, never add names. Exit now */
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 if (interpreter_mode == ACPI_IMODE_EXECUTE) {
Len Brown4be44fc2005-08-05 00:44:28 -0400382 ACPI_DEBUG_PRINT((ACPI_DB_NAMES,
383 "%4.4s Not found in %p [Not adding]\n",
Bob Mooredefba1d2005-12-16 17:05:00 -0500384 ACPI_CAST_PTR(char, &target_name), node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Len Brown4be44fc2005-08-05 00:44:28 -0400386 return_ACPI_STATUS(AE_NOT_FOUND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388
389 /* Create the new named object */
390
Len Brown4be44fc2005-08-05 00:44:28 -0400391 new_node = acpi_ns_create_node(target_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (!new_node) {
Len Brown4be44fc2005-08-05 00:44:28 -0400393 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
Bob Moore958dd242006-05-12 17:12:00 -0400395#ifdef ACPI_ASL_COMPILER
Bob Moore41195322006-05-26 16:36:00 -0400396 /*
397 * Node is an object defined by an External() statement
398 */
Bob Moore958dd242006-05-12 17:12:00 -0400399 if (flags & ACPI_NS_EXTERNAL) {
400 new_node->flags |= ANOBJ_IS_EXTERNAL;
401 }
402#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 /* Install the new object into the parent's list of children */
405
Len Brown4be44fc2005-08-05 00:44:28 -0400406 acpi_ns_install_node(walk_state, node, new_node, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 *return_node = new_node;
Len Brown4be44fc2005-08-05 00:44:28 -0400408 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}