diff options
Diffstat (limited to 'net/openvswitch/vport.c')
-rw-r--r-- | net/openvswitch/vport.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net/openvswitch/vport.c b/net/openvswitch/vport.c index 03779e8a2622..70af0bedbac4 100644 --- a/net/openvswitch/vport.c +++ b/net/openvswitch/vport.c | |||
@@ -333,8 +333,7 @@ void ovs_vport_receive(struct vport *vport, struct sk_buff *skb) | |||
333 | { | 333 | { |
334 | struct vport_percpu_stats *stats; | 334 | struct vport_percpu_stats *stats; |
335 | 335 | ||
336 | stats = per_cpu_ptr(vport->percpu_stats, smp_processor_id()); | 336 | stats = this_cpu_ptr(vport->percpu_stats); |
337 | |||
338 | u64_stats_update_begin(&stats->sync); | 337 | u64_stats_update_begin(&stats->sync); |
339 | stats->rx_packets++; | 338 | stats->rx_packets++; |
340 | stats->rx_bytes += skb->len; | 339 | stats->rx_bytes += skb->len; |
@@ -359,7 +358,7 @@ int ovs_vport_send(struct vport *vport, struct sk_buff *skb) | |||
359 | if (likely(sent)) { | 358 | if (likely(sent)) { |
360 | struct vport_percpu_stats *stats; | 359 | struct vport_percpu_stats *stats; |
361 | 360 | ||
362 | stats = per_cpu_ptr(vport->percpu_stats, smp_processor_id()); | 361 | stats = this_cpu_ptr(vport->percpu_stats); |
363 | 362 | ||
364 | u64_stats_update_begin(&stats->sync); | 363 | u64_stats_update_begin(&stats->sync); |
365 | stats->tx_packets++; | 364 | stats->tx_packets++; |