blob: 7e865639a928746abb4d94039dc771d8d40245fa [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
Bob Mooree4c1ebf2009-04-22 13:02:06 +080048#ifdef ACPI_ASL_COMPILER
49#include "amlcode.h"
50#endif
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define _COMPONENT ACPI_NAMESPACE
Len Brown4be44fc2005-08-05 00:44:28 -040053ACPI_MODULE_NAME("nssearch")
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Robert Moore44f6c012005-04-18 22:49:35 -040055/* Local prototypes */
Robert Moore44f6c012005-04-18 22:49:35 -040056static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040057acpi_ns_search_parent_tree(u32 target_name,
58 struct acpi_namespace_node *node,
59 acpi_object_type type,
60 struct acpi_namespace_node **return_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62/*******************************************************************************
63 *
Bob Moore41195322006-05-26 16:36:00 -040064 * FUNCTION: acpi_ns_search_one_scope
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 *
Robert Moore44f6c012005-04-18 22:49:35 -040066 * PARAMETERS: target_name - Ascii ACPI name to search for
Bob Moore41195322006-05-26 16:36:00 -040067 * parent_node - Starting node where search will begin
Robert Moore44f6c012005-04-18 22:49:35 -040068 * Type - Object type to match
69 * return_node - Where the matched Named obj is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 *
71 * RETURN: Status
72 *
Bob Moore41195322006-05-26 16:36:00 -040073 * DESCRIPTION: Search a single level of the namespace. Performs a
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 * simple search of the specified level, and does not add
75 * entries or search parents.
76 *
77 *
78 * Named object lists are built (and subsequently dumped) in the
79 * order in which the names are encountered during the namespace load;
80 *
81 * All namespace searching is linear in this implementation, but
82 * could be easily modified to support any improved search
Bob Moore41195322006-05-26 16:36:00 -040083 * algorithm. However, the linear search was chosen for simplicity
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 * and because the trees are small and the other interpreter
85 * execution overhead is relatively high.
86 *
Bob Moore41195322006-05-26 16:36:00 -040087 * Note: CPU execution analysis has shown that the AML interpreter spends
88 * a very small percentage of its time searching the namespace. Therefore,
89 * the linear search seems to be sufficient, as there would seem to be
90 * little value in improving the search.
91 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 ******************************************************************************/
93
94acpi_status
Bob Moore41195322006-05-26 16:36:00 -040095acpi_ns_search_one_scope(u32 target_name,
96 struct acpi_namespace_node *parent_node,
97 acpi_object_type type,
98 struct acpi_namespace_node **return_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Bob Moore41195322006-05-26 16:36:00 -0400100 struct acpi_namespace_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Bob Moore41195322006-05-26 16:36:00 -0400102 ACPI_FUNCTION_TRACE(ns_search_one_scope);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104#ifdef ACPI_DEBUG_OUTPUT
105 if (ACPI_LV_NAMES & acpi_dbg_level) {
Len Brown4be44fc2005-08-05 00:44:28 -0400106 char *scope_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Bob Moore41195322006-05-26 16:36:00 -0400108 scope_name = acpi_ns_get_external_pathname(parent_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 if (scope_name) {
Len Brown4be44fc2005-08-05 00:44:28 -0400110 ACPI_DEBUG_PRINT((ACPI_DB_NAMES,
111 "Searching %s (%p) For [%4.4s] (%s)\n",
Bob Moore41195322006-05-26 16:36:00 -0400112 scope_name, parent_node,
113 ACPI_CAST_PTR(char, &target_name),
Len Brown4be44fc2005-08-05 00:44:28 -0400114 acpi_ut_get_type_name(type)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Bob Moore83135242006-10-03 00:00:00 -0400116 ACPI_FREE(scope_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
118 }
119#endif
120
121 /*
122 * Search for name at this namespace level, which is to say that we
123 * must search for the name among the children of this object
124 */
Bob Moore41195322006-05-26 16:36:00 -0400125 node = parent_node->child;
126 while (node) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 /* Check for match against the name */
129
Bob Moore41195322006-05-26 16:36:00 -0400130 if (node->name.integer == target_name) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 /* Resolve a control method alias if any */
133
Bob Moore41195322006-05-26 16:36:00 -0400134 if (acpi_ns_get_type(node) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400135 ACPI_TYPE_LOCAL_METHOD_ALIAS) {
Bob Moore41195322006-05-26 16:36:00 -0400136 node =
Len Brown4be44fc2005-08-05 00:44:28 -0400137 ACPI_CAST_PTR(struct acpi_namespace_node,
Bob Moore41195322006-05-26 16:36:00 -0400138 node->object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 }
140
Bob Moore793c2382006-03-31 00:00:00 -0500141 /* Found matching entry */
142
Len Brown4be44fc2005-08-05 00:44:28 -0400143 ACPI_DEBUG_PRINT((ACPI_DB_NAMES,
144 "Name [%4.4s] (%s) %p found in scope [%4.4s] %p\n",
Bob Mooredefba1d2005-12-16 17:05:00 -0500145 ACPI_CAST_PTR(char, &target_name),
Bob Moore41195322006-05-26 16:36:00 -0400146 acpi_ut_get_type_name(node->type),
147 node,
148 acpi_ut_get_node_name(parent_node),
149 parent_node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Bob Moore41195322006-05-26 16:36:00 -0400151 *return_node = node;
Len Brown4be44fc2005-08-05 00:44:28 -0400152 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 }
154
155 /*
156 * The last entry in the list points back to the parent,
157 * so a flag is used to indicate the end-of-list
158 */
Bob Moore41195322006-05-26 16:36:00 -0400159 if (node->flags & ANOBJ_END_OF_PEER_LIST) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 /* Searched entire list, we are done */
162
163 break;
164 }
165
166 /* Didn't match name, move on to the next peer object */
167
Bob Moore41195322006-05-26 16:36:00 -0400168 node = node->peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 }
170
171 /* Searched entire namespace level, not found */
172
Len Brown4be44fc2005-08-05 00:44:28 -0400173 ACPI_DEBUG_PRINT((ACPI_DB_NAMES,
Bob Moored4913dc2009-03-06 10:05:18 +0800174 "Name [%4.4s] (%s) not found in search in scope [%4.4s] "
175 "%p first child %p\n",
Bob Mooredefba1d2005-12-16 17:05:00 -0500176 ACPI_CAST_PTR(char, &target_name),
177 acpi_ut_get_type_name(type),
Bob Moore41195322006-05-26 16:36:00 -0400178 acpi_ut_get_node_name(parent_node), parent_node,
179 parent_node->child));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Len Brown4be44fc2005-08-05 00:44:28 -0400181 return_ACPI_STATUS(AE_NOT_FOUND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184/*******************************************************************************
185 *
186 * FUNCTION: acpi_ns_search_parent_tree
187 *
Robert Moore44f6c012005-04-18 22:49:35 -0400188 * PARAMETERS: target_name - Ascii ACPI name to search for
189 * Node - Starting node where search will begin
190 * Type - Object type to match
191 * return_node - Where the matched Node is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 *
193 * RETURN: Status
194 *
195 * DESCRIPTION: Called when a name has not been found in the current namespace
Bob Moore41195322006-05-26 16:36:00 -0400196 * level. Before adding it or giving up, ACPI scope rules require
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 * searching enclosing scopes in cases identified by acpi_ns_local().
198 *
199 * "A name is located by finding the matching name in the current
200 * name space, and then in the parent name space. If the parent
201 * name space does not contain the name, the search continues
202 * recursively until either the name is found or the name space
Bob Moore41195322006-05-26 16:36:00 -0400203 * does not have a parent (the root of the name space). This
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 * indicates that the name is not found" (From ACPI Specification,
205 * section 5.3)
206 *
207 ******************************************************************************/
208
209static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400210acpi_ns_search_parent_tree(u32 target_name,
211 struct acpi_namespace_node *node,
212 acpi_object_type type,
213 struct acpi_namespace_node **return_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Len Brown4be44fc2005-08-05 00:44:28 -0400215 acpi_status status;
216 struct acpi_namespace_node *parent_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Bob Mooreb229cf92006-04-21 17:15:00 -0400218 ACPI_FUNCTION_TRACE(ns_search_parent_tree);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Len Brown4be44fc2005-08-05 00:44:28 -0400220 parent_node = acpi_ns_get_parent_node(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 /*
223 * If there is no parent (i.e., we are at the root) or type is "local",
224 * we won't be searching the parent tree.
225 */
226 if (!parent_node) {
Len Brown4be44fc2005-08-05 00:44:28 -0400227 ACPI_DEBUG_PRINT((ACPI_DB_NAMES, "[%4.4s] has no parent\n",
Bob Mooredefba1d2005-12-16 17:05:00 -0500228 ACPI_CAST_PTR(char, &target_name)));
Len Brown4be44fc2005-08-05 00:44:28 -0400229 return_ACPI_STATUS(AE_NOT_FOUND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 }
231
Len Brown4be44fc2005-08-05 00:44:28 -0400232 if (acpi_ns_local(type)) {
233 ACPI_DEBUG_PRINT((ACPI_DB_NAMES,
234 "[%4.4s] type [%s] must be local to this scope (no parent search)\n",
Bob Mooredefba1d2005-12-16 17:05:00 -0500235 ACPI_CAST_PTR(char, &target_name),
Len Brown4be44fc2005-08-05 00:44:28 -0400236 acpi_ut_get_type_name(type)));
237 return_ACPI_STATUS(AE_NOT_FOUND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
239
240 /* Search the parent tree */
241
Len Brown4be44fc2005-08-05 00:44:28 -0400242 ACPI_DEBUG_PRINT((ACPI_DB_NAMES,
243 "Searching parent [%4.4s] for [%4.4s]\n",
244 acpi_ut_get_node_name(parent_node),
Bob Mooredefba1d2005-12-16 17:05:00 -0500245 ACPI_CAST_PTR(char, &target_name)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Bob Moored4913dc2009-03-06 10:05:18 +0800247 /* Search parents until target is found or we have backed up to the root */
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 while (parent_node) {
250 /*
Bob Moore41195322006-05-26 16:36:00 -0400251 * Search parent scope. Use TYPE_ANY because we don't care about the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 * object type at this point, we only care about the existence of
Bob Moore41195322006-05-26 16:36:00 -0400253 * the actual name we are searching for. Typechecking comes later.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 */
Bob Moore41195322006-05-26 16:36:00 -0400255 status =
256 acpi_ns_search_one_scope(target_name, parent_node,
Len Brown4be44fc2005-08-05 00:44:28 -0400257 ACPI_TYPE_ANY, return_node);
258 if (ACPI_SUCCESS(status)) {
259 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 }
261
Bob Moore793c2382006-03-31 00:00:00 -0500262 /* Not found here, go up another level (until we reach the root) */
263
Len Brown4be44fc2005-08-05 00:44:28 -0400264 parent_node = acpi_ns_get_parent_node(parent_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
266
267 /* Not found in parent tree */
268
Len Brown4be44fc2005-08-05 00:44:28 -0400269 return_ACPI_STATUS(AE_NOT_FOUND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272/*******************************************************************************
273 *
274 * FUNCTION: acpi_ns_search_and_enter
275 *
276 * PARAMETERS: target_name - Ascii ACPI name to search for (4 chars)
277 * walk_state - Current state of the walk
Robert Moore44f6c012005-04-18 22:49:35 -0400278 * Node - Starting node where search will begin
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 * interpreter_mode - Add names only in ACPI_MODE_LOAD_PASS_x.
280 * Otherwise,search only.
281 * Type - Object type to match
282 * Flags - Flags describing the search restrictions
Robert Moore44f6c012005-04-18 22:49:35 -0400283 * return_node - Where the Node is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 *
285 * RETURN: Status
286 *
287 * DESCRIPTION: Search for a name segment in a single namespace level,
Bob Moore41195322006-05-26 16:36:00 -0400288 * optionally adding it if it is not found. If the passed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 * Type is not Any and the type previously stored in the
290 * entry was Any (i.e. unknown), update the stored type.
291 *
292 * In ACPI_IMODE_EXECUTE, search only.
293 * In other modes, search and add if not found.
294 *
295 ******************************************************************************/
296
297acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400298acpi_ns_search_and_enter(u32 target_name,
299 struct acpi_walk_state *walk_state,
300 struct acpi_namespace_node *node,
301 acpi_interpreter_mode interpreter_mode,
302 acpi_object_type type,
303 u32 flags, struct acpi_namespace_node **return_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Len Brown4be44fc2005-08-05 00:44:28 -0400305 acpi_status status;
306 struct acpi_namespace_node *new_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Bob Mooreb229cf92006-04-21 17:15:00 -0400308 ACPI_FUNCTION_TRACE(ns_search_and_enter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 /* Parameter validation */
311
312 if (!node || !target_name || !return_node) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500313 ACPI_ERROR((AE_INFO,
Bob Moore958dd242006-05-12 17:12:00 -0400314 "Null parameter: Node %p Name %X ReturnNode %p",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500315 node, target_name, return_node));
Len Brown4be44fc2005-08-05 00:44:28 -0400316 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
318
Bob Moore793c2382006-03-31 00:00:00 -0500319 /*
320 * Name must consist of valid ACPI characters. We will repair the name if
321 * necessary because we don't want to abort because of this, but we want
322 * all namespace names to be printable. A warning message is appropriate.
323 *
324 * This issue came up because there are in fact machines that exhibit
325 * this problem, and we want to be able to enable ACPI support for them,
326 * even though there are a few bad names.
327 */
Len Brown4be44fc2005-08-05 00:44:28 -0400328 if (!acpi_ut_valid_acpi_name(target_name)) {
Bob Moore3d81b232007-02-02 19:48:19 +0300329 target_name =
330 acpi_ut_repair_name(ACPI_CAST_PTR(char, &target_name));
Bob Moore793c2382006-03-31 00:00:00 -0500331
332 /* Report warning only if in strict mode or debug mode */
333
334 if (!acpi_gbl_enable_interpreter_slack) {
335 ACPI_WARNING((AE_INFO,
336 "Found bad character(s) in name, repaired: [%4.4s]\n",
337 ACPI_CAST_PTR(char, &target_name)));
338 } else {
Bob Moore23d3e052008-09-28 15:00:47 +0800339 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bob Moore793c2382006-03-31 00:00:00 -0500340 "Found bad character(s) in name, repaired: [%4.4s]\n",
341 ACPI_CAST_PTR(char, &target_name)));
342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
344
345 /* Try to find the name in the namespace level specified by the caller */
346
347 *return_node = ACPI_ENTRY_NOT_FOUND;
Bob Moore41195322006-05-26 16:36:00 -0400348 status = acpi_ns_search_one_scope(target_name, node, type, return_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 if (status != AE_NOT_FOUND) {
350 /*
351 * If we found it AND the request specifies that a find is an error,
352 * return the error
353 */
Len Brown4be44fc2005-08-05 00:44:28 -0400354 if ((status == AE_OK) && (flags & ACPI_NS_ERROR_IF_FOUND)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 status = AE_ALREADY_EXISTS;
356 }
357
Bob Moore793c2382006-03-31 00:00:00 -0500358 /* Either found it or there was an error: finished either way */
359
Len Brown4be44fc2005-08-05 00:44:28 -0400360 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
362
363 /*
Bob Moore41195322006-05-26 16:36:00 -0400364 * The name was not found. If we are NOT performing the first pass
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 * (name entry) of loading the namespace, search the parent tree (all the
366 * way to the root if necessary.) We don't want to perform the parent
Bob Moore41195322006-05-26 16:36:00 -0400367 * search when the namespace is actually being loaded. We want to perform
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 * the search when namespace references are being resolved (load pass 2)
369 * and during the execution phase.
370 */
371 if ((interpreter_mode != ACPI_IMODE_LOAD_PASS1) &&
Len Brown4be44fc2005-08-05 00:44:28 -0400372 (flags & ACPI_NS_SEARCH_PARENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 /*
374 * Not found at this level - search parent tree according to the
375 * ACPI specification
376 */
Len Brown4be44fc2005-08-05 00:44:28 -0400377 status =
378 acpi_ns_search_parent_tree(target_name, node, type,
379 return_node);
380 if (ACPI_SUCCESS(status)) {
381 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383 }
384
Bob Moore793c2382006-03-31 00:00:00 -0500385 /* In execute mode, just search, never add names. Exit now */
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (interpreter_mode == ACPI_IMODE_EXECUTE) {
Len Brown4be44fc2005-08-05 00:44:28 -0400388 ACPI_DEBUG_PRINT((ACPI_DB_NAMES,
389 "%4.4s Not found in %p [Not adding]\n",
Bob Mooredefba1d2005-12-16 17:05:00 -0500390 ACPI_CAST_PTR(char, &target_name), node));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Len Brown4be44fc2005-08-05 00:44:28 -0400392 return_ACPI_STATUS(AE_NOT_FOUND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 }
394
395 /* Create the new named object */
396
Len Brown4be44fc2005-08-05 00:44:28 -0400397 new_node = acpi_ns_create_node(target_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 if (!new_node) {
Len Brown4be44fc2005-08-05 00:44:28 -0400399 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
Bob Moore958dd242006-05-12 17:12:00 -0400401#ifdef ACPI_ASL_COMPILER
Bob Moored4913dc2009-03-06 10:05:18 +0800402
403 /* Node is an object defined by an External() statement */
404
Bob Moore958dd242006-05-12 17:12:00 -0400405 if (flags & ACPI_NS_EXTERNAL) {
406 new_node->flags |= ANOBJ_IS_EXTERNAL;
407 }
408#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Bob Moored1fdda82007-02-02 19:48:21 +0300410 if (flags & ACPI_NS_TEMPORARY) {
411 new_node->flags |= ANOBJ_TEMPORARY;
412 }
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 /* Install the new object into the parent's list of children */
415
Len Brown4be44fc2005-08-05 00:44:28 -0400416 acpi_ns_install_node(walk_state, node, new_node, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 *return_node = new_node;
Len Brown4be44fc2005-08-05 00:44:28 -0400418 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}