diff options
author | Li RongQing <roy.qing.li@gmail.com> | 2014-01-04 01:22:34 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-01-04 20:11:33 -0500 |
commit | cdf3e274cf1b36e9a2fef2d175cabc566af841b2 (patch) | |
tree | 0d546fd7de0b74fb36a8406a75e0433db92362e6 /drivers/net/macvlan.c | |
parent | 8f84985fec10de64a6b4cdfea45f2b0ab8f07c78 (diff) |
macvlan: unify macvlan_pcpu_stats and vlan_pcpu_stats
They are same, so unify them as one; since macvlan is a kind of vlan,
vlan_pcpu_stats should be a proper name for vlan and macvlan.
Signed-off-by: Li RongQing <roy.qing.li@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/macvlan.c')
-rw-r--r-- | drivers/net/macvlan.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/macvlan.c b/drivers/net/macvlan.c index 10406dbc35b3..94198366de7f 100644 --- a/drivers/net/macvlan.c +++ b/drivers/net/macvlan.c | |||
@@ -305,7 +305,7 @@ static netdev_tx_t macvlan_start_xmit(struct sk_buff *skb, | |||
305 | } | 305 | } |
306 | 306 | ||
307 | if (likely(ret == NET_XMIT_SUCCESS || ret == NET_XMIT_CN)) { | 307 | if (likely(ret == NET_XMIT_SUCCESS || ret == NET_XMIT_CN)) { |
308 | struct macvlan_pcpu_stats *pcpu_stats; | 308 | struct vlan_pcpu_stats *pcpu_stats; |
309 | 309 | ||
310 | pcpu_stats = this_cpu_ptr(vlan->pcpu_stats); | 310 | pcpu_stats = this_cpu_ptr(vlan->pcpu_stats); |
311 | u64_stats_update_begin(&pcpu_stats->syncp); | 311 | u64_stats_update_begin(&pcpu_stats->syncp); |
@@ -545,12 +545,12 @@ static int macvlan_init(struct net_device *dev) | |||
545 | 545 | ||
546 | macvlan_set_lockdep_class(dev); | 546 | macvlan_set_lockdep_class(dev); |
547 | 547 | ||
548 | vlan->pcpu_stats = alloc_percpu(struct macvlan_pcpu_stats); | 548 | vlan->pcpu_stats = alloc_percpu(struct vlan_pcpu_stats); |
549 | if (!vlan->pcpu_stats) | 549 | if (!vlan->pcpu_stats) |
550 | return -ENOMEM; | 550 | return -ENOMEM; |
551 | 551 | ||
552 | for_each_possible_cpu(i) { | 552 | for_each_possible_cpu(i) { |
553 | struct macvlan_pcpu_stats *mvlstats; | 553 | struct vlan_pcpu_stats *mvlstats; |
554 | mvlstats = per_cpu_ptr(vlan->pcpu_stats, i); | 554 | mvlstats = per_cpu_ptr(vlan->pcpu_stats, i); |
555 | u64_stats_init(&mvlstats->syncp); | 555 | u64_stats_init(&mvlstats->syncp); |
556 | } | 556 | } |
@@ -576,7 +576,7 @@ static struct rtnl_link_stats64 *macvlan_dev_get_stats64(struct net_device *dev, | |||
576 | struct macvlan_dev *vlan = netdev_priv(dev); | 576 | struct macvlan_dev *vlan = netdev_priv(dev); |
577 | 577 | ||
578 | if (vlan->pcpu_stats) { | 578 | if (vlan->pcpu_stats) { |
579 | struct macvlan_pcpu_stats *p; | 579 | struct vlan_pcpu_stats *p; |
580 | u64 rx_packets, rx_bytes, rx_multicast, tx_packets, tx_bytes; | 580 | u64 rx_packets, rx_bytes, rx_multicast, tx_packets, tx_bytes; |
581 | u32 rx_errors = 0, tx_dropped = 0; | 581 | u32 rx_errors = 0, tx_dropped = 0; |
582 | unsigned int start; | 582 | unsigned int start; |