smp: Optimize send_call_function_single_ipi()
Just like the ttwu_queue_remote() IPI, make use of _TIF_POLLING_NRFLAG to avoid sending IPIs to idle CPUs. [ mingo: Fix UP build bug. ] Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Signed-off-by: Ingo Molnar <mingo@kernel.org> Link: https://lore.kernel.org/r/20200526161907.953304789@infradead.org
Цей коміт міститься в:

зафіксовано
Ingo Molnar

джерело
afaa653c56
коміт
b2a02fc43a
@@ -2296,6 +2296,16 @@ static void wake_csd_func(void *info)
|
||||
sched_ttwu_pending();
|
||||
}
|
||||
|
||||
void send_call_function_single_ipi(int cpu)
|
||||
{
|
||||
struct rq *rq = cpu_rq(cpu);
|
||||
|
||||
if (!set_nr_if_polling(rq->idle))
|
||||
arch_send_call_function_single_ipi(cpu);
|
||||
else
|
||||
trace_sched_wake_idle_without_ipi(cpu);
|
||||
}
|
||||
|
||||
/*
|
||||
* Queue a task on the target CPUs wake_list and wake the CPU via IPI if
|
||||
* necessary. The wakee CPU on receipt of the IPI will queue the task
|
||||
|
@@ -289,6 +289,11 @@ static void do_idle(void)
|
||||
*/
|
||||
smp_mb__after_atomic();
|
||||
|
||||
/*
|
||||
* RCU relies on this call to be done outside of an RCU read-side
|
||||
* critical section.
|
||||
*/
|
||||
flush_smp_call_function_from_idle();
|
||||
sched_ttwu_pending();
|
||||
schedule_idle();
|
||||
|
||||
|
@@ -1506,11 +1506,12 @@ static inline void unregister_sched_domain_sysctl(void)
|
||||
}
|
||||
#endif
|
||||
|
||||
#else
|
||||
extern void flush_smp_call_function_from_idle(void);
|
||||
|
||||
#else /* !CONFIG_SMP: */
|
||||
static inline void flush_smp_call_function_from_idle(void) { }
|
||||
static inline void sched_ttwu_pending(void) { }
|
||||
|
||||
#endif /* CONFIG_SMP */
|
||||
#endif
|
||||
|
||||
#include "stats.h"
|
||||
#include "autogroup.h"
|
||||
|
Посилання в новій задачі
Заблокувати користувача