diff options
author | WANG Cong <xiyou.wangcong@gmail.com> | 2014-02-13 14:46:28 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-02-14 15:49:55 -0500 |
commit | 1c213bd24ad04f4430031d20d740d7783162b099 (patch) | |
tree | eb42b8d216e89008065634185fd6a5fcce5ec4e9 /net/8021q/vlan_dev.c | |
parent | ed1acc8cd8c22efa919da8d300bab646e01c2dce (diff) |
net: introduce netdev_alloc_pcpu_stats() for drivers
There are many drivers calling alloc_percpu() to allocate pcpu stats
and then initializing ->syncp. So just introduce a helper function for them.
Cc: David S. Miller <davem@davemloft.net>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/8021q/vlan_dev.c')
-rw-r--r-- | net/8021q/vlan_dev.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/net/8021q/vlan_dev.c b/net/8021q/vlan_dev.c index de51c48c4393..566adbf5c506 100644 --- a/net/8021q/vlan_dev.c +++ b/net/8021q/vlan_dev.c | |||
@@ -556,7 +556,7 @@ static const struct net_device_ops vlan_netdev_ops; | |||
556 | static int vlan_dev_init(struct net_device *dev) | 556 | static int vlan_dev_init(struct net_device *dev) |
557 | { | 557 | { |
558 | struct net_device *real_dev = vlan_dev_priv(dev)->real_dev; | 558 | struct net_device *real_dev = vlan_dev_priv(dev)->real_dev; |
559 | int subclass = 0, i; | 559 | int subclass = 0; |
560 | 560 | ||
561 | netif_carrier_off(dev); | 561 | netif_carrier_off(dev); |
562 | 562 | ||
@@ -606,17 +606,10 @@ static int vlan_dev_init(struct net_device *dev) | |||
606 | 606 | ||
607 | vlan_dev_set_lockdep_class(dev, subclass); | 607 | vlan_dev_set_lockdep_class(dev, subclass); |
608 | 608 | ||
609 | vlan_dev_priv(dev)->vlan_pcpu_stats = alloc_percpu(struct vlan_pcpu_stats); | 609 | vlan_dev_priv(dev)->vlan_pcpu_stats = netdev_alloc_pcpu_stats(struct vlan_pcpu_stats); |
610 | if (!vlan_dev_priv(dev)->vlan_pcpu_stats) | 610 | if (!vlan_dev_priv(dev)->vlan_pcpu_stats) |
611 | return -ENOMEM; | 611 | return -ENOMEM; |
612 | 612 | ||
613 | for_each_possible_cpu(i) { | ||
614 | struct vlan_pcpu_stats *vlan_stat; | ||
615 | vlan_stat = per_cpu_ptr(vlan_dev_priv(dev)->vlan_pcpu_stats, i); | ||
616 | u64_stats_init(&vlan_stat->syncp); | ||
617 | } | ||
618 | |||
619 | |||
620 | return 0; | 613 | return 0; |
621 | } | 614 | } |
622 | 615 | ||