[Nouveau] [PATCH 06/38] x86/mmiotrace: Replace deprecated CPU-hotplug functions.
Steven Rostedt
rostedt at goodmis.org
Wed Aug 4 01:07:05 UTC 2021
On Tue, 3 Aug 2021 16:15:49 +0200
Sebastian Andrzej Siewior <bigeasy at linutronix.de> wrote:
> The functions get_online_cpus() and put_online_cpus() have been
> deprecated during the CPU hotplug rework. They map directly to
> cpus_read_lock() and cpus_read_unlock().
>
> Replace deprecated CPU-hotplug functions with the official version.
> The behavior remains unchanged.
>
> Cc: Steven Rostedt <rostedt at goodmis.org>
Reviewed-by: Steven Rostedt (VMware) <rostedt at goodmis.org>
-- Steve
> Cc: Ingo Molnar <mingo at kernel.org>
> Cc: Karol Herbst <karolherbst at gmail.com>
> Cc: Pekka Paalanen <ppaalanen at gmail.com>
> Cc: Dave Hansen <dave.hansen at linux.intel.com>
> Cc: Andy Lutomirski <luto at kernel.org>
> Cc: Peter Zijlstra <peterz at infradead.org>
> Cc: Thomas Gleixner <tglx at linutronix.de>
> Cc: Borislav Petkov <bp at alien8.de>
> Cc: x86 at kernel.org
> Cc: "H. Peter Anvin" <hpa at zytor.com>
> Cc: nouveau at lists.freedesktop.org
> Signed-off-by: Sebastian Andrzej Siewior <bigeasy at linutronix.de>
> ---
> arch/x86/mm/mmio-mod.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/arch/x86/mm/mmio-mod.c b/arch/x86/mm/mmio-mod.c
> index cd768dafca9e9..933a2ebad471b 100644
> --- a/arch/x86/mm/mmio-mod.c
> +++ b/arch/x86/mm/mmio-mod.c
> @@ -376,12 +376,12 @@ static void enter_uniprocessor(void)
> goto out;
> }
>
> - get_online_cpus();
> + cpus_read_lock();
> cpumask_copy(downed_cpus, cpu_online_mask);
> cpumask_clear_cpu(cpumask_first(cpu_online_mask), downed_cpus);
> if (num_online_cpus() > 1)
> pr_notice("Disabling non-boot CPUs...\n");
> - put_online_cpus();
> + cpus_read_unlock();
>
> for_each_cpu(cpu, downed_cpus) {
> err = remove_cpu(cpu);
More information about the Nouveau
mailing list