aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/veth.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/veth.c')
-rw-r--r--drivers/net/veth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/veth.c b/drivers/net/veth.c
index 3a15de56df9..35609e64f6f 100644
--- a/drivers/net/veth.c
+++ b/drivers/net/veth.c
@@ -34,7 +34,7 @@ struct veth_net_stats {
34 34
35struct veth_priv { 35struct veth_priv {
36 struct net_device *peer; 36 struct net_device *peer;
37 struct veth_net_stats *stats; 37 struct veth_net_stats __percpu *stats;
38 unsigned ip_summed; 38 unsigned ip_summed;
39}; 39};
40 40
@@ -263,7 +263,7 @@ static int veth_change_mtu(struct net_device *dev, int new_mtu)
263 263
264static int veth_dev_init(struct net_device *dev) 264static int veth_dev_init(struct net_device *dev)
265{ 265{
266 struct veth_net_stats *stats; 266 struct veth_net_stats __percpu *stats;
267 struct veth_priv *priv; 267 struct veth_priv *priv;
268 268
269 stats = alloc_percpu(struct veth_net_stats); 269 stats = alloc_percpu(struct veth_net_stats);