diff options
author | Prarit Bhargava <[email protected]> | 2016-05-04 13:48:56 +0800 |
---|---|---|
committer | Rafael J. Wysocki <[email protected]> | 2016-05-04 22:41:43 +0200 |
commit | 93d68841a23a5779cef6fb9aa0ef32e7c5bd00da (patch) | |
tree | 6bb2f4cf032864c03e8bf924e7395708bf504ea1 | |
parent | 04974df8049fc4240d22759a91e035082ccd18b4 (diff) |
ACPICA: Dispatcher: Update thread ID for recursive method calls
ACPICA commit 7a3bd2d962f221809f25ddb826c9e551b916eb25
Set the mutex owner thread ID.
Original patch from: Prarit Bhargava <[email protected]>
Link: https://bugzilla.kernel.org/show_bug.cgi?id=115121
Link: https://github.com/acpica/acpica/commit/7a3bd2d9
Signed-off-by: Prarit Bhargava <[email protected]>
Tested-by: Andy Lutomirski <[email protected]> # On a Dell XPS 13 9350
Signed-off-by: Bob Moore <[email protected]>
Signed-off-by: Lv Zheng <[email protected]>
Cc: All applicable <[email protected]>
Signed-off-by: Rafael J. Wysocki <[email protected]>
-rw-r--r-- | drivers/acpi/acpica/dsmethod.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/acpi/acpica/dsmethod.c b/drivers/acpi/acpica/dsmethod.c index 1982310e6d83..da198b864107 100644 --- a/drivers/acpi/acpica/dsmethod.c +++ b/drivers/acpi/acpica/dsmethod.c @@ -428,6 +428,9 @@ acpi_ds_begin_method_execution(struct acpi_namespace_node *method_node, obj_desc->method.mutex->mutex. original_sync_level = obj_desc->method.mutex->mutex.sync_level; + + obj_desc->method.mutex->mutex.thread_id = + acpi_os_get_thread_id(); } } |