[PATCH]sched:idle: do not fetch current cpu id in loop

From: Gaurav Jindal (Gaurav Jindal)
Date: Mon May 02 2016 - 01:38:28 EST


Hi

Currently, in idle thread loop, smp_processor_id() fetches the cpu id
every time it runs thus taking more cpu cycles.

Instead, save the cpu id as local variable while entering the idle
thread and use it further. Since it is local varibale, it will be
gurranteed to be correct for each core. It will help to save cycles
consumed in fetching the cpu is using the smp_processor_id().

Patch:

-------------------------------------------------------------------
diff --git a/kernel/sched/idle.c b/kernel/sched/idle.c
index 1214f0a..9696f9e 100644
--- a/kernel/sched/idle.c
--- b/kernel/sched/idle.c
@@ -185,6 +185,9 @@ exit_idle:
*/
static void cpu_idle_loop(void)
{
+ int cpu_id;
+
+ cpu_id = smp_processor_id();
while(1)
/*
*If the arch has a polling bit, we maintain an invariant:
@@ -202,7 +205,7 @@ static void cpu_idle_loop(void)
check_pgt_cache();
rmp();

- if (cpu_is_offline(smp_processor_id()))
+ if (cpu_is_offline(cpu_id))
arch_cpu_idle_dead();

local_irq_disable();
------------------------------------------------------------------

Signed-off-by: Gaurav Jindal<gaurav.jindal@xxxxxxxxxxxxxx>
Reviewed-by: Sanjeev Yadav<Sanjeev.Yadav@xxxxxxxxxxxxxx>



Regards
Gaurav Jindal