Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 44c36aed authored by Anton Blanchard's avatar Anton Blanchard Committed by Matt Turner
Browse files

alpha: cpumask_of_node() should handle -1 as a node



CC: Richard Henderson <rth@twiddle.net>
CC: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Signed-off-by: default avatarMatt Turner <mattst88@gmail.com>
CC: linux-alpha@vger.kernel.org
CC: Rusty Russell <rusty@rustcorp.com.au>
CC: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarAnton Blanchard <anton@samba.org>
parent abd4d609
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -28,6 +28,9 @@ static const struct cpumask *cpumask_of_node(int node)
{
	int cpu;

	if (node == -1)
		return cpu_all_mask;

	cpumask_clear(&node_to_cpumask_map[node]);

	for_each_online_cpu(cpu) {