Commit 3e0d69ec authored by Andrew Morton's avatar Andrew Morton Committed by Len Brown

ACPI: add dump_stack() to trace acpi_format_exception programming errors

Dump the stack so we can find the secretive caller to acpi_format_exception().
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent b3e572d2
...@@ -126,6 +126,7 @@ const char *acpi_format_exception(acpi_status status) ...@@ -126,6 +126,7 @@ const char *acpi_format_exception(acpi_status status)
"Unknown exception code: 0x%8.8X", status)); "Unknown exception code: 0x%8.8X", status));
exception = "UNKNOWN_STATUS_CODE"; exception = "UNKNOWN_STATUS_CODE";
dump_stack();
} }
return (ACPI_CAST_PTR(const char, exception)); return (ACPI_CAST_PTR(const char, exception));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment