ACPI_GLOBAL(struct acpi_memory_list *, acpi_gbl_ns_node_list);
 ACPI_GLOBAL(u8, acpi_gbl_display_final_mem_stats);
 ACPI_GLOBAL(u8, acpi_gbl_disable_mem_tracking);
+ACPI_GLOBAL(u8, acpi_gbl_verbose_leak_dump);
 #endif
 
 /*****************************************************************************
 
 
 static const char *acpi_gbl_desc_type_names[] = {
        /* 00 */ "Not a Descriptor",
-       /* 01 */ "Cached",
+       /* 01 */ "Cached Object",
        /* 02 */ "State-Generic",
        /* 03 */ "State-Update",
        /* 04 */ "State-Package",
        /* 09 */ "State-Result",
        /* 10 */ "State-Notify",
        /* 11 */ "State-Thread",
-       /* 12 */ "Walk",
-       /* 13 */ "Parser",
-       /* 14 */ "Operand",
-       /* 15 */ "Node"
+       /* 12 */ "Tree Walk State",
+       /* 13 */ "Parse Tree Op",
+       /* 14 */ "Operand Object",
+       /* 15 */ "Namespace Node"
 };
 
 const char *acpi_ut_get_descriptor_name(void *object)
 
                                             acpi_ut_get_descriptor_name
                                             (descriptor));
 
+                                       /* Optional object hex dump */
+
+                                       if (acpi_gbl_verbose_leak_dump) {
+                                               acpi_os_printf("\n");
+                                               acpi_ut_dump_buffer((u8 *)
+                                                                   descriptor,
+                                                                   element->
+                                                                   size,
+                                                                   DB_BYTE_DISPLAY,
+                                                                   0);
+                                       }
+
                                        /* Validate the descriptor type using Type field and length */
 
                                        descriptor_type = 0;    /* Not a valid descriptor type */