diff options
author | Bob Moore <robert.moore@intel.com> | 2012-10-30 22:27:24 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2012-11-14 18:31:27 -0500 |
commit | 2489ef01849d3d7f62f53b47c245017406f02d32 (patch) | |
tree | 98273effa33774cef9cb1a97175ef348e0606cd7 | |
parent | bee6dc39cfa4be083e8c11cee0867eb7dc56895b (diff) |
ACPICA: Add debug print message for mutex objects that are force-released
At control method termination, any currently acquired mutex
objects are force-released. Add a new message for each one that
is released.
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/exmutex.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/acpi/acpica/exmutex.c b/drivers/acpi/acpica/exmutex.c index 4723974a4cf5..d1f449d93dcf 100644 --- a/drivers/acpi/acpica/exmutex.c +++ b/drivers/acpi/acpica/exmutex.c | |||
@@ -461,7 +461,7 @@ void acpi_ex_release_all_mutexes(struct acpi_thread_state *thread) | |||
461 | union acpi_operand_object *next = thread->acquired_mutex_list; | 461 | union acpi_operand_object *next = thread->acquired_mutex_list; |
462 | union acpi_operand_object *obj_desc; | 462 | union acpi_operand_object *obj_desc; |
463 | 463 | ||
464 | ACPI_FUNCTION_ENTRY(); | 464 | ACPI_FUNCTION_NAME(ex_release_all_mutexes); |
465 | 465 | ||
466 | /* Traverse the list of owned mutexes, releasing each one */ | 466 | /* Traverse the list of owned mutexes, releasing each one */ |
467 | 467 | ||
@@ -473,6 +473,10 @@ void acpi_ex_release_all_mutexes(struct acpi_thread_state *thread) | |||
473 | obj_desc->mutex.next = NULL; | 473 | obj_desc->mutex.next = NULL; |
474 | obj_desc->mutex.acquisition_depth = 0; | 474 | obj_desc->mutex.acquisition_depth = 0; |
475 | 475 | ||
476 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, | ||
477 | "Force-releasing held mutex: %p\n", | ||
478 | obj_desc)); | ||
479 | |||
476 | /* Release the mutex, special case for Global Lock */ | 480 | /* Release the mutex, special case for Global Lock */ |
477 | 481 | ||
478 | if (obj_desc == acpi_gbl_global_lock_mutex) { | 482 | if (obj_desc == acpi_gbl_global_lock_mutex) { |