lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <20171212172059.GA11875@linux.vnet.ibm.com> Date: Tue, 12 Dec 2017 09:20:59 -0800 From: "Paul E. McKenney" <paulmck@...ux.vnet.ibm.com> To: linux-kernel@...r.kernel.org, linux-arm-kernel@...ts.infradead.org Cc: Russell King - ARM Linux <linux@...linux.org.uk>, Peng Fan <van.freenix@...il.com>, Fabio Estevam <fabio.estevam@....com>, Ingo Molnar <mingo@...nel.org>, "Peter Zijlstra (Intel)" <peterz@...radead.org>, Michal Hocko <mhocko@...e.com>, Thomas Gleixner <tglx@...utronix.de> Subject: [PATCH] ARM: CPU hotplug: Delegate complete() to surviving CPU The ARM implementation of arch_cpu_idle_dead() invokes complete(), but does so after RCU has stopped watching the outgoing CPU, which results in lockdep complaints because complete() invokes functions containing RCU readers. This patch therefore uses Thomas Gleixner's trick of delegating the complete() call to a surviving CPU via smp_call_function_single(). Reported-by: Peng Fan <van.freenix@...il.com> Reported-by: Russell King - ARM Linux <linux@...linux.org.uk> Signed-off-by: Paul E. McKenney <paulmck@...ux.vnet.ibm.com> Tested-by: Tested-by: Fabio Estevam <fabio.estevam@....com> Cc: Russell King <linux@...linux.org.uk> Cc: Ingo Molnar <mingo@...nel.org> Cc: "Peter Zijlstra (Intel)" <peterz@...radead.org> Cc: Michal Hocko <mhocko@...e.com> Cc: Thomas Gleixner <tglx@...utronix.de> Cc: <linux-arm-kernel@...ts.infradead.org> diff --git a/arch/arm/kernel/smp.c b/arch/arm/kernel/smp.c index b4fbf00ee4ad..75f85e20aafa 100644 --- a/arch/arm/kernel/smp.c +++ b/arch/arm/kernel/smp.c @@ -267,6 +267,14 @@ void __cpu_die(unsigned int cpu) } /* + * Invoke complete() on behalf of the outgoing CPU. + */ +static void arch_cpu_idle_dead_complete(void *arg) +{ + complete(&cpu_died); +} + +/* * Called from the idle thread for the CPU which has been shutdown. * * Note that we disable IRQs here, but do not re-enable them @@ -293,9 +301,11 @@ void arch_cpu_idle_dead(void) /* * Tell __cpu_die() that this CPU is now safe to dispose of. Once * this returns, power and/or clocks can be removed at any point - * from this CPU and its cache by platform_cpu_kill(). + * from this CPU and its cache by platform_cpu_kill(). We cannot + * call complete() this late, so we delegate it to an online CPU. */ - complete(&cpu_died); + smp_call_function_single(cpumask_first(cpu_online_mask), + arch_cpu_idle_dead_complete, NULL, 0); /* * Ensure that the cache lines associated with that completion are
Powered by blists - more mailing lists