Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Linux-Kernel
linux-evl
Commits
dfe51bc4
Commit
dfe51bc4
authored
Jan 10, 2021
by
Philippe Gerum
Browse files
evl: rename irq_pipeline_send_remote() to irq_send_oob_ipi()
Signed-off-by:
Philippe Gerum
<
rpm@xenomai.org
>
parent
5f7a449a
Changes
2
Show whitespace changes
Inline
Side-by-side
kernel/evl/sched/core.c
View file @
dfe51bc4
...
...
@@ -874,8 +874,7 @@ static inline bool test_resched(struct evl_rq *this_rq)
#ifdef CONFIG_SMP
/* Send resched IPI to remote CPU(s). */
if
(
unlikely
(
!
cpumask_empty
(
&
this_rq
->
resched_cpus
)))
{
irq_pipeline_send_remote
(
RESCHEDULE_OOB_IPI
,
&
this_rq
->
resched_cpus
);
irq_send_oob_ipi
(
RESCHEDULE_OOB_IPI
,
&
this_rq
->
resched_cpus
);
cpumask_clear
(
&
this_rq
->
resched_cpus
);
this_rq
->
local_flags
&=
~
RQ_SCHED
;
}
...
...
kernel/evl/tick.c
View file @
dfe51bc4
...
...
@@ -247,7 +247,6 @@ void evl_program_proxy_tick(struct evl_clock *clock)
#ifdef CONFIG_SMP
void
evl_send_timer_ipi
(
struct
evl_clock
*
clock
,
struct
evl_rq
*
rq
)
{
irq_pipeline_send_remote
(
TIMER_OOB_IPI
,
cpumask_of
(
evl_rq_cpu
(
rq
)));
irq_send_oob_ipi
(
TIMER_OOB_IPI
,
cpumask_of
(
evl_rq_cpu
(
rq
)));
}
#endif
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