diff options
author | Andrew Morton <akpm@osdl.org> | 2006-05-25 13:26:53 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-06-17 21:25:58 -0700 |
commit | 17f3ae08b6e7fd778371f2cafbd1c988a67ee343 (patch) | |
tree | 9e33f603469628d9bbe679bede945d61e7417dbf /drivers/dma | |
parent | 1a2449a87bb7606113b1aa1a9d3c3e78ef189a1c (diff) | |
download | linux-3.10-17f3ae08b6e7fd778371f2cafbd1c988a67ee343.tar.gz linux-3.10-17f3ae08b6e7fd778371f2cafbd1c988a67ee343.tar.bz2 linux-3.10-17f3ae08b6e7fd778371f2cafbd1c988a67ee343.zip |
[I/OAT]: Do not use for_each_cpu().
for_each_cpu() is going away (and is gone in -mm).
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Chris Leech <christopher.leech@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/dmaengine.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/dma/dmaengine.c b/drivers/dma/dmaengine.c index 473c47b6f09..5829143558e 100644 --- a/drivers/dma/dmaengine.c +++ b/drivers/dma/dmaengine.c @@ -79,7 +79,7 @@ static ssize_t show_memcpy_count(struct class_device *cd, char *buf) unsigned long count = 0; int i; - for_each_cpu(i) + for_each_possible_cpu(i) count += per_cpu_ptr(chan->local, i)->memcpy_count; return sprintf(buf, "%lu\n", count); @@ -91,7 +91,7 @@ static ssize_t show_bytes_transferred(struct class_device *cd, char *buf) unsigned long count = 0; int i; - for_each_cpu(i) + for_each_possible_cpu(i) count += per_cpu_ptr(chan->local, i)->bytes_transferred; return sprintf(buf, "%lu\n", count); @@ -182,7 +182,7 @@ static void dma_chan_free_rcu(struct rcu_head *rcu) struct dma_chan *chan = container_of(rcu, struct dma_chan, rcu); int bias = 0x7FFFFFFF; int i; - for_each_cpu(i) + for_each_possible_cpu(i) bias -= local_read(&per_cpu_ptr(chan->local, i)->refcount); atomic_sub(bias, &chan->refcount.refcount); kref_put(&chan->refcount, dma_chan_cleanup); |