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

Commit 58463c1f authored by Rusty Russell's avatar Rusty Russell
Browse files

cpumask: avoid deprecated function in mm/slab.c



These days we use cpumask_empty() which takes a pointer.

Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
Acked-by: default avatarChristoph Lameter <cl@linux-foundation.org>
parent f6325e30
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1132,7 +1132,7 @@ static void __cpuinit cpuup_canceled(long cpu)
		if (nc)
			free_block(cachep, nc->entry, nc->avail, node);

		if (!cpus_empty(*mask)) {
		if (!cpumask_empty(mask)) {
			spin_unlock_irq(&l3->list_lock);
			goto free_array_cache;
		}