diff options
Diffstat (limited to 'net')
| -rw-r--r-- | net/core/dev.c | 2 | ||||
| -rw-r--r-- | net/core/utils.c | 4 | ||||
| -rw-r--r-- | net/ipv4/proc.c | 2 | ||||
| -rw-r--r-- | net/ipv6/proc.c | 2 | ||||
| -rw-r--r-- | net/socket.c | 2 | 
5 files changed, 6 insertions, 6 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index ffb82073056..2afb0de9532 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -3237,7 +3237,7 @@ static int __init net_dev_init(void)  	 *	Initialise the packet receive queues.  	 */ -	for (i = 0; i < NR_CPUS; i++) { +	for_each_cpu(i) {  		struct softnet_data *queue;  		queue = &per_cpu(softnet_data, i); diff --git a/net/core/utils.c b/net/core/utils.c index ac1d1fcf867..fdc4f38bc46 100644 --- a/net/core/utils.c +++ b/net/core/utils.c @@ -121,7 +121,7 @@ void __init net_random_init(void)  {  	int i; -	for (i = 0; i < NR_CPUS; i++) { +	for_each_cpu(i) {  		struct nrnd_state *state = &per_cpu(net_rand_state,i);  		__net_srandom(state, i+jiffies);  	} @@ -133,7 +133,7 @@ static int net_random_reseed(void)  	unsigned long seed[NR_CPUS];  	get_random_bytes(seed, sizeof(seed)); -	for (i = 0; i < NR_CPUS; i++) { +	for_each_cpu(i) {  		struct nrnd_state *state = &per_cpu(net_rand_state,i);  		__net_srandom(state, seed[i]);  	} diff --git a/net/ipv4/proc.c b/net/ipv4/proc.c index 39d49dc333a..1b167c4bb3b 100644 --- a/net/ipv4/proc.c +++ b/net/ipv4/proc.c @@ -49,7 +49,7 @@ static int fold_prot_inuse(struct proto *proto)  	int res = 0;  	int cpu; -	for (cpu = 0; cpu < NR_CPUS; cpu++) +	for_each_cpu(cpu)  		res += proto->stats[cpu].inuse;  	return res; diff --git a/net/ipv6/proc.c b/net/ipv6/proc.c index 50a13e75d70..4238b1ed886 100644 --- a/net/ipv6/proc.c +++ b/net/ipv6/proc.c @@ -38,7 +38,7 @@ static int fold_prot_inuse(struct proto *proto)  	int res = 0;  	int cpu; -	for (cpu=0; cpu<NR_CPUS; cpu++) +	for_each_cpu(cpu)  		res += proto->stats[cpu].inuse;  	return res; diff --git a/net/socket.c b/net/socket.c index b38a263853c..a00851f981d 100644 --- a/net/socket.c +++ b/net/socket.c @@ -2078,7 +2078,7 @@ void socket_seq_show(struct seq_file *seq)  	int cpu;  	int counter = 0; -	for (cpu = 0; cpu < NR_CPUS; cpu++) +	for_each_cpu(cpu)  		counter += per_cpu(sockets_in_use, cpu);  	/* It can be negative, by the way. 8) */  |