ACPICA: Update mutex error messages, no functional change
ACPICA commit 22f2b0beb45d277841ed02bc613df1009e5b20cf Add mutex name on certain acquire/release errors. Link: https://github.com/acpica/acpica/commit/22f2b0be Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Erik Schmauss <erik.schmauss@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
060c859d79
commit
692aa0cf5d
|
@ -286,8 +286,9 @@ acpi_status acpi_ut_acquire_mutex(acpi_mutex_handle mutex_id)
|
|||
acpi_gbl_mutex_info[mutex_id].thread_id = this_thread_id;
|
||||
} else {
|
||||
ACPI_EXCEPTION((AE_INFO, status,
|
||||
"Thread %u could not acquire Mutex [0x%X]",
|
||||
(u32)this_thread_id, mutex_id));
|
||||
"Thread %u could not acquire Mutex [%s] (0x%X)",
|
||||
(u32)this_thread_id,
|
||||
acpi_ut_get_mutex_name(mutex_id), mutex_id));
|
||||
}
|
||||
|
||||
return (status);
|
||||
|
@ -322,8 +323,8 @@ acpi_status acpi_ut_release_mutex(acpi_mutex_handle mutex_id)
|
|||
*/
|
||||
if (acpi_gbl_mutex_info[mutex_id].thread_id == ACPI_MUTEX_NOT_ACQUIRED) {
|
||||
ACPI_ERROR((AE_INFO,
|
||||
"Mutex [0x%X] is not acquired, cannot release",
|
||||
mutex_id));
|
||||
"Mutex [%s] (0x%X) is not acquired, cannot release",
|
||||
acpi_ut_get_mutex_name(mutex_id), mutex_id));
|
||||
|
||||
return (AE_NOT_ACQUIRED);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue