checkdirs() was being passed the wrong mount point, resulting in a panic
[dragonfly.git] / sys / contrib / dev / acpica-unix-20050309 / namespace / nsdump.c
bloba7eb63cfbf2ffb4646d9d51b7019ca0b7c5c4c83
1 /******************************************************************************
3 * Module Name: nsdump - table dumping routines for debug
4 * $Revision: 161 $
6 *****************************************************************************/
8 /******************************************************************************
10 * 1. Copyright Notice
12 * Some or all of this work - Copyright (c) 1999 - 2005, Intel Corp.
13 * All rights reserved.
15 * 2. License
17 * 2.1. This is your license from Intel Corp. under its intellectual property
18 * rights. You may have additional license terms from the party that provided
19 * you this software, covering your right to use that party's intellectual
20 * property rights.
22 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
23 * copy of the source code appearing in this file ("Covered Code") an
24 * irrevocable, perpetual, worldwide license under Intel's copyrights in the
25 * base code distributed originally by Intel ("Original Intel Code") to copy,
27 * make derivatives, distribute, use and display any portion of the Covered
28 * Code in any form, with the right to sublicense such rights; and
30 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
31 * license (with the right to sublicense), under only those claims of Intel
32 * patents that are infringed by the Original Intel Code, to make, use, sell,
33 * offer to sell, and import the Covered Code and derivative works thereof
34 * solely to the minimum extent necessary to exercise the above copyright
35 * license, and in no event shall the patent license extend to any additions
36 * to or modifications of the Original Intel Code. No other license or right
37 * is granted directly or by implication, estoppel or otherwise;
39 * The above copyright and patent license is granted only if the following
40 * conditions are met:
42 * 3. Conditions
44 * 3.1. Redistribution of Source with Rights to Further Distribute Source.
45 * Redistribution of source code of any substantial portion of the Covered
46 * Code or modification with rights to further distribute source must include
47 * the above Copyright Notice, the above License, this list of Conditions,
48 * and the following Disclaimer and Export Compliance provision. In addition,
49 * Licensee must cause all Covered Code to which Licensee contributes to
50 * contain a file documenting the changes Licensee made to create that Covered
51 * Code and the date of any change. Licensee must include in that file the
52 * documentation of any changes made by any predecessor Licensee. Licensee
53 * must include a prominent statement that the modification is derived,
54 * directly or indirectly, from Original Intel Code.
56 * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
57 * Redistribution of source code of any substantial portion of the Covered
58 * Code or modification without rights to further distribute source must
59 * include the following Disclaimer and Export Compliance provision in the
60 * documentation and/or other materials provided with distribution. In
61 * addition, Licensee may not authorize further sublicense of source of any
62 * portion of the Covered Code, and must include terms to the effect that the
63 * license from Licensee to its licensee is limited to the intellectual
64 * property embodied in the software Licensee provides to its licensee, and
65 * not to intellectual property embodied in modifications its licensee may
66 * make.
68 * 3.3. Redistribution of Executable. Redistribution in executable form of any
69 * substantial portion of the Covered Code or modification must reproduce the
70 * above Copyright Notice, and the following Disclaimer and Export Compliance
71 * provision in the documentation and/or other materials provided with the
72 * distribution.
74 * 3.4. Intel retains all right, title, and interest in and to the Original
75 * Intel Code.
77 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
78 * Intel shall be used in advertising or otherwise to promote the sale, use or
79 * other dealings in products derived from or relating to the Covered Code
80 * without prior written authorization from Intel.
82 * 4. Disclaimer and Export Compliance
84 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
85 * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
86 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE,
87 * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY
88 * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY
89 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
90 * PARTICULAR PURPOSE.
92 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
93 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
94 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
95 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
96 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
97 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS
98 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
99 * LIMITED REMEDY.
101 * 4.3. Licensee shall not export, either directly or indirectly, any of this
102 * software or system incorporating such software without first obtaining any
103 * required license or other approval from the U. S. Department of Commerce or
104 * any other agency or department of the United States Government. In the
105 * event Licensee exports any such software from the United States or
106 * re-exports any such software from a foreign destination, Licensee shall
107 * ensure that the distribution and export/re-export of the software is in
108 * compliance with all laws, regulations, orders, or other restrictions of the
109 * U.S. Export Administration Regulations. Licensee agrees that neither it nor
110 * any of its subsidiaries will export/re-export any technical data, process,
111 * software, or service, directly or indirectly, to any country for which the
112 * United States government or any agency thereof requires an export license,
113 * other governmental approval, or letter of assurance, without first obtaining
114 * such license, approval or letter.
116 *****************************************************************************/
118 #define __NSDUMP_C__
120 #include "acpi.h"
121 #include "acnamesp.h"
122 #include "acparser.h"
125 #define _COMPONENT ACPI_NAMESPACE
126 ACPI_MODULE_NAME ("nsdump")
129 #if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
131 /*******************************************************************************
133 * FUNCTION: AcpiNsPrintPathname
135 * PARAMETERS: NumSegment - Number of ACPI name segments
136 * Pathname - The compressed (internal) path
138 * DESCRIPTION: Print an object's full namespace pathname
140 ******************************************************************************/
142 void
143 AcpiNsPrintPathname (
144 UINT32 NumSegments,
145 char *Pathname)
147 ACPI_FUNCTION_NAME ("NsPrintPathname");
150 if (!(AcpiDbgLevel & ACPI_LV_NAMES) || !(AcpiDbgLayer & ACPI_NAMESPACE))
152 return;
155 /* Print the entire name */
157 ACPI_DEBUG_PRINT ((ACPI_DB_NAMES, "["));
159 while (NumSegments)
161 AcpiOsPrintf ("%4.4s", Pathname);
162 Pathname += ACPI_NAME_SIZE;
164 NumSegments--;
165 if (NumSegments)
167 AcpiOsPrintf (".");
171 AcpiOsPrintf ("]\n");
175 /*******************************************************************************
177 * FUNCTION: AcpiNsDumpPathname
179 * PARAMETERS: Handle - Object
180 * Msg - Prefix message
181 * Level - Desired debug level
182 * Component - Caller's component ID
184 * DESCRIPTION: Print an object's full namespace pathname
185 * Manages allocation/freeing of a pathname buffer
187 ******************************************************************************/
189 void
190 AcpiNsDumpPathname (
191 ACPI_HANDLE Handle,
192 char *Msg,
193 UINT32 Level,
194 UINT32 Component)
197 ACPI_FUNCTION_TRACE ("NsDumpPathname");
200 /* Do this only if the requested debug level and component are enabled */
202 if (!(AcpiDbgLevel & Level) || !(AcpiDbgLayer & Component))
204 return_VOID;
207 /* Convert handle to a full pathname and print it (with supplied message) */
209 AcpiNsPrintNodePathname (Handle, Msg);
210 AcpiOsPrintf ("\n");
211 return_VOID;
215 /*******************************************************************************
217 * FUNCTION: AcpiNsDumpOneObject
219 * PARAMETERS: Handle - Node to be dumped
220 * Level - Nesting level of the handle
221 * Context - Passed into WalkNamespace
223 * DESCRIPTION: Dump a single Node
224 * This procedure is a UserFunction called by AcpiNsWalkNamespace.
226 ******************************************************************************/
228 ACPI_STATUS
229 AcpiNsDumpOneObject (
230 ACPI_HANDLE ObjHandle,
231 UINT32 Level,
232 void *Context,
233 void **ReturnValue)
235 ACPI_WALK_INFO *Info = (ACPI_WALK_INFO *) Context;
236 ACPI_NAMESPACE_NODE *ThisNode;
237 ACPI_OPERAND_OBJECT *ObjDesc = NULL;
238 ACPI_OBJECT_TYPE ObjType;
239 ACPI_OBJECT_TYPE Type;
240 UINT32 BytesToDump;
241 UINT32 DbgLevel;
242 UINT32 i;
245 ACPI_FUNCTION_NAME ("NsDumpOneObject");
248 /* Is output enabled? */
250 if (!(AcpiDbgLevel & Info->DebugLevel))
252 return (AE_OK);
255 if (!ObjHandle)
257 ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "Null object handle\n"));
258 return (AE_OK);
261 ThisNode = AcpiNsMapHandleToNode (ObjHandle);
262 Type = ThisNode->Type;
264 /* Check if the owner matches */
266 if ((Info->OwnerId != ACPI_UINT32_MAX) &&
267 (Info->OwnerId != ThisNode->OwnerId))
269 return (AE_OK);
272 /* Indent the object according to the level */
274 AcpiOsPrintf ("%2d%*s", (UINT32) Level - 1, (int) Level * 2, " ");
276 /* Check the node type and name */
278 if (Type > ACPI_TYPE_LOCAL_MAX)
280 ACPI_REPORT_WARNING (("Invalid ACPI Type %08X\n", Type));
283 if (!AcpiUtValidAcpiName (ThisNode->Name.Integer))
285 ACPI_REPORT_WARNING (("Invalid ACPI Name %08X\n",
286 ThisNode->Name.Integer));
290 * Now we can print out the pertinent information
292 AcpiOsPrintf ("%4.4s %-12s %p ",
293 AcpiUtGetNodeName (ThisNode), AcpiUtGetTypeName (Type), ThisNode);
295 DbgLevel = AcpiDbgLevel;
296 AcpiDbgLevel = 0;
297 ObjDesc = AcpiNsGetAttachedObject (ThisNode);
298 AcpiDbgLevel = DbgLevel;
300 switch (Info->DisplayType)
302 case ACPI_DISPLAY_SUMMARY:
304 if (!ObjDesc)
306 /* No attached object, we are done */
308 AcpiOsPrintf ("\n");
309 return (AE_OK);
312 switch (Type)
314 case ACPI_TYPE_PROCESSOR:
316 AcpiOsPrintf ("ID %X Len %.4X Addr %p\n",
317 ObjDesc->Processor.ProcId, ObjDesc->Processor.Length,
318 (char *) ObjDesc->Processor.Address);
319 break;
322 case ACPI_TYPE_DEVICE:
324 AcpiOsPrintf ("Notify Object: %p\n", ObjDesc);
325 break;
328 case ACPI_TYPE_METHOD:
330 AcpiOsPrintf ("Args %X Len %.4X Aml %p\n",
331 (UINT32) ObjDesc->Method.ParamCount,
332 ObjDesc->Method.AmlLength, ObjDesc->Method.AmlStart);
333 break;
336 case ACPI_TYPE_INTEGER:
338 AcpiOsPrintf ("= %8.8X%8.8X\n",
339 ACPI_FORMAT_UINT64 (ObjDesc->Integer.Value));
340 break;
343 case ACPI_TYPE_PACKAGE:
345 if (ObjDesc->Common.Flags & AOPOBJ_DATA_VALID)
347 AcpiOsPrintf ("Elements %.2X\n",
348 ObjDesc->Package.Count);
350 else
352 AcpiOsPrintf ("[Length not yet evaluated]\n");
354 break;
357 case ACPI_TYPE_BUFFER:
359 if (ObjDesc->Common.Flags & AOPOBJ_DATA_VALID)
361 AcpiOsPrintf ("Len %.2X",
362 ObjDesc->Buffer.Length);
364 /* Dump some of the buffer */
366 if (ObjDesc->Buffer.Length > 0)
368 AcpiOsPrintf (" =");
369 for (i = 0; (i < ObjDesc->Buffer.Length && i < 12); i++)
371 AcpiOsPrintf (" %.2hX", ObjDesc->Buffer.Pointer[i]);
374 AcpiOsPrintf ("\n");
376 else
378 AcpiOsPrintf ("[Length not yet evaluated]\n");
380 break;
383 case ACPI_TYPE_STRING:
385 AcpiOsPrintf ("Len %.2X ", ObjDesc->String.Length);
386 AcpiUtPrintString (ObjDesc->String.Pointer, 32);
387 AcpiOsPrintf ("\n");
388 break;
391 case ACPI_TYPE_REGION:
393 AcpiOsPrintf ("[%s]",
394 AcpiUtGetRegionName (ObjDesc->Region.SpaceId));
395 if (ObjDesc->Region.Flags & AOPOBJ_DATA_VALID)
397 AcpiOsPrintf (" Addr %8.8X%8.8X Len %.4X\n",
398 ACPI_FORMAT_UINT64 (ObjDesc->Region.Address),
399 ObjDesc->Region.Length);
401 else
403 AcpiOsPrintf (" [Address/Length not yet evaluated]\n");
405 break;
408 case ACPI_TYPE_LOCAL_REFERENCE:
410 AcpiOsPrintf ("[%s]\n",
411 AcpiPsGetOpcodeName (ObjDesc->Reference.Opcode));
412 break;
415 case ACPI_TYPE_BUFFER_FIELD:
417 if (ObjDesc->BufferField.BufferObj &&
418 ObjDesc->BufferField.BufferObj->Buffer.Node)
420 AcpiOsPrintf ("Buf [%4.4s]",
421 AcpiUtGetNodeName (ObjDesc->BufferField.BufferObj->Buffer.Node));
423 break;
426 case ACPI_TYPE_LOCAL_REGION_FIELD:
428 AcpiOsPrintf ("Rgn [%4.4s]",
429 AcpiUtGetNodeName (ObjDesc->CommonField.RegionObj->Region.Node));
430 break;
433 case ACPI_TYPE_LOCAL_BANK_FIELD:
435 AcpiOsPrintf ("Rgn [%4.4s] Bnk [%4.4s]",
436 AcpiUtGetNodeName (ObjDesc->CommonField.RegionObj->Region.Node),
437 AcpiUtGetNodeName (ObjDesc->BankField.BankObj->CommonField.Node));
438 break;
441 case ACPI_TYPE_LOCAL_INDEX_FIELD:
443 AcpiOsPrintf ("Idx [%4.4s] Dat [%4.4s]",
444 AcpiUtGetNodeName (ObjDesc->IndexField.IndexObj->CommonField.Node),
445 AcpiUtGetNodeName (ObjDesc->IndexField.DataObj->CommonField.Node));
446 break;
449 case ACPI_TYPE_LOCAL_ALIAS:
450 case ACPI_TYPE_LOCAL_METHOD_ALIAS:
452 AcpiOsPrintf ("Target %4.4s (%p)\n",
453 AcpiUtGetNodeName (ObjDesc), ObjDesc);
454 break;
456 default:
458 AcpiOsPrintf ("Object %p\n", ObjDesc);
459 break;
462 /* Common field handling */
464 switch (Type)
466 case ACPI_TYPE_BUFFER_FIELD:
467 case ACPI_TYPE_LOCAL_REGION_FIELD:
468 case ACPI_TYPE_LOCAL_BANK_FIELD:
469 case ACPI_TYPE_LOCAL_INDEX_FIELD:
471 AcpiOsPrintf (" Off %.3X Len %.2X Acc %.2hd\n",
472 (ObjDesc->CommonField.BaseByteOffset * 8)
473 + ObjDesc->CommonField.StartFieldBitOffset,
474 ObjDesc->CommonField.BitLength,
475 ObjDesc->CommonField.AccessByteWidth);
476 break;
478 default:
479 break;
481 break;
484 case ACPI_DISPLAY_OBJECTS:
486 AcpiOsPrintf ("O:%p", ObjDesc);
487 if (!ObjDesc)
489 /* No attached object, we are done */
491 AcpiOsPrintf ("\n");
492 return (AE_OK);
495 AcpiOsPrintf ("(R%d)",
496 ObjDesc->Common.ReferenceCount);
498 switch (Type)
500 case ACPI_TYPE_METHOD:
502 /* Name is a Method and its AML offset/length are set */
504 AcpiOsPrintf (" M:%p-%X\n", ObjDesc->Method.AmlStart,
505 ObjDesc->Method.AmlLength);
506 break;
508 case ACPI_TYPE_INTEGER:
510 AcpiOsPrintf (" I:%8.8X8.8%X\n",
511 ACPI_FORMAT_UINT64 (ObjDesc->Integer.Value));
512 break;
514 case ACPI_TYPE_STRING:
516 AcpiOsPrintf (" S:%p-%X\n", ObjDesc->String.Pointer,
517 ObjDesc->String.Length);
518 break;
520 case ACPI_TYPE_BUFFER:
522 AcpiOsPrintf (" B:%p-%X\n", ObjDesc->Buffer.Pointer,
523 ObjDesc->Buffer.Length);
524 break;
526 default:
528 AcpiOsPrintf ("\n");
529 break;
531 break;
534 default:
535 AcpiOsPrintf ("\n");
536 break;
539 /* If debug turned off, done */
541 if (!(AcpiDbgLevel & ACPI_LV_VALUES))
543 return (AE_OK);
547 /* If there is an attached object, display it */
549 DbgLevel = AcpiDbgLevel;
550 AcpiDbgLevel = 0;
551 ObjDesc = AcpiNsGetAttachedObject (ThisNode);
552 AcpiDbgLevel = DbgLevel;
554 /* Dump attached objects */
556 while (ObjDesc)
558 ObjType = ACPI_TYPE_INVALID;
559 AcpiOsPrintf (" Attached Object %p: ", ObjDesc);
561 /* Decode the type of attached object and dump the contents */
563 switch (ACPI_GET_DESCRIPTOR_TYPE (ObjDesc))
565 case ACPI_DESC_TYPE_NAMED:
567 AcpiOsPrintf ("(Ptr to Node)\n");
568 BytesToDump = sizeof (ACPI_NAMESPACE_NODE);
569 break;
572 case ACPI_DESC_TYPE_OPERAND:
574 ObjType = ACPI_GET_OBJECT_TYPE (ObjDesc);
576 if (ObjType > ACPI_TYPE_LOCAL_MAX)
578 AcpiOsPrintf ("(Ptr to ACPI Object type %X [UNKNOWN])\n",
579 ObjType);
580 BytesToDump = 32;
582 else
584 AcpiOsPrintf ("(Ptr to ACPI Object type %s, %X)\n",
585 AcpiUtGetTypeName (ObjType), ObjType);
586 BytesToDump = sizeof (ACPI_OPERAND_OBJECT);
588 break;
591 default:
593 AcpiOsPrintf (
594 "(String or Buffer ptr - not an object descriptor) [%s]\n",
595 AcpiUtGetDescriptorName (ObjDesc));
596 BytesToDump = 16;
597 break;
600 ACPI_DUMP_BUFFER (ObjDesc, BytesToDump);
602 /* If value is NOT an internal object, we are done */
604 if (ACPI_GET_DESCRIPTOR_TYPE (ObjDesc) != ACPI_DESC_TYPE_OPERAND)
606 goto Cleanup;
610 * Valid object, get the pointer to next level, if any
612 switch (ObjType)
614 case ACPI_TYPE_STRING:
615 ObjDesc = (void *) ObjDesc->String.Pointer;
616 break;
618 case ACPI_TYPE_BUFFER:
619 ObjDesc = (void *) ObjDesc->Buffer.Pointer;
620 break;
622 case ACPI_TYPE_BUFFER_FIELD:
623 ObjDesc = (ACPI_OPERAND_OBJECT *) ObjDesc->BufferField.BufferObj;
624 break;
626 case ACPI_TYPE_PACKAGE:
627 ObjDesc = (void *) ObjDesc->Package.Elements;
628 break;
630 case ACPI_TYPE_METHOD:
631 ObjDesc = (void *) ObjDesc->Method.AmlStart;
632 break;
634 case ACPI_TYPE_LOCAL_REGION_FIELD:
635 ObjDesc = (void *) ObjDesc->Field.RegionObj;
636 break;
638 case ACPI_TYPE_LOCAL_BANK_FIELD:
639 ObjDesc = (void *) ObjDesc->BankField.RegionObj;
640 break;
642 case ACPI_TYPE_LOCAL_INDEX_FIELD:
643 ObjDesc = (void *) ObjDesc->IndexField.IndexObj;
644 break;
646 default:
647 goto Cleanup;
650 ObjType = ACPI_TYPE_INVALID; /* Terminate loop after next pass */
653 Cleanup:
654 AcpiOsPrintf ("\n");
655 return (AE_OK);
659 /*******************************************************************************
661 * FUNCTION: AcpiNsDumpObjects
663 * PARAMETERS: Type - Object type to be dumped
664 * MaxDepth - Maximum depth of dump. Use ACPI_UINT32_MAX
665 * for an effectively unlimited depth.
666 * OwnerId - Dump only objects owned by this ID. Use
667 * ACPI_UINT32_MAX to match all owners.
668 * StartHandle - Where in namespace to start/end search
670 * DESCRIPTION: Dump typed objects within the loaded namespace.
671 * Uses AcpiNsWalkNamespace in conjunction with AcpiNsDumpOneObject.
673 ******************************************************************************/
675 void
676 AcpiNsDumpObjects (
677 ACPI_OBJECT_TYPE Type,
678 UINT8 DisplayType,
679 UINT32 MaxDepth,
680 UINT32 OwnerId,
681 ACPI_HANDLE StartHandle)
683 ACPI_WALK_INFO Info;
686 ACPI_FUNCTION_ENTRY ();
689 Info.DebugLevel = ACPI_LV_TABLES;
690 Info.OwnerId = OwnerId;
691 Info.DisplayType = DisplayType;
693 (void) AcpiNsWalkNamespace (Type, StartHandle, MaxDepth,
694 ACPI_NS_WALK_NO_UNLOCK, AcpiNsDumpOneObject,
695 (void *) &Info, NULL);
699 /*******************************************************************************
701 * FUNCTION: AcpiNsDumpTables
703 * PARAMETERS: SearchBase - Root of subtree to be dumped, or
704 * NS_ALL to dump the entire namespace
705 * MaxDepth - Maximum depth of dump. Use INT_MAX
706 * for an effectively unlimited depth.
708 * DESCRIPTION: Dump the name space, or a portion of it.
710 ******************************************************************************/
712 void
713 AcpiNsDumpTables (
714 ACPI_HANDLE SearchBase,
715 UINT32 MaxDepth)
717 ACPI_HANDLE SearchHandle = SearchBase;
720 ACPI_FUNCTION_TRACE ("NsDumpTables");
723 if (!AcpiGbl_RootNode)
726 * If the name space has not been initialized,
727 * there is nothing to dump.
729 ACPI_DEBUG_PRINT ((ACPI_DB_TABLES, "namespace not initialized!\n"));
730 return_VOID;
733 if (ACPI_NS_ALL == SearchBase)
735 /* entire namespace */
737 SearchHandle = AcpiGbl_RootNode;
738 ACPI_DEBUG_PRINT ((ACPI_DB_TABLES, "\\\n"));
741 AcpiNsDumpObjects (ACPI_TYPE_ANY, ACPI_DISPLAY_OBJECTS, MaxDepth,
742 ACPI_UINT32_MAX, SearchHandle);
743 return_VOID;
747 /*******************************************************************************
749 * FUNCTION: AcpiNsDumpEntry
751 * PARAMETERS: Handle - Node to be dumped
752 * DebugLevel - Output level
754 * DESCRIPTION: Dump a single Node
756 ******************************************************************************/
758 void
759 AcpiNsDumpEntry (
760 ACPI_HANDLE Handle,
761 UINT32 DebugLevel)
763 ACPI_WALK_INFO Info;
766 ACPI_FUNCTION_ENTRY ();
769 Info.DebugLevel = DebugLevel;
770 Info.OwnerId = ACPI_UINT32_MAX;
771 Info.DisplayType = ACPI_DISPLAY_SUMMARY;
773 (void) AcpiNsDumpOneObject (Handle, 1, &Info, NULL);
776 #endif