|
@@ -153,14 +153,14 @@ static int loopback_xmit(struct sk_buff *skb, struct net_device *dev)
|
|
#endif
|
|
#endif
|
|
dev->last_rx = jiffies;
|
|
dev->last_rx = jiffies;
|
|
|
|
|
|
- lb_stats = &per_cpu(pcpu_lstats, get_cpu());
|
|
|
|
|
|
+ /* it's OK to use __get_cpu_var() because BHs are off */
|
|
|
|
+ lb_stats = &__get_cpu_var(pcpu_lstats);
|
|
lb_stats->bytes += skb->len;
|
|
lb_stats->bytes += skb->len;
|
|
lb_stats->packets++;
|
|
lb_stats->packets++;
|
|
- put_cpu();
|
|
|
|
|
|
|
|
netif_rx(skb);
|
|
netif_rx(skb);
|
|
|
|
|
|
- return(0);
|
|
|
|
|
|
+ return 0;
|
|
}
|
|
}
|
|
|
|
|
|
static struct net_device_stats loopback_stats;
|
|
static struct net_device_stats loopback_stats;
|