aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBob Moore <robert.moore@intel.com>2014-02-07 20:42:12 -0500
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2014-02-10 18:30:24 -0500
commitd72c17a8674fc143e1c7781e55fa362626353167 (patch)
tree53c48af777c4ecd6efc2d3aff50cd42372959e7d
parent2e19f8d02ee7acd939d60a89905c6fbc27c7cfab (diff)
ACPICA: Utilities: Load of local test tables is now optional.
The utility has the capability to load some various tables to test features of ACPICA. However, there are enough of them that the output of the utility became confusing. With this change, only the required local tables are displayed (RSDP, XSDT, etc.) along with the actual tables loaded via the command line specification. This makes the default output simler and easier to understand. The -el command line option restores the original behavior for testing purposes. This patch doesn't affect kernel behavior as Linux doesn't use ACPICA allocation tracking implementation. Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Lv Zheng <lv.zheng@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r--drivers/acpi/acpica/uttrack.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/acpi/acpica/uttrack.c b/drivers/acpi/acpica/uttrack.c
index c0027773cccb..4e367387feb3 100644
--- a/drivers/acpi/acpica/uttrack.c
+++ b/drivers/acpi/acpica/uttrack.c
@@ -276,7 +276,8 @@ acpi_ut_free_and_track(void *allocation,
276 } 276 }
277 277
278 acpi_os_free(debug_block); 278 acpi_os_free(debug_block);
279 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, "%p freed\n", allocation)); 279 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, "%p freed (block %p)\n",
280 allocation, debug_block));
280 return_VOID; 281 return_VOID;
281} 282}
282 283