blob: 6fea13f3f52dbf88a7ac664f63cc1bc0a47f99b5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2 *
3 * Module Name: nssearch - Namespace search
4 *
5 ******************************************************************************/
6
7/*
Len Brown75a44ce2008-04-23 23:00:13 -04008 * Copyright (C) 2000 - 2008, Intel Corp.
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>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "acnamesp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define _COMPONENT ACPI_NAMESPACE
Len Brown4be44fc2005-08-05 00:44:28 -040049ACPI_MODULE_NAME("nssearch")
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Robert Moore44f6c012005-04-18 22:49:35 -040051/* Local prototypes */
Robert Moore44f6c012005-04-18 22:49:35 -040052static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040053acpi_ns_search_parent_tree(u32 target_name,
54 struct acpi_namespace_node *node,
55 acpi_object_type type,
56 struct acpi_namespace_node **return_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58/*******************************************************************************
59 *
Bob Moore41195322006-05-26 16:36:00 -040060 * FUNCTION: acpi_ns_search_one_scope
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 *
Robert Moore44f6c012005-04-18 22:49:35 -040062 * PARAMETERS: target_name - Ascii ACPI name to search for
Bob Moore41195322006-05-26 16:36:00 -040063 * parent_node - Starting node where search will begin
Robert Moore44f6c012005-04-18 22:49:35 -040064 * Type - Object type to match
65 * return_node - Where the matched Named obj is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 *
67 * RETURN: Status
68 *
Bob Moore41195322006-05-26 16:36:00 -040069 * DESCRIPTION: Search a single level of the namespace. Performs a
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 * simple search of the specified level, and does not add
71 * entries or search parents.
72 *
73 *
74 * Named object lists are built (and subsequently dumped) in the
75 * order in which the names are encountered during the namespace load;
76 *
77 * All namespace searching is linear in this implementation, but
78 * could be easily modified to support any improved search
Bob Moore41195322006-05-26 16:36:00 -040079 * algorithm. However, the linear search was chosen for simplicity
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 * and because the trees are small and the other interpreter
81 * execution overhead is relatively high.
82 *
Bob Moore41195322006-05-26 16:36:00 -040083 * Note: CPU execution analysis has shown that the AML interpreter spends
84 * a very small percentage of its time searching the namespace. Therefore,
85 * the linear search seems to be sufficient, as there would seem to be
86 * little value in improving the search.
87 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 ******************************************************************************/
89
90acpi_status
Bob Moore41195322006-05-26 16:36:00 -040091acpi_ns_search_one_scope(u32 target_name,
92 struct acpi_namespace_node *parent_node,
93 acpi_object_type type,
94 struct acpi_namespace_node **return_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Bob Moore41195322006-05-26 16:36:00 -040096 struct acpi_namespace_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Bob Moore41195322006-05-26 16:36:00 -040098 ACPI_FUNCTION_TRACE(ns_search_one_scope);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100#ifdef ACPI_DEBUG_OUTPUT
101 if (ACPI_LV_NAMES & acpi_dbg_level) {
Len Brown4be44fc2005-08-05 00:44:28 -0400102 char *scope_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Bob Moore41195322006-05-26 16:36:00 -0400104 scope_name = acpi_ns_get_external_pathname(parent_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 if (scope_name) {
Len Brown4be44fc2005-08-05 00:44:28 -0400106 ACPI_DEBUG_PRINT((ACPI_DB_NAMES,
107 "Searching %s (%p) For [%4.4s] (%s)\n",
Bob Moore41195322006-05-26 16:36:00 -0400108 scope_name, parent_node,
109 ACPI_CAST_PTR(char, &target_name),
Len Brown4be44fc2005-08-05 00:44:28 -0400110 acpi_ut_get_type_name(type)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Bob Moore83135242006-10-03 00:00:00 -0400112 ACPI_FREE(scope_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
114 }
115#endif
116
117 /*
118 * Search for name at this namespace level, which is to say that we
119 * must search for the name among the children of this object
120 */
Bob Moore41195322006-05-26 16:36:00 -0400121 node = parent_node->child;
122 while (node) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 /* Check for match against the name */
125
Bob Moore41195322006-05-26 16:36:00 -0400126 if (node->name.integer == target_name) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 /* Resolve a control method alias if any */
129
Bob Moore41195322006-05-26 16:36:00 -0400130 if (acpi_ns_get_type(node) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400131 ACPI_TYPE_LOCAL_METHOD_ALIAS) {
Bob Moore41195322006-05-26 16:36:00 -0400132 node =
Len Brown4be44fc2005-08-05 00:44:28 -0400133 ACPI_CAST_PTR(struct acpi_namespace_node,
Bob Moore41195322006-05-26 16:36:00 -0400134 node->object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136
Bob Moore793c2382006-03-31 00:00:00 -0500137 /* Found matching entry */
138
Len Brown4be44fc2005-08-05 00:44:28 -0400139 ACPI_DEBUG_PRINT((ACPI_DB_NAMES,
140 "Name [%4.4s] (%s) %p found in scope [%4.4s] %p\n",
Bob Mooredefba1d2005-12-16 17:05:00 -0500141 ACPI_CAST_PTR(char, &target_name),
Bob Moore41195322006-05-26 16:36:00 -0400142 acpi_ut_get_type_name(node->type),
143 node,
144 acpi_ut_get_node_name(parent_node),
145 parent_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Bob Moore41195322006-05-26 16:36:00 -0400147 *return_node = node;
Len Brown4be44fc2005-08-05 00:44:28 -0400148 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 }
150
151 /*
152 * The last entry in the list points back to the parent,
153 * so a flag is used to indicate the end-of-list
154 */
Bob Moore41195322006-05-26 16:36:00 -0400155 if (node->flags & ANOBJ_END_OF_PEER_LIST) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 /* Searched entire list, we are done */
158
159 break;
160 }
161
162 /* Didn't match name, move on to the next peer object */
163
Bob Moore41195322006-05-26 16:36:00 -0400164 node = node->peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
166
167 /* Searched entire namespace level, not found */
168
Len Brown4be44fc2005-08-05 00:44:28 -0400169 ACPI_DEBUG_PRINT((ACPI_DB_NAMES,
170 "Name [%4.4s] (%s) not found in search in scope [%4.4s] %p first child %p\n",
Bob Mooredefba1d2005-12-16 17:05:00 -0500171 ACPI_CAST_PTR(char, &target_name),
172 acpi_ut_get_type_name(type),
Bob Moore41195322006-05-26 16:36:00 -0400173 acpi_ut_get_node_name(parent_node), parent_node,
174 parent_node->child));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Len Brown4be44fc2005-08-05 00:44:28 -0400176 return_ACPI_STATUS(AE_NOT_FOUND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179/*******************************************************************************
180 *
181 * FUNCTION: acpi_ns_search_parent_tree
182 *
Robert Moore44f6c012005-04-18 22:49:35 -0400183 * PARAMETERS: target_name - Ascii ACPI name to search for
184 * Node - Starting node where search will begin
185 * Type - Object type to match
186 * return_node - Where the matched Node is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 *
188 * RETURN: Status
189 *
190 * DESCRIPTION: Called when a name has not been found in the current namespace
Bob Moore41195322006-05-26 16:36:00 -0400191 * level. Before adding it or giving up, ACPI scope rules require
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 * searching enclosing scopes in cases identified by acpi_ns_local().
193 *
194 * "A name is located by finding the matching name in the current
195 * name space, and then in the parent name space. If the parent
196 * name space does not contain the name, the search continues
197 * recursively until either the name is found or the name space
Bob Moore41195322006-05-26 16:36:00 -0400198 * does not have a parent (the root of the name space). This
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 * indicates that the name is not found" (From ACPI Specification,
200 * section 5.3)
201 *
202 ******************************************************************************/
203
204static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400205acpi_ns_search_parent_tree(u32 target_name,
206 struct acpi_namespace_node *node,
207 acpi_object_type type,
208 struct acpi_namespace_node **return_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Len Brown4be44fc2005-08-05 00:44:28 -0400210 acpi_status status;
211 struct acpi_namespace_node *parent_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Bob Mooreb229cf92006-04-21 17:15:00 -0400213 ACPI_FUNCTION_TRACE(ns_search_parent_tree);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Len Brown4be44fc2005-08-05 00:44:28 -0400215 parent_node = acpi_ns_get_parent_node(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 /*
218 * If there is no parent (i.e., we are at the root) or type is "local",
219 * we won't be searching the parent tree.
220 */
221 if (!parent_node) {
Len Brown4be44fc2005-08-05 00:44:28 -0400222 ACPI_DEBUG_PRINT((ACPI_DB_NAMES, "[%4.4s] has no parent\n",
Bob Mooredefba1d2005-12-16 17:05:00 -0500223 ACPI_CAST_PTR(char, &target_name)));
Len Brown4be44fc2005-08-05 00:44:28 -0400224 return_ACPI_STATUS(AE_NOT_FOUND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 }
226
Len Brown4be44fc2005-08-05 00:44:28 -0400227 if (acpi_ns_local(type)) {
228 ACPI_DEBUG_PRINT((ACPI_DB_NAMES,
229 "[%4.4s] type [%s] must be local to this scope (no parent search)\n",
Bob Mooredefba1d2005-12-16 17:05:00 -0500230 ACPI_CAST_PTR(char, &target_name),
Len Brown4be44fc2005-08-05 00:44:28 -0400231 acpi_ut_get_type_name(type)));
232 return_ACPI_STATUS(AE_NOT_FOUND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 }
234
235 /* Search the parent tree */
236
Len Brown4be44fc2005-08-05 00:44:28 -0400237 ACPI_DEBUG_PRINT((ACPI_DB_NAMES,
238 "Searching parent [%4.4s] for [%4.4s]\n",
239 acpi_ut_get_node_name(parent_node),
Bob Mooredefba1d2005-12-16 17:05:00 -0500240 ACPI_CAST_PTR(char, &target_name)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 /*
243 * Search parents until target is found or we have backed up to the root
244 */
245 while (parent_node) {
246 /*
Bob Moore41195322006-05-26 16:36:00 -0400247 * Search parent scope. Use TYPE_ANY because we don't care about the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 * object type at this point, we only care about the existence of
Bob Moore41195322006-05-26 16:36:00 -0400249 * the actual name we are searching for. Typechecking comes later.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 */
Bob Moore41195322006-05-26 16:36:00 -0400251 status =
252 acpi_ns_search_one_scope(target_name, parent_node,
Len Brown4be44fc2005-08-05 00:44:28 -0400253 ACPI_TYPE_ANY, return_node);
254 if (ACPI_SUCCESS(status)) {
255 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
257
Bob Moore793c2382006-03-31 00:00:00 -0500258 /* Not found here, go up another level (until we reach the root) */
259
Len Brown4be44fc2005-08-05 00:44:28 -0400260 parent_node = acpi_ns_get_parent_node(parent_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 }
262
263 /* Not found in parent tree */
264
Len Brown4be44fc2005-08-05 00:44:28 -0400265 return_ACPI_STATUS(AE_NOT_FOUND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268/*******************************************************************************
269 *
270 * FUNCTION: acpi_ns_search_and_enter
271 *
272 * PARAMETERS: target_name - Ascii ACPI name to search for (4 chars)
273 * walk_state - Current state of the walk
Robert Moore44f6c012005-04-18 22:49:35 -0400274 * Node - Starting node where search will begin
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 * interpreter_mode - Add names only in ACPI_MODE_LOAD_PASS_x.
276 * Otherwise,search only.
277 * Type - Object type to match
278 * Flags - Flags describing the search restrictions
Robert Moore44f6c012005-04-18 22:49:35 -0400279 * return_node - Where the Node is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 *
281 * RETURN: Status
282 *
283 * DESCRIPTION: Search for a name segment in a single namespace level,
Bob Moore41195322006-05-26 16:36:00 -0400284 * optionally adding it if it is not found. If the passed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 * Type is not Any and the type previously stored in the
286 * entry was Any (i.e. unknown), update the stored type.
287 *
288 * In ACPI_IMODE_EXECUTE, search only.
289 * In other modes, search and add if not found.
290 *
291 ******************************************************************************/
292
293acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400294acpi_ns_search_and_enter(u32 target_name,
295 struct acpi_walk_state *walk_state,
296 struct acpi_namespace_node *node,
297 acpi_interpreter_mode interpreter_mode,
298 acpi_object_type type,
299 u32 flags, struct acpi_namespace_node **return_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
Len Brown4be44fc2005-08-05 00:44:28 -0400301 acpi_status status;
302 struct acpi_namespace_node *new_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Bob Mooreb229cf92006-04-21 17:15:00 -0400304 ACPI_FUNCTION_TRACE(ns_search_and_enter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 /* Parameter validation */
307
308 if (!node || !target_name || !return_node) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500309 ACPI_ERROR((AE_INFO,
Bob Moore958dd242006-05-12 17:12:00 -0400310 "Null parameter: Node %p Name %X ReturnNode %p",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500311 node, target_name, return_node));
Len Brown4be44fc2005-08-05 00:44:28 -0400312 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 }
314
Bob Moore793c2382006-03-31 00:00:00 -0500315 /*
316 * Name must consist of valid ACPI characters. We will repair the name if
317 * necessary because we don't want to abort because of this, but we want
318 * all namespace names to be printable. A warning message is appropriate.
319 *
320 * This issue came up because there are in fact machines that exhibit
321 * this problem, and we want to be able to enable ACPI support for them,
322 * even though there are a few bad names.
323 */
Len Brown4be44fc2005-08-05 00:44:28 -0400324 if (!acpi_ut_valid_acpi_name(target_name)) {
Bob Moore3d81b232007-02-02 19:48:19 +0300325 target_name =
326 acpi_ut_repair_name(ACPI_CAST_PTR(char, &target_name));
Bob Moore793c2382006-03-31 00:00:00 -0500327
328 /* Report warning only if in strict mode or debug mode */
329
330 if (!acpi_gbl_enable_interpreter_slack) {
331 ACPI_WARNING((AE_INFO,
332 "Found bad character(s) in name, repaired: [%4.4s]\n",
333 ACPI_CAST_PTR(char, &target_name)));
334 } else {
Bob Moore23d3e052008-09-28 15:00:47 +0800335 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bob Moore793c2382006-03-31 00:00:00 -0500336 "Found bad character(s) in name, repaired: [%4.4s]\n",
337 ACPI_CAST_PTR(char, &target_name)));
338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 }
340
341 /* Try to find the name in the namespace level specified by the caller */
342
343 *return_node = ACPI_ENTRY_NOT_FOUND;
Bob Moore41195322006-05-26 16:36:00 -0400344 status = acpi_ns_search_one_scope(target_name, node, type, return_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 if (status != AE_NOT_FOUND) {
346 /*
347 * If we found it AND the request specifies that a find is an error,
348 * return the error
349 */
Len Brown4be44fc2005-08-05 00:44:28 -0400350 if ((status == AE_OK) && (flags & ACPI_NS_ERROR_IF_FOUND)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 status = AE_ALREADY_EXISTS;
352 }
353
Bob Moore793c2382006-03-31 00:00:00 -0500354 /* Either found it or there was an error: finished either way */
355
Len Brown4be44fc2005-08-05 00:44:28 -0400356 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 }
358
359 /*
Bob Moore41195322006-05-26 16:36:00 -0400360 * The name was not found. If we are NOT performing the first pass
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 * (name entry) of loading the namespace, search the parent tree (all the
362 * way to the root if necessary.) We don't want to perform the parent
Bob Moore41195322006-05-26 16:36:00 -0400363 * search when the namespace is actually being loaded. We want to perform
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 * the search when namespace references are being resolved (load pass 2)
365 * and during the execution phase.
366 */
367 if ((interpreter_mode != ACPI_IMODE_LOAD_PASS1) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400368 (flags & ACPI_NS_SEARCH_PARENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 /*
370 * Not found at this level - search parent tree according to the
371 * ACPI specification
372 */
Len Brown4be44fc2005-08-05 00:44:28 -0400373 status =
374 acpi_ns_search_parent_tree(target_name, node, type,
375 return_node);
376 if (ACPI_SUCCESS(status)) {
377 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
379 }
380
Bob Moore793c2382006-03-31 00:00:00 -0500381 /* In execute mode, just search, never add names. Exit now */
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 if (interpreter_mode == ACPI_IMODE_EXECUTE) {
Len Brown4be44fc2005-08-05 00:44:28 -0400384 ACPI_DEBUG_PRINT((ACPI_DB_NAMES,
385 "%4.4s Not found in %p [Not adding]\n",
Bob Mooredefba1d2005-12-16 17:05:00 -0500386 ACPI_CAST_PTR(char, &target_name), node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Len Brown4be44fc2005-08-05 00:44:28 -0400388 return_ACPI_STATUS(AE_NOT_FOUND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
390
391 /* Create the new named object */
392
Len Brown4be44fc2005-08-05 00:44:28 -0400393 new_node = acpi_ns_create_node(target_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 if (!new_node) {
Len Brown4be44fc2005-08-05 00:44:28 -0400395 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
Bob Moore958dd242006-05-12 17:12:00 -0400397#ifdef ACPI_ASL_COMPILER
Bob Moore41195322006-05-26 16:36:00 -0400398 /*
399 * Node is an object defined by an External() statement
400 */
Bob Moore958dd242006-05-12 17:12:00 -0400401 if (flags & ACPI_NS_EXTERNAL) {
402 new_node->flags |= ANOBJ_IS_EXTERNAL;
403 }
404#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Bob Moored1fdda832007-02-02 19:48:21 +0300406 if (flags & ACPI_NS_TEMPORARY) {
407 new_node->flags |= ANOBJ_TEMPORARY;
408 }
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 /* Install the new object into the parent's list of children */
411
Len Brown4be44fc2005-08-05 00:44:28 -0400412 acpi_ns_install_node(walk_state, node, new_node, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 *return_node = new_node;
Len Brown4be44fc2005-08-05 00:44:28 -0400414 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415}