Skip to content

Commit

Permalink
cpumask: convert drivers/net/sfc
Browse files Browse the repository at this point in the history
Impact: reduce stack usage, use new cpumask API.

Remove a cpumask from the stack.  Ben Hutchings indicated that printing
a warning and returning 1 was acceptable for the corner case where allocation
fails.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Mike Travis <travis@sgi.com>
Cc: Ben Hutchings <bhutchings@solarflare.com>
Cc: linux-net-drivers@solarflare.com
  • Loading branch information
Rusty Russell authored and Ingo Molnar committed Jan 11, 2009
1 parent f7df8ed commit 2f8975f
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions drivers/net/sfc/efx.c
Original file line number Diff line number Diff line change
@@ -854,20 +854,27 @@ static void efx_fini_io(struct efx_nic *efx)
* interrupts across them. */
static int efx_wanted_rx_queues(void)
{
cpumask_t core_mask;
cpumask_var_t core_mask;
int count;
int cpu;

cpus_clear(core_mask);
if (!alloc_cpumask_var(&core_mask, GFP_KERNEL)) {
printk(KERN_WARNING
"efx.c: allocation failure, irq balancing hobbled\n");
return 1;
}

cpumask_clear(core_mask);
count = 0;
for_each_online_cpu(cpu) {
if (!cpu_isset(cpu, core_mask)) {
if (!cpumask_test_cpu(cpu, core_mask)) {
++count;
cpumask_or(&core_mask, &core_mask,
cpumask_or(core_mask, core_mask,
topology_core_cpumask(cpu));
}
}

free_cpumask_var(core_mask);
return count;
}

0 comments on commit 2f8975f

Please sign in to comment.