Revert "rcu: Run nocb kthreads on little CPUs"

This reverts commit ed0fe24d74d468b913445f37560d574ce40b2309.

Signed-off-by: azrim <mirzaspc@gmail.com>
This commit is contained in:
azrim 2022-03-16 15:13:02 +00:00
parent 812f76b6fa
commit f547b70409
No known key found for this signature in database
GPG Key ID: 497F8FB059B45D1C

View File

@ -2385,8 +2385,8 @@ static void rcu_spawn_one_nocb_kthread(struct rcu_state *rsp, int cpu)
}
/* Spawn the kthread for this CPU and RCU flavor. */
t = kthread_run_perf_critical(cpu_lp_mask, rcu_nocb_kthread, rdp_spawn,
"rcuo%c/%d", rsp->abbr, cpu);
t = kthread_run(rcu_nocb_kthread, rdp_spawn,
"rcuo%c/%d", rsp->abbr, cpu);
BUG_ON(IS_ERR(t));
WRITE_ONCE(rdp_spawn->nocb_kthread, t);
}