diff options
author | stephen hemminger <shemminger@vyatta.com> | 2012-04-12 02:31:16 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-04-14 14:47:05 -0400 |
commit | 87b6d218f3adb00e6b58c7f96f8b5a74ff91abb4 (patch) | |
tree | 0a8108621afcaf9549a05a33ca08adb4a810b257 /include/net | |
parent | 64d683c5825003ffb3b127057a165e6bfc26691e (diff) |
tunnel: implement 64 bits statistics
Convert the per-cpu statistics kept for GRE, IPIP, and SIT tunnels
to use 64 bit statistics.
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/ipip.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/ipip.h b/include/net/ipip.h index a32654d52730..a93cf6d7e94b 100644 --- a/include/net/ipip.h +++ b/include/net/ipip.h | |||
@@ -54,8 +54,10 @@ struct ip_tunnel_prl_entry { | |||
54 | \ | 54 | \ |
55 | err = ip_local_out(skb); \ | 55 | err = ip_local_out(skb); \ |
56 | if (likely(net_xmit_eval(err) == 0)) { \ | 56 | if (likely(net_xmit_eval(err) == 0)) { \ |
57 | u64_stats_update_begin(&(stats1)->syncp); \ | ||
57 | (stats1)->tx_bytes += pkt_len; \ | 58 | (stats1)->tx_bytes += pkt_len; \ |
58 | (stats1)->tx_packets++; \ | 59 | (stats1)->tx_packets++; \ |
60 | u64_stats_update_end(&(stats1)->syncp); \ | ||
59 | } else { \ | 61 | } else { \ |
60 | (stats2)->tx_errors++; \ | 62 | (stats2)->tx_errors++; \ |
61 | (stats2)->tx_aborted_errors++; \ | 63 | (stats2)->tx_aborted_errors++; \ |