Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
bdf3aaf9
Commit
bdf3aaf9
authored
Mar 09, 2007
by
Len Brown
Browse files
Options
Browse Files
Download
Plain Diff
Pull bugzilla-8066 into release branch
parents
b2526300
610a3d06
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
2 deletions
+23
-2
drivers/acpi/events/evmisc.c
drivers/acpi/events/evmisc.c
+23
-2
No files found.
drivers/acpi/events/evmisc.c
View file @
bdf3aaf9
...
@@ -423,6 +423,8 @@ static acpi_status acpi_ev_remove_global_lock_handler(void)
...
@@ -423,6 +423,8 @@ static acpi_status acpi_ev_remove_global_lock_handler(void)
* the global lock appear as a standard mutex on the OS side.
* the global lock appear as a standard mutex on the OS side.
*
*
*****************************************************************************/
*****************************************************************************/
static
acpi_thread_id
acpi_ev_global_lock_thread_id
;
static
int
acpi_ev_global_lock_acquired
;
acpi_status
acpi_ev_acquire_global_lock
(
u16
timeout
)
acpi_status
acpi_ev_acquire_global_lock
(
u16
timeout
)
{
{
...
@@ -435,11 +437,24 @@ acpi_status acpi_ev_acquire_global_lock(u16 timeout)
...
@@ -435,11 +437,24 @@ acpi_status acpi_ev_acquire_global_lock(u16 timeout)
* Only one thread can acquire the GL at a time, the global_lock_mutex
* Only one thread can acquire the GL at a time, the global_lock_mutex
* enforces this. This interface releases the interpreter if we must wait.
* enforces this. This interface releases the interpreter if we must wait.
*/
*/
status
=
acpi_ex_system_wait_mutex
(
acpi_gbl_global_lock_mutex
,
timeout
);
status
=
acpi_ex_system_wait_mutex
(
acpi_gbl_global_lock_mutex
,
0
);
if
(
status
==
AE_TIME
)
{
if
(
acpi_ev_global_lock_thread_id
==
acpi_os_get_thread_id
())
{
acpi_ev_global_lock_acquired
++
;
return
AE_OK
;
}
}
if
(
ACPI_FAILURE
(
status
))
{
status
=
acpi_ex_system_wait_mutex
(
acpi_gbl_global_lock_mutex
,
timeout
);
}
if
(
ACPI_FAILURE
(
status
))
{
if
(
ACPI_FAILURE
(
status
))
{
return_ACPI_STATUS
(
status
);
return_ACPI_STATUS
(
status
);
}
}
acpi_ev_global_lock_thread_id
=
acpi_os_get_thread_id
();
acpi_ev_global_lock_acquired
++
;
/*
/*
* Make sure that a global lock actually exists. If not, just treat
* Make sure that a global lock actually exists. If not, just treat
* the lock as a standard mutex.
* the lock as a standard mutex.
...
@@ -506,6 +521,11 @@ acpi_status acpi_ev_release_global_lock(void)
...
@@ -506,6 +521,11 @@ acpi_status acpi_ev_release_global_lock(void)
return_ACPI_STATUS
(
AE_NOT_ACQUIRED
);
return_ACPI_STATUS
(
AE_NOT_ACQUIRED
);
}
}
acpi_ev_global_lock_acquired
--
;
if
(
acpi_ev_global_lock_acquired
>
0
)
{
return
AE_OK
;
}
if
(
acpi_gbl_global_lock_present
)
{
if
(
acpi_gbl_global_lock_present
)
{
/* Allow any thread to release the lock */
/* Allow any thread to release the lock */
...
@@ -529,7 +549,8 @@ acpi_status acpi_ev_release_global_lock(void)
...
@@ -529,7 +549,8 @@ acpi_status acpi_ev_release_global_lock(void)
acpi_gbl_global_lock_acquired
=
FALSE
;
acpi_gbl_global_lock_acquired
=
FALSE
;
/* Release the local GL mutex */
/* Release the local GL mutex */
acpi_ev_global_lock_thread_id
=
0
;
acpi_ev_global_lock_acquired
=
0
;
acpi_os_release_mutex
(
acpi_gbl_global_lock_mutex
);
acpi_os_release_mutex
(
acpi_gbl_global_lock_mutex
);
return_ACPI_STATUS
(
status
);
return_ACPI_STATUS
(
status
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment