diff options
author | Eric Dumazet <edumazet@google.com> | 2015-02-11 19:51:46 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-02-11 20:03:23 -0800 |
commit | 6aa6395ff320abe242e05766ae201f23e7978a94 (patch) | |
tree | b18cbe4efdf51e5f77e9119af9085fa3680a7457 /drivers/net | |
parent | d0af71a3573f1217b140c60b66f1a9b335fb058b (diff) |
ipvlan: add a missing __percpu pcpu_stats
Cosmetic patch to add __percpu qualifier to pcpu_stats
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/ipvlan/ipvlan.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ipvlan/ipvlan.h b/drivers/net/ipvlan/ipvlan.h index 2729f64b3e7..924ea98bd53 100644 --- a/drivers/net/ipvlan/ipvlan.h +++ b/drivers/net/ipvlan/ipvlan.h @@ -67,7 +67,7 @@ struct ipvl_dev { struct list_head addrs; int ipv4cnt; int ipv6cnt; - struct ipvl_pcpu_stats *pcpu_stats; + struct ipvl_pcpu_stats __percpu *pcpu_stats; DECLARE_BITMAP(mac_filters, IPVLAN_MAC_FILTER_SIZE); netdev_features_t sfeatures; u32 msg_enable; |