1 /******************************************************************************
3 * Module Name: nsutils - Utilities for accessing ACPI namespace, accessing
4 * parents and siblings and Scope manipulation
6 *****************************************************************************/
9 * Copyright (C) 2000 - 2005, R. Byron Moore
10 * All rights reserved.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.
18 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
19 * substantially similar to the "NO WARRANTY" disclaimer below
20 * ("Disclaimer") and any redistribution must be conditioned upon
21 * including a substantially similar Disclaimer requirement for further
22 * binary redistribution.
23 * 3. Neither the names of the above-listed copyright holders nor the names
24 * of any contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
27 * Alternatively, this software may be distributed under the terms of the
28 * GNU General Public License ("GPL") version 2 as published by the Free
29 * Software Foundation.
32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
34 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
35 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
41 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42 * POSSIBILITY OF SUCH DAMAGES.
46 #include <acpi/acpi.h>
47 #include <acpi/acnamesp.h>
48 #include <acpi/amlcode.h>
49 #include <acpi/actables.h>
51 #define _COMPONENT ACPI_NAMESPACE
52 ACPI_MODULE_NAME ("nsutils")
55 /*******************************************************************************
57 * FUNCTION: acpi_ns_report_error
59 * PARAMETERS: module_name - Caller's module name (for error output)
60 * line_number - Caller's line number (for error output)
61 * component_id - Caller's component ID (for error output)
62 * Message - Error message to use on failure
66 * DESCRIPTION: Print warning message with full pathname
68 ******************************************************************************/
71 acpi_ns_report_error (
76 acpi_status lookup_status)
82 acpi_os_printf ("%8s-%04d: *** Error: Looking up ",
83 module_name, line_number);
85 if (lookup_status == AE_BAD_CHARACTER) {
86 /* There is a non-ascii character in the name */
88 acpi_os_printf ("[0x%4.4X] (NON-ASCII)\n",
89 *(ACPI_CAST_PTR (u32, internal_name)));
92 /* Convert path to external format */
94 status = acpi_ns_externalize_name (ACPI_UINT32_MAX,
95 internal_name, NULL, &name);
97 /* Print target name */
99 if (ACPI_SUCCESS (status)) {
100 acpi_os_printf ("[%s]", name);
103 acpi_os_printf ("[COULD NOT EXTERNALIZE NAME]");
107 ACPI_MEM_FREE (name);
111 acpi_os_printf (" in namespace, %s\n",
112 acpi_format_exception (lookup_status));
116 /*******************************************************************************
118 * FUNCTION: acpi_ns_report_method_error
120 * PARAMETERS: module_name - Caller's module name (for error output)
121 * line_number - Caller's line number (for error output)
122 * component_id - Caller's component ID (for error output)
123 * Message - Error message to use on failure
127 * DESCRIPTION: Print warning message with full pathname
129 ******************************************************************************/
132 acpi_ns_report_method_error (
137 struct acpi_namespace_node *prefix_node,
139 acpi_status method_status)
142 struct acpi_namespace_node *node = prefix_node;
146 status = acpi_ns_get_node_by_path (path, prefix_node,
147 ACPI_NS_NO_UPSEARCH, &node);
148 if (ACPI_FAILURE (status)) {
149 acpi_os_printf ("report_method_error: Could not get node\n");
154 acpi_os_printf ("%8s-%04d: *** Error: ", module_name, line_number);
155 acpi_ns_print_node_pathname (node, message);
156 acpi_os_printf (", %s\n", acpi_format_exception (method_status));
160 /*******************************************************************************
162 * FUNCTION: acpi_ns_print_node_pathname
164 * PARAMETERS: Node - Object
165 * Msg - Prefix message
167 * DESCRIPTION: Print an object's full namespace pathname
168 * Manages allocation/freeing of a pathname buffer
170 ******************************************************************************/
173 acpi_ns_print_node_pathname (
174 struct acpi_namespace_node *node,
177 struct acpi_buffer buffer;
182 acpi_os_printf ("[NULL NAME]");
186 /* Convert handle to full pathname and print it (with supplied message) */
188 buffer.length = ACPI_ALLOCATE_LOCAL_BUFFER;
190 status = acpi_ns_handle_to_pathname (node, &buffer);
191 if (ACPI_SUCCESS (status)) {
193 acpi_os_printf ("%s ", msg);
196 acpi_os_printf ("[%s] (Node %p)", (char *) buffer.pointer, node);
197 ACPI_MEM_FREE (buffer.pointer);
202 /*******************************************************************************
204 * FUNCTION: acpi_ns_valid_root_prefix
206 * PARAMETERS: Prefix - Character to be checked
208 * RETURN: TRUE if a valid prefix
210 * DESCRIPTION: Check if a character is a valid ACPI Root prefix
212 ******************************************************************************/
215 acpi_ns_valid_root_prefix (
219 return ((u8) (prefix == '\\'));
223 /*******************************************************************************
225 * FUNCTION: acpi_ns_valid_path_separator
227 * PARAMETERS: Sep - Character to be checked
229 * RETURN: TRUE if a valid path separator
231 * DESCRIPTION: Check if a character is a valid ACPI path separator
233 ******************************************************************************/
236 acpi_ns_valid_path_separator (
240 return ((u8) (sep == '.'));
244 /*******************************************************************************
246 * FUNCTION: acpi_ns_get_type
248 * PARAMETERS: Handle - Parent Node to be examined
250 * RETURN: Type field from Node whose handle is passed
252 ******************************************************************************/
256 struct acpi_namespace_node *node)
258 ACPI_FUNCTION_TRACE ("ns_get_type");
262 ACPI_REPORT_WARNING (("ns_get_type: Null Node input pointer\n"));
263 return_VALUE (ACPI_TYPE_ANY);
266 return_VALUE ((acpi_object_type) node->type);
270 /*******************************************************************************
272 * FUNCTION: acpi_ns_local
274 * PARAMETERS: Type - A namespace object type
276 * RETURN: LOCAL if names must be found locally in objects of the
277 * passed type, 0 if enclosing scopes should be searched
279 ******************************************************************************/
283 acpi_object_type type)
285 ACPI_FUNCTION_TRACE ("ns_local");
288 if (!acpi_ut_valid_object_type (type)) {
289 /* Type code out of range */
291 ACPI_REPORT_WARNING (("ns_local: Invalid Object Type\n"));
292 return_VALUE (ACPI_NS_NORMAL);
295 return_VALUE ((u32) acpi_gbl_ns_properties[type] & ACPI_NS_LOCAL);
299 /*******************************************************************************
301 * FUNCTION: acpi_ns_get_internal_name_length
303 * PARAMETERS: Info - Info struct initialized with the
304 * external name pointer.
308 * DESCRIPTION: Calculate the length of the internal (AML) namestring
309 * corresponding to the external (ASL) namestring.
311 ******************************************************************************/
314 acpi_ns_get_internal_name_length (
315 struct acpi_namestring_info *info)
317 char *next_external_char;
321 ACPI_FUNCTION_ENTRY ();
324 next_external_char = info->external_name;
325 info->num_carats = 0;
326 info->num_segments = 0;
327 info->fully_qualified = FALSE;
330 * For the internal name, the required length is 4 bytes per segment, plus
331 * 1 each for root_prefix, multi_name_prefix_op, segment count, trailing null
332 * (which is not really needed, but no there's harm in putting it there)
334 * strlen() + 1 covers the first name_seg, which has no path separator
336 if (acpi_ns_valid_root_prefix (next_external_char[0])) {
337 info->fully_qualified = TRUE;
338 next_external_char++;
342 * Handle Carat prefixes
344 while (*next_external_char == '^') {
346 next_external_char++;
351 * Determine the number of ACPI name "segments" by counting the number of
352 * path separators within the string. Start with one segment since the
353 * segment count is [(# separators) + 1], and zero separators is ok.
355 if (*next_external_char) {
356 info->num_segments = 1;
357 for (i = 0; next_external_char[i]; i++) {
358 if (acpi_ns_valid_path_separator (next_external_char[i])) {
359 info->num_segments++;
364 info->length = (ACPI_NAME_SIZE * info->num_segments) +
365 4 + info->num_carats;
367 info->next_external_char = next_external_char;
371 /*******************************************************************************
373 * FUNCTION: acpi_ns_build_internal_name
375 * PARAMETERS: Info - Info struct fully initialized
379 * DESCRIPTION: Construct the internal (AML) namestring
380 * corresponding to the external (ASL) namestring.
382 ******************************************************************************/
385 acpi_ns_build_internal_name (
386 struct acpi_namestring_info *info)
388 u32 num_segments = info->num_segments;
389 char *internal_name = info->internal_name;
390 char *external_name = info->next_external_char;
395 ACPI_FUNCTION_TRACE ("ns_build_internal_name");
398 /* Setup the correct prefixes, counts, and pointers */
400 if (info->fully_qualified) {
401 internal_name[0] = '\\';
403 if (num_segments <= 1) {
404 result = &internal_name[1];
406 else if (num_segments == 2) {
407 internal_name[1] = AML_DUAL_NAME_PREFIX;
408 result = &internal_name[2];
411 internal_name[1] = AML_MULTI_NAME_PREFIX_OP;
412 internal_name[2] = (char) num_segments;
413 result = &internal_name[3];
418 * Not fully qualified.
419 * Handle Carats first, then append the name segments
422 if (info->num_carats) {
423 for (i = 0; i < info->num_carats; i++) {
424 internal_name[i] = '^';
428 if (num_segments <= 1) {
429 result = &internal_name[i];
431 else if (num_segments == 2) {
432 internal_name[i] = AML_DUAL_NAME_PREFIX;
433 result = &internal_name[(acpi_native_uint) (i+1)];
436 internal_name[i] = AML_MULTI_NAME_PREFIX_OP;
437 internal_name[(acpi_native_uint) (i+1)] = (char) num_segments;
438 result = &internal_name[(acpi_native_uint) (i+2)];
442 /* Build the name (minus path separators) */
444 for (; num_segments; num_segments--) {
445 for (i = 0; i < ACPI_NAME_SIZE; i++) {
446 if (acpi_ns_valid_path_separator (*external_name) ||
447 (*external_name == 0)) {
448 /* Pad the segment with underscore(s) if segment is short */
453 /* Convert the character to uppercase and save it */
455 result[i] = (char) ACPI_TOUPPER ((int) *external_name);
460 /* Now we must have a path separator, or the pathname is bad */
462 if (!acpi_ns_valid_path_separator (*external_name) &&
463 (*external_name != 0)) {
464 return_ACPI_STATUS (AE_BAD_PARAMETER);
467 /* Move on the next segment */
470 result += ACPI_NAME_SIZE;
473 /* Terminate the string */
477 if (info->fully_qualified) {
478 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Returning [%p] (abs) \"\\%s\"\n",
479 internal_name, internal_name));
482 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Returning [%p] (rel) \"%s\"\n",
483 internal_name, internal_name));
486 return_ACPI_STATUS (AE_OK);
490 /*******************************************************************************
492 * FUNCTION: acpi_ns_internalize_name
494 * PARAMETERS: *external_name - External representation of name
495 * **Converted Name - Where to return the resulting
496 * internal represention of the name
500 * DESCRIPTION: Convert an external representation (e.g. "\_PR_.CPU0")
501 * to internal form (e.g. 5c 2f 02 5f 50 52 5f 43 50 55 30)
503 *******************************************************************************/
506 acpi_ns_internalize_name (
508 char **converted_name)
511 struct acpi_namestring_info info;
515 ACPI_FUNCTION_TRACE ("ns_internalize_name");
518 if ((!external_name) ||
519 (*external_name == 0) ||
521 return_ACPI_STATUS (AE_BAD_PARAMETER);
524 /* Get the length of the new internal name */
526 info.external_name = external_name;
527 acpi_ns_get_internal_name_length (&info);
529 /* We need a segment to store the internal name */
531 internal_name = ACPI_MEM_CALLOCATE (info.length);
532 if (!internal_name) {
533 return_ACPI_STATUS (AE_NO_MEMORY);
538 info.internal_name = internal_name;
539 status = acpi_ns_build_internal_name (&info);
540 if (ACPI_FAILURE (status)) {
541 ACPI_MEM_FREE (internal_name);
542 return_ACPI_STATUS (status);
545 *converted_name = internal_name;
546 return_ACPI_STATUS (AE_OK);
550 /*******************************************************************************
552 * FUNCTION: acpi_ns_externalize_name
554 * PARAMETERS: *internal_name - Internal representation of name
555 * **converted_name - Where to return the resulting
556 * external representation of name
560 * DESCRIPTION: Convert internal name (e.g. 5c 2f 02 5f 50 52 5f 43 50 55 30)
561 * to its external form (e.g. "\_PR_.CPU0")
563 ******************************************************************************/
566 acpi_ns_externalize_name (
567 u32 internal_name_length,
569 u32 *converted_name_length,
570 char **converted_name)
572 acpi_native_uint names_index = 0;
573 acpi_native_uint num_segments = 0;
574 acpi_native_uint required_length;
575 acpi_native_uint prefix_length = 0;
576 acpi_native_uint i = 0;
577 acpi_native_uint j = 0;
580 ACPI_FUNCTION_TRACE ("ns_externalize_name");
583 if (!internal_name_length ||
586 return_ACPI_STATUS (AE_BAD_PARAMETER);
590 * Check for a prefix (one '\' | one or more '^').
592 switch (internal_name[0]) {
598 for (i = 0; i < internal_name_length; i++) {
599 if (internal_name[i] == '^') {
600 prefix_length = i + 1;
607 if (i == internal_name_length) {
618 * Check for object names. Note that there could be 0-255 of these
621 if (prefix_length < internal_name_length) {
622 switch (internal_name[prefix_length]) {
623 case AML_MULTI_NAME_PREFIX_OP:
625 /* <count> 4-byte names */
627 names_index = prefix_length + 2;
628 num_segments = (acpi_native_uint) (u8)
629 internal_name[(acpi_native_uint) (prefix_length + 1)];
632 case AML_DUAL_NAME_PREFIX:
634 /* Two 4-byte names */
636 names_index = prefix_length + 1;
650 /* one 4-byte name */
652 names_index = prefix_length;
659 * Calculate the length of converted_name, which equals the length
660 * of the prefix, length of all object names, length of any required
661 * punctuation ('.') between object names, plus the NULL terminator.
663 required_length = prefix_length + (4 * num_segments) +
664 ((num_segments > 0) ? (num_segments - 1) : 0) + 1;
667 * Check to see if we're still in bounds. If not, there's a problem
668 * with internal_name (invalid format).
670 if (required_length > internal_name_length) {
671 ACPI_REPORT_ERROR (("ns_externalize_name: Invalid internal name\n"));
672 return_ACPI_STATUS (AE_BAD_PATHNAME);
676 * Build converted_name
678 *converted_name = ACPI_MEM_CALLOCATE (required_length);
679 if (!(*converted_name)) {
680 return_ACPI_STATUS (AE_NO_MEMORY);
685 for (i = 0; i < prefix_length; i++) {
686 (*converted_name)[j++] = internal_name[i];
689 if (num_segments > 0) {
690 for (i = 0; i < num_segments; i++) {
692 (*converted_name)[j++] = '.';
695 (*converted_name)[j++] = internal_name[names_index++];
696 (*converted_name)[j++] = internal_name[names_index++];
697 (*converted_name)[j++] = internal_name[names_index++];
698 (*converted_name)[j++] = internal_name[names_index++];
702 if (converted_name_length) {
703 *converted_name_length = (u32) required_length;
706 return_ACPI_STATUS (AE_OK);
710 /*******************************************************************************
712 * FUNCTION: acpi_ns_map_handle_to_node
714 * PARAMETERS: Handle - Handle to be converted to an Node
716 * RETURN: A Name table entry pointer
718 * DESCRIPTION: Convert a namespace handle to a real Node
720 * Note: Real integer handles allow for more verification
721 * and keep all pointers within this subsystem.
723 ******************************************************************************/
725 struct acpi_namespace_node *
726 acpi_ns_map_handle_to_node (
730 ACPI_FUNCTION_ENTRY ();
734 * Simple implementation.
740 if (handle == ACPI_ROOT_OBJECT) {
741 return (acpi_gbl_root_node);
744 /* We can at least attempt to verify the handle */
746 if (ACPI_GET_DESCRIPTOR_TYPE (handle) != ACPI_DESC_TYPE_NAMED) {
750 return ((struct acpi_namespace_node *) handle);
754 /*******************************************************************************
756 * FUNCTION: acpi_ns_convert_entry_to_handle
758 * PARAMETERS: Node - Node to be converted to a Handle
760 * RETURN: A user handle
762 * DESCRIPTION: Convert a real Node to a namespace handle
764 ******************************************************************************/
767 acpi_ns_convert_entry_to_handle (
768 struct acpi_namespace_node *node)
773 * Simple implementation for now;
775 return ((acpi_handle) node);
778 /* ---------------------------------------------------
785 if (Node == acpi_gbl_root_node)
787 return (ACPI_ROOT_OBJECT);
791 return ((acpi_handle) Node);
792 ------------------------------------------------------*/
796 /*******************************************************************************
798 * FUNCTION: acpi_ns_terminate
804 * DESCRIPTION: free memory allocated for table storage.
806 ******************************************************************************/
809 acpi_ns_terminate (void)
811 union acpi_operand_object *obj_desc;
814 ACPI_FUNCTION_TRACE ("ns_terminate");
818 * 1) Free the entire namespace -- all nodes and objects
820 * Delete all object descriptors attached to namepsace nodes
822 acpi_ns_delete_namespace_subtree (acpi_gbl_root_node);
824 /* Detach any objects attached to the root */
826 obj_desc = acpi_ns_get_attached_object (acpi_gbl_root_node);
828 acpi_ns_detach_object (acpi_gbl_root_node);
831 ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "Namespace freed\n"));
834 * 2) Now we can delete the ACPI tables
836 acpi_tb_delete_all_tables ();
837 ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "ACPI Tables freed\n"));
843 /*******************************************************************************
845 * FUNCTION: acpi_ns_opens_scope
847 * PARAMETERS: Type - A valid namespace type
849 * RETURN: NEWSCOPE if the passed type "opens a name scope" according
850 * to the ACPI specification, else 0
852 ******************************************************************************/
855 acpi_ns_opens_scope (
856 acpi_object_type type)
858 ACPI_FUNCTION_TRACE_STR ("ns_opens_scope", acpi_ut_get_type_name (type));
861 if (!acpi_ut_valid_object_type (type)) {
862 /* type code out of range */
864 ACPI_REPORT_WARNING (("ns_opens_scope: Invalid Object Type %X\n", type));
865 return_VALUE (ACPI_NS_NORMAL);
868 return_VALUE (((u32) acpi_gbl_ns_properties[type]) & ACPI_NS_NEWSCOPE);
872 /*******************************************************************************
874 * FUNCTION: acpi_ns_get_node_by_path
876 * PARAMETERS: *Pathname - Name to be found, in external (ASL) format. The
877 * \ (backslash) and ^ (carat) prefixes, and the
878 * . (period) to separate segments are supported.
879 * start_node - Root of subtree to be searched, or NS_ALL for the
880 * root of the name space. If Name is fully
881 * qualified (first s8 is '\'), the passed value
882 * of Scope will not be accessed.
883 * Flags - Used to indicate whether to perform upsearch or
885 * return_node - Where the Node is returned
887 * DESCRIPTION: Look up a name relative to a given scope and return the
888 * corresponding Node. NOTE: Scope can be null.
890 * MUTEX: Locks namespace
892 ******************************************************************************/
895 acpi_ns_get_node_by_path (
897 struct acpi_namespace_node *start_node,
899 struct acpi_namespace_node **return_node)
901 union acpi_generic_state scope_info;
903 char *internal_path = NULL;
906 ACPI_FUNCTION_TRACE_PTR ("ns_get_node_by_path", pathname);
910 /* Convert path to internal representation */
912 status = acpi_ns_internalize_name (pathname, &internal_path);
913 if (ACPI_FAILURE (status)) {
914 return_ACPI_STATUS (status);
918 /* Must lock namespace during lookup */
920 status = acpi_ut_acquire_mutex (ACPI_MTX_NAMESPACE);
921 if (ACPI_FAILURE (status)) {
925 /* Setup lookup scope (search starting point) */
927 scope_info.scope.node = start_node;
929 /* Lookup the name in the namespace */
931 status = acpi_ns_lookup (&scope_info, internal_path,
932 ACPI_TYPE_ANY, ACPI_IMODE_EXECUTE,
933 (flags | ACPI_NS_DONT_OPEN_SCOPE),
935 if (ACPI_FAILURE (status)) {
936 ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "%s, %s\n",
937 internal_path, acpi_format_exception (status)));
940 (void) acpi_ut_release_mutex (ACPI_MTX_NAMESPACE);
945 ACPI_MEM_FREE (internal_path);
947 return_ACPI_STATUS (status);
951 /*******************************************************************************
953 * FUNCTION: acpi_ns_find_parent_name
955 * PARAMETERS: *child_node - Named Obj whose name is to be found
957 * RETURN: The ACPI name
959 * DESCRIPTION: Search for the given obj in its parent scope and return the
960 * name segment, or "????" if the parent name can't be found
961 * (which "should not happen").
963 ******************************************************************************/
964 #ifdef ACPI_FUTURE_USAGE
966 acpi_ns_find_parent_name (
967 struct acpi_namespace_node *child_node)
969 struct acpi_namespace_node *parent_node;
972 ACPI_FUNCTION_TRACE ("ns_find_parent_name");
976 /* Valid entry. Get the parent Node */
978 parent_node = acpi_ns_get_parent_node (child_node);
980 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC,
981 "Parent of %p [%4.4s] is %p [%4.4s]\n",
982 child_node, acpi_ut_get_node_name (child_node),
983 parent_node, acpi_ut_get_node_name (parent_node)));
985 if (parent_node->name.integer) {
986 return_VALUE ((acpi_name) parent_node->name.integer);
990 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC,
991 "Unable to find parent of %p (%4.4s)\n",
992 child_node, acpi_ut_get_node_name (child_node)));
995 return_VALUE (ACPI_UNKNOWN_NAME);
1000 /*******************************************************************************
1002 * FUNCTION: acpi_ns_get_parent_node
1004 * PARAMETERS: Node - Current table entry
1006 * RETURN: Parent entry of the given entry
1008 * DESCRIPTION: Obtain the parent entry for a given entry in the namespace.
1010 ******************************************************************************/
1013 struct acpi_namespace_node *
1014 acpi_ns_get_parent_node (
1015 struct acpi_namespace_node *node)
1017 ACPI_FUNCTION_ENTRY ();
1025 * Walk to the end of this peer list. The last entry is marked with a flag
1026 * and the peer pointer is really a pointer back to the parent. This saves
1027 * putting a parent back pointer in each and every named object!
1029 while (!(node->flags & ANOBJ_END_OF_PEER_LIST)) {
1034 return (node->peer);
1038 /*******************************************************************************
1040 * FUNCTION: acpi_ns_get_next_valid_node
1042 * PARAMETERS: Node - Current table entry
1044 * RETURN: Next valid Node in the linked node list. NULL if no more valid
1047 * DESCRIPTION: Find the next valid node within a name table.
1048 * Useful for implementing NULL-end-of-list loops.
1050 ******************************************************************************/
1053 struct acpi_namespace_node *
1054 acpi_ns_get_next_valid_node (
1055 struct acpi_namespace_node *node)
1058 /* If we are at the end of this peer list, return NULL */
1060 if (node->flags & ANOBJ_END_OF_PEER_LIST) {
1064 /* Otherwise just return the next peer */
1066 return (node->peer);