Commit 8ae9e3f6 authored by Sebastian Andrzej Siewior's avatar Sebastian Andrzej Siewior Committed by Thomas Gleixner
Browse files

x86/mce/inject: Replace deprecated CPU-hotplug functions.



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.

Signed-off-by: default avatarSebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/20210803141621.780504-10-bigeasy@linutronix.de
parent 2089f34f
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -235,7 +235,7 @@ static void __maybe_unused raise_mce(struct mce *m)
		unsigned long start;
		int cpu;

		get_online_cpus();
		cpus_read_lock();
		cpumask_copy(mce_inject_cpumask, cpu_online_mask);
		cpumask_clear_cpu(get_cpu(), mce_inject_cpumask);
		for_each_online_cpu(cpu) {
@@ -269,7 +269,7 @@ static void __maybe_unused raise_mce(struct mce *m)
		}
		raise_local();
		put_cpu();
		put_online_cpus();
		cpus_read_unlock();
	} else {
		preempt_disable();
		raise_local();
@@ -529,7 +529,7 @@ static void do_inject(void)
		cpu = get_nbc_for_node(topology_die_id(cpu));
	}

	get_online_cpus();
	cpus_read_lock();
	if (!cpu_online(cpu))
		goto err;

@@ -553,7 +553,7 @@ static void do_inject(void)
	}

err:
	put_online_cpus();
	cpus_read_unlock();

}