Revert "ip_tunnels: use DEV_STATS_INC()"
This reverts commite90e70343bwhich is commit9b271ebaf9upstream. It breaks the build due to a previous commit that was reverted for Android ABI issues. If this needs to be added, it can be done so in the future in an abi-safe way. Bug: 161946584 Change-Id: I016ca3ddfafde35fe1b91876d3e9536fdbd00320 Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
@@ -455,14 +455,15 @@ static inline void iptunnel_xmit_stats(struct net_device *dev, int pkt_len)
|
|||||||
tstats->tx_packets++;
|
tstats->tx_packets++;
|
||||||
u64_stats_update_end(&tstats->syncp);
|
u64_stats_update_end(&tstats->syncp);
|
||||||
put_cpu_ptr(tstats);
|
put_cpu_ptr(tstats);
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (pkt_len < 0) {
|
|
||||||
DEV_STATS_INC(dev, tx_errors);
|
|
||||||
DEV_STATS_INC(dev, tx_aborted_errors);
|
|
||||||
} else {
|
} else {
|
||||||
DEV_STATS_INC(dev, tx_dropped);
|
struct net_device_stats *err_stats = &dev->stats;
|
||||||
|
|
||||||
|
if (pkt_len < 0) {
|
||||||
|
err_stats->tx_errors++;
|
||||||
|
err_stats->tx_aborted_errors++;
|
||||||
|
} else {
|
||||||
|
err_stats->tx_dropped++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user