diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/s390/appldata/appldata_net_sum.c | 2 | ||||
-rw-r--r-- | arch/sparc64/solaris/ioctl.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/arch/s390/appldata/appldata_net_sum.c b/arch/s390/appldata/appldata_net_sum.c index a43f3488fecf..2180ac105b05 100644 --- a/arch/s390/appldata/appldata_net_sum.c +++ b/arch/s390/appldata/appldata_net_sum.c | |||
@@ -107,7 +107,7 @@ static void appldata_get_net_sum_data(void *data) | |||
107 | tx_dropped = 0; | 107 | tx_dropped = 0; |
108 | collisions = 0; | 108 | collisions = 0; |
109 | read_lock(&dev_base_lock); | 109 | read_lock(&dev_base_lock); |
110 | for (dev = dev_base; dev != NULL; dev = dev->next) { | 110 | for_each_netdev(dev) { |
111 | stats = dev->get_stats(dev); | 111 | stats = dev->get_stats(dev); |
112 | rx_packets += stats->rx_packets; | 112 | rx_packets += stats->rx_packets; |
113 | tx_packets += stats->tx_packets; | 113 | tx_packets += stats->tx_packets; |
diff --git a/arch/sparc64/solaris/ioctl.c b/arch/sparc64/solaris/ioctl.c index 330743c5b3d8..18352a498628 100644 --- a/arch/sparc64/solaris/ioctl.c +++ b/arch/sparc64/solaris/ioctl.c | |||
@@ -686,7 +686,8 @@ static inline int solaris_i(unsigned int fd, unsigned int cmd, u32 arg) | |||
686 | int i = 0; | 686 | int i = 0; |
687 | 687 | ||
688 | read_lock_bh(&dev_base_lock); | 688 | read_lock_bh(&dev_base_lock); |
689 | for (d = dev_base; d; d = d->next) i++; | 689 | for_each_netdev(d) |
690 | i++; | ||
690 | read_unlock_bh(&dev_base_lock); | 691 | read_unlock_bh(&dev_base_lock); |
691 | 692 | ||
692 | if (put_user (i, (int __user *)A(arg))) | 693 | if (put_user (i, (int __user *)A(arg))) |