Skip to content

Commit

Permalink
ACPICA: On AML mutex force-release, set depth to zero (was 1).
Browse files Browse the repository at this point in the history
Signed-off-by: Alexey Starikovskiy <[email protected]>
Signed-off-by: Len Brown <[email protected]>
  • Loading branch information
acpibob authored and lenb committed Feb 3, 2007
1 parent 310a7f7 commit f70a5e7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion drivers/acpi/executer/exmutex.c
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,12 @@ acpi_ex_release_mutex(union acpi_operand_object *obj_desc,
*
* DESCRIPTION: Release all mutexes held by this thread
*
* NOTE: This function is called as the thread is exiting the interpreter.
* Mutexes are not released when an individual control method is exited, but
* only when the parent thread actually exits the interpreter. This allows one
* method to acquire a mutex, and a different method to release it, as long as
* this is performed underneath a single parent control method.
*
******************************************************************************/

void acpi_ex_release_all_mutexes(struct acpi_thread_state *thread)
Expand All @@ -346,7 +352,7 @@ void acpi_ex_release_all_mutexes(struct acpi_thread_state *thread)

obj_desc->mutex.prev = NULL;
obj_desc->mutex.next = NULL;
obj_desc->mutex.acquisition_depth = 1;
obj_desc->mutex.acquisition_depth = 0;

/* Release the mutex, special case for Global Lock */

Expand Down

0 comments on commit f70a5e7

Please sign in to comment.