.. | .. |
---|
3 | 3 | * |
---|
4 | 4 | * Module Name: uttrack - Memory allocation tracking routines (debug only) |
---|
5 | 5 | * |
---|
6 | | - * Copyright (C) 2000 - 2018, Intel Corp. |
---|
| 6 | + * Copyright (C) 2000 - 2020, Intel Corp. |
---|
7 | 7 | * |
---|
8 | 8 | *****************************************************************************/ |
---|
9 | 9 | |
---|
.. | .. |
---|
588 | 588 | acpi_ut_get_descriptor_name |
---|
589 | 589 | (descriptor)); |
---|
590 | 590 | |
---|
| 591 | + /* Optional object hex dump */ |
---|
| 592 | + |
---|
| 593 | + if (acpi_gbl_verbose_leak_dump) { |
---|
| 594 | + acpi_os_printf("\n"); |
---|
| 595 | + acpi_ut_dump_buffer((u8 *) |
---|
| 596 | + descriptor, |
---|
| 597 | + element-> |
---|
| 598 | + size, |
---|
| 599 | + DB_BYTE_DISPLAY, |
---|
| 600 | + 0); |
---|
| 601 | + } |
---|
| 602 | + |
---|
591 | 603 | /* Validate the descriptor type using Type field and length */ |
---|
592 | 604 | |
---|
593 | 605 | descriptor_type = 0; /* Not a valid descriptor type */ |
---|
.. | .. |
---|
648 | 660 | case ACPI_DESC_TYPE_PARSER: |
---|
649 | 661 | |
---|
650 | 662 | acpi_os_printf |
---|
651 | | - ("AmlOpcode 0x%04hX\n", |
---|
| 663 | + ("AmlOpcode 0x%04X\n", |
---|
652 | 664 | descriptor->op.asl. |
---|
653 | 665 | aml_opcode); |
---|
654 | 666 | break; |
---|