aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorMike Travis <travis@sgi.com>2008-05-12 15:21:13 -0400
committerThomas Gleixner <tglx@linutronix.de>2008-05-23 12:35:12 -0400
commit0e12f848b337fc034ceb3c0d03d75f8de1b8cc96 (patch)
treead08523917b4726471e481227af7cee444c85f09 /net
parent6d6a4360876f1e758e215570ccb04518db7cec3a (diff)
net: use performance variant for_each_cpu_mask_nr
Change references from for_each_cpu_mask to for_each_cpu_mask_nr where appropriate Reviewed-by: Paul Jackson <pj@sgi.com> Reviewed-by: Christoph Lameter <clameter@sgi.com> Signed-off-by: Mike Travis <travis@sgi.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'net')
-rw-r--r--net/core/dev.c4
-rw-r--r--net/iucv/iucv.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/net/core/dev.c b/net/core/dev.c
index 582963077877..ee61b987f4d9 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -2239,7 +2239,7 @@ out:
2239 */ 2239 */
2240 if (!cpus_empty(net_dma.channel_mask)) { 2240 if (!cpus_empty(net_dma.channel_mask)) {
2241 int chan_idx; 2241 int chan_idx;
2242 for_each_cpu_mask(chan_idx, net_dma.channel_mask) { 2242 for_each_cpu_mask_nr(chan_idx, net_dma.channel_mask) {
2243 struct dma_chan *chan = net_dma.channels[chan_idx]; 2243 struct dma_chan *chan = net_dma.channels[chan_idx];
2244 if (chan) 2244 if (chan)
2245 dma_async_memcpy_issue_pending(chan); 2245 dma_async_memcpy_issue_pending(chan);
@@ -4300,7 +4300,7 @@ static void net_dma_rebalance(struct net_dma *net_dma)
4300 i = 0; 4300 i = 0;
4301 cpu = first_cpu(cpu_online_map); 4301 cpu = first_cpu(cpu_online_map);
4302 4302
4303 for_each_cpu_mask(chan_idx, net_dma->channel_mask) { 4303 for_each_cpu_mask_nr(chan_idx, net_dma->channel_mask) {
4304 chan = net_dma->channels[chan_idx]; 4304 chan = net_dma->channels[chan_idx];
4305 4305
4306 n = ((num_online_cpus() / cpus_weight(net_dma->channel_mask)) 4306 n = ((num_online_cpus() / cpus_weight(net_dma->channel_mask))
diff --git a/net/iucv/iucv.c b/net/iucv/iucv.c
index 918970762131..8de511070593 100644
--- a/net/iucv/iucv.c
+++ b/net/iucv/iucv.c
@@ -497,7 +497,7 @@ static void iucv_setmask_up(void)
497 /* Disable all cpu but the first in cpu_irq_cpumask. */ 497 /* Disable all cpu but the first in cpu_irq_cpumask. */
498 cpumask = iucv_irq_cpumask; 498 cpumask = iucv_irq_cpumask;
499 cpu_clear(first_cpu(iucv_irq_cpumask), cpumask); 499 cpu_clear(first_cpu(iucv_irq_cpumask), cpumask);
500 for_each_cpu_mask(cpu, cpumask) 500 for_each_cpu_mask_nr(cpu, cpumask)
501 smp_call_function_single(cpu, iucv_block_cpu, NULL, 0, 1); 501 smp_call_function_single(cpu, iucv_block_cpu, NULL, 0, 1);
502} 502}
503 503