]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
net: ena: Make missed_tx stat incremental
authorShay Agroskin <shayagr@amazon.com>
Wed, 19 Aug 2020 17:28:38 +0000 (20:28 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 27 Aug 2020 07:31:48 +0000 (09:31 +0200)
commitda995e0a6dacf5ce59c27ea4302f94232ec8b797
tree34b88e81ee3442e6d22627ca9edce31ba32ecbac
parent3942262b7499405223dcc219bc58cc540eb7651b
net: ena: Make missed_tx stat incremental

[ Upstream commit ccd143e5150f24b9ba15145c7221b61dd9e41021 ]

Most statistics in ena driver are incremented, meaning that a stat's
value is a sum of all increases done to it since driver/queue
initialization.

This patch makes all statistics this way, effectively making missed_tx
statistic incremental.
Also added a comment regarding rx_drops and tx_drops to make it
clearer how these counters are calculated.

Fixes: 11095fdb712b ("net: ena: add statistics for missed tx packets")
Signed-off-by: Shay Agroskin <shayagr@amazon.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/net/ethernet/amazon/ena/ena_netdev.c