Heiner Kallweit
2020-Nov-13 09:27 UTC
[Bridge] [PATCH net] net: bridge: add missing counters to ndo_get_stats64 callback
In br_forward.c and br_input.c fields dev->stats.tx_dropped and dev->stats.multicast are populated, but they are ignored in ndo_get_stats64. Fixes: 28172739f0a2 ("net: fix 64 bit counters on 32 bit arches") Signed-off-by: Heiner Kallweit <hkallweit1 at gmail.com> --- Patch will not apply cleanly on kernel versions that don't have dev_fetch_sw_netstats() yet. --- net/bridge/br_device.c | 1 + 1 file changed, 1 insertion(+) diff --git a/net/bridge/br_device.c b/net/bridge/br_device.c index 387403931..77bcc8487 100644 --- a/net/bridge/br_device.c +++ b/net/bridge/br_device.c @@ -207,6 +207,7 @@ static void br_get_stats64(struct net_device *dev, { struct net_bridge *br = netdev_priv(dev); + netdev_stats_to_stats64(stats, &dev->stats); dev_fetch_sw_netstats(stats, br->stats); } -- 2.29.2
Jakub Kicinski
2020-Nov-16 23:50 UTC
[Bridge] [PATCH net] net: bridge: add missing counters to ndo_get_stats64 callback
On Fri, 13 Nov 2020 10:27:27 +0100 Heiner Kallweit wrote:> In br_forward.c and br_input.c fields dev->stats.tx_dropped and > dev->stats.multicast are populated, but they are ignored in > ndo_get_stats64. > > Fixes: 28172739f0a2 ("net: fix 64 bit counters on 32 bit arches") > Signed-off-by: Heiner Kallweit <hkallweit1 at gmail.com> > --- > Patch will not apply cleanly on kernel versions that don't have > dev_fetch_sw_netstats() yet.Looks straightforward enough, I'll backport manually. Applied, thanks!