[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20200121170350.GC18808@shell.armlinux.org.uk>
Date: Tue, 21 Jan 2020 17:03:50 +0000
From: Russell King - ARM Linux admin <linux@...linux.org.uk>
To: Qais Yousef <qais.yousef@....com>
Cc: Thomas Gleixner <tglx@...utronix.de>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Josh Poimboeuf <jpoimboe@...hat.com>,
"Peter Zijlstra (Intel)" <peterz@...radead.org>,
Jiri Kosina <jkosina@...e.cz>,
Nicholas Piggin <npiggin@...il.com>,
Daniel Lezcano <daniel.lezcano@...aro.org>,
Ingo Molnar <mingo@...nel.org>,
Eiichi Tsukata <devel@...ukata.com>,
Zhenzhong Duan <zhenzhong.duan@...cle.com>,
Nadav Amit <namit@...are.com>,
"Rafael J. Wysocki" <rafael.j.wysocki@...el.com>,
Tony Luck <tony.luck@...el.com>,
Fenghua Yu <fenghua.yu@...el.com>,
Catalin Marinas <catalin.marinas@....com>,
Will Deacon <will@...nel.org>,
linux-arm-kernel@...ts.infradead.org, linux-ia64@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH v2 01/14] smp: Create a new function to shutdown nonboot
cpus
On Mon, Nov 25, 2019 at 11:27:41AM +0000, Qais Yousef wrote:
> This function will be used later in machine_shutdown() for some archs.
>
> Signed-off-by: Qais Yousef <qais.yousef@....com>
> CC: Thomas Gleixner <tglx@...utronix.de>
> CC: Josh Poimboeuf <jpoimboe@...hat.com>
> CC: "Peter Zijlstra (Intel)" <peterz@...radead.org>
> CC: Jiri Kosina <jkosina@...e.cz>
> CC: Nicholas Piggin <npiggin@...il.com>
> CC: Daniel Lezcano <daniel.lezcano@...aro.org>
> CC: Ingo Molnar <mingo@...nel.org>
> CC: Eiichi Tsukata <devel@...ukata.com>
> CC: Zhenzhong Duan <zhenzhong.duan@...cle.com>
> CC: Nadav Amit <namit@...are.com>
> CC: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
> CC: "Rafael J. Wysocki" <rafael.j.wysocki@...el.com>
> CC: Tony Luck <tony.luck@...el.com>
> CC: Fenghua Yu <fenghua.yu@...el.com>
> CC: Russell King <linux@...linux.org.uk>
> CC: Catalin Marinas <catalin.marinas@....com>
> CC: Will Deacon <will@...nel.org>
> CC: linux-arm-kernel@...ts.infradead.org
> CC: linux-ia64@...r.kernel.org
> CC: linux-kernel@...r.kernel.org
> ---
> include/linux/cpu.h | 2 ++
> kernel/cpu.c | 17 +++++++++++++++++
> 2 files changed, 19 insertions(+)
>
> diff --git a/include/linux/cpu.h b/include/linux/cpu.h
> index bc6c879bd110..8229932fb053 100644
> --- a/include/linux/cpu.h
> +++ b/include/linux/cpu.h
> @@ -118,6 +118,7 @@ extern void cpu_hotplug_disable(void);
> extern void cpu_hotplug_enable(void);
> void clear_tasks_mm_cpumask(int cpu);
> int cpu_down(unsigned int cpu);
> +extern void smp_shutdown_nonboot_cpus(unsigned int primary_cpu);
>
> #else /* CONFIG_HOTPLUG_CPU */
>
> @@ -129,6 +130,7 @@ static inline int cpus_read_trylock(void) { return true; }
> static inline void lockdep_assert_cpus_held(void) { }
> static inline void cpu_hotplug_disable(void) { }
> static inline void cpu_hotplug_enable(void) { }
> +static inline void smp_shutdown_nonboot_cpus(unsigned int primary_cpu) { }
> #endif /* !CONFIG_HOTPLUG_CPU */
>
> /* Wrappers which go away once all code is converted */
> diff --git a/kernel/cpu.c b/kernel/cpu.c
> index e2cad3ee2ead..94055a0d989e 100644
> --- a/kernel/cpu.c
> +++ b/kernel/cpu.c
> @@ -1058,6 +1058,23 @@ int cpu_down(unsigned int cpu)
> }
> EXPORT_SYMBOL(cpu_down);
>
> +void smp_shutdown_nonboot_cpus(unsigned int primary_cpu)
> +{
> + unsigned int cpu;
> +
> + if (!cpu_online(primary_cpu)) {
> + pr_info("Attempting to shutdodwn nonboot cpus while boot cpu is offline!\n");
> + cpu_online(primary_cpu);
> + }
> +
> + for_each_present_cpu(cpu) {
> + if (cpu == primary_cpu)
> + continue;
> + if (cpu_online(cpu))
> + cpu_down(cpu);
> + }
How does this avoid racing with userspace attempting to restart CPUs
that have already been taken down by this function?
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTC broadband for 0.8mile line in suburbia: sync at 12.1Mbps down 622kbps up
According to speedtest.net: 11.9Mbps down 500kbps up
Powered by blists - more mailing lists