From: Johannes Berg Date: Thu, 23 Apr 2015 10:06:30 +0000 (+0200) Subject: netdev_alloc_pcpu_stats: use less common iterator variable X-Git-Tag: v4.9.8~4330^2~26 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ec65aafb9e3f316ff9167289e288856a7d528773;p=platform%2Fkernel%2Flinux-rpi3.git netdev_alloc_pcpu_stats: use less common iterator variable With the CPU iteration variable called 'i', it's relatively easy to have variable shadowing which sparse will warn about. Avoid that by renaming the variable to __cpu which is less likely to be used in the surrounding context. Signed-off-by: Johannes Berg Signed-off-by: David S. Miller --- diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index dae106a..dbad4d7 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -2025,10 +2025,10 @@ struct pcpu_sw_netstats { ({ \ typeof(type) __percpu *pcpu_stats = alloc_percpu(type); \ if (pcpu_stats) { \ - int i; \ - for_each_possible_cpu(i) { \ + int __cpu; \ + for_each_possible_cpu(__cpu) { \ typeof(type) *stat; \ - stat = per_cpu_ptr(pcpu_stats, i); \ + stat = per_cpu_ptr(pcpu_stats, __cpu); \ u64_stats_init(&stat->syncp); \ } \ } \