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
7924e4f6
Commit
7924e4f6
authored
Feb 07, 2008
by
Len Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge branches 'release' and 'gpe-ack' into release
parents
5531d285
17bc54ee
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
38 deletions
+21
-38
drivers/acpi/events/evgpe.c
drivers/acpi/events/evgpe.c
+13
-4
drivers/acpi/osl.c
drivers/acpi/osl.c
+8
-34
No files found.
drivers/acpi/events/evgpe.c
View file @
7924e4f6
...
...
@@ -501,6 +501,7 @@ u32 acpi_ev_gpe_detect(struct acpi_gpe_xrupt_info * gpe_xrupt_list)
* an interrupt handler.
*
******************************************************************************/
static
void
acpi_ev_asynch_enable_gpe
(
void
*
context
);
static
void
ACPI_SYSTEM_XFACE
acpi_ev_asynch_execute_gpe_method
(
void
*
context
)
{
...
...
@@ -576,22 +577,30 @@ static void ACPI_SYSTEM_XFACE acpi_ev_asynch_execute_gpe_method(void *context)
method_node
)));
}
}
/* Defer enabling of GPE until all notify handlers are done */
acpi_os_execute
(
OSL_NOTIFY_HANDLER
,
acpi_ev_asynch_enable_gpe
,
gpe_event_info
);
return_VOID
;
}
if
((
local_gpe_event_info
.
flags
&
ACPI_GPE_XRUPT_TYPE_MASK
)
==
static
void
acpi_ev_asynch_enable_gpe
(
void
*
context
)
{
struct
acpi_gpe_event_info
*
gpe_event_info
=
context
;
acpi_status
status
;
if
((
gpe_event_info
->
flags
&
ACPI_GPE_XRUPT_TYPE_MASK
)
==
ACPI_GPE_LEVEL_TRIGGERED
)
{
/*
* GPE is level-triggered, we clear the GPE status bit after
* handling the event.
*/
status
=
acpi_hw_clear_gpe
(
&
local_
gpe_event_info
);
status
=
acpi_hw_clear_gpe
(
gpe_event_info
);
if
(
ACPI_FAILURE
(
status
))
{
return_VOID
;
}
}
/* Enable this GPE */
(
void
)
acpi_hw_write_gpe_enable_reg
(
&
local_gpe_event_info
);
(
void
)
acpi_hw_write_gpe_enable_reg
(
gpe_event_info
);
return_VOID
;
}
...
...
drivers/acpi/osl.c
View file @
7924e4f6
...
...
@@ -665,25 +665,6 @@ static void acpi_os_execute_deferred(struct work_struct *work)
dpc
->
function
(
dpc
->
context
);
kfree
(
dpc
);
/* Yield cpu to notify thread */
cond_resched
();
return
;
}
static
void
acpi_os_execute_notify
(
struct
work_struct
*
work
)
{
struct
acpi_os_dpc
*
dpc
=
container_of
(
work
,
struct
acpi_os_dpc
,
work
);
if
(
!
dpc
)
{
printk
(
KERN_ERR
PREFIX
"Invalid (NULL) context
\n
"
);
return
;
}
dpc
->
function
(
dpc
->
context
);
kfree
(
dpc
);
return
;
}
...
...
@@ -707,7 +688,7 @@ acpi_status acpi_os_execute(acpi_execute_type type,
{
acpi_status
status
=
AE_OK
;
struct
acpi_os_dpc
*
dpc
;
struct
workqueue_struct
*
queue
;
ACPI_DEBUG_PRINT
((
ACPI_DB_EXEC
,
"Scheduling function [%p(%p)] for deferred execution.
\n
"
,
function
,
context
));
...
...
@@ -731,20 +712,13 @@ acpi_status acpi_os_execute(acpi_execute_type type,
dpc
->
function
=
function
;
dpc
->
context
=
context
;
if
(
type
==
OSL_NOTIFY_HANDLER
)
{
INIT_WORK
(
&
dpc
->
work
,
acpi_os_execute_notify
);
if
(
!
queue_work
(
kacpi_notify_wq
,
&
dpc
->
work
))
{
status
=
AE_ERROR
;
kfree
(
dpc
);
}
}
else
{
INIT_WORK
(
&
dpc
->
work
,
acpi_os_execute_deferred
);
if
(
!
queue_work
(
kacpid_wq
,
&
dpc
->
work
))
{
ACPI_DEBUG_PRINT
((
ACPI_DB_ERROR
,
"Call to queue_work() failed.
\n
"
));
status
=
AE_ERROR
;
kfree
(
dpc
);
}
INIT_WORK
(
&
dpc
->
work
,
acpi_os_execute_deferred
);
queue
=
(
type
==
OSL_NOTIFY_HANDLER
)
?
kacpi_notify_wq
:
kacpid_wq
;
if
(
!
queue_work
(
queue
,
&
dpc
->
work
))
{
ACPI_DEBUG_PRINT
((
ACPI_DB_ERROR
,
"Call to queue_work() failed.
\n
"
));
status
=
AE_ERROR
;
kfree
(
dpc
);
}
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