Commit 3e597945384dee1457240158eb81e3afb90b68c2

Authored by Rusty Russell
1 parent f1fc057c79

cpumask: remove any_online_cpu() users: mm/

Impact: Remove obsolete API usage

any_online_cpu() is a good name, but it takes a cpumask_t, not a
pointer.

There are several places where any_online_cpu() doesn't really want a
mask arg at all.  Replace all callers with cpumask_any() and
cpumask_any_and().

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Mike Travis <travis@sgi.com>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -2141,7 +2141,7 @@
2141 2141 pg_data_t *pgdat = NODE_DATA(nid);
2142 2142 node_to_cpumask_ptr(mask, pgdat->node_id);
2143 2143  
2144   - if (any_online_cpu(*mask) < nr_cpu_ids)
  2144 + if (cpumask_any_and(cpu_online_mask, mask) < nr_cpu_ids)
2145 2145 /* One of our CPUs online: restore mask */
2146 2146 set_cpus_allowed_ptr(pgdat->kswapd, mask);
2147 2147 }