mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-19 02:04:19 +08:00
tg3: fix return value in tg3_get_stats64
When tp->hw_stats is 0, tg3_get_stats64 should display previously recorded stats. So it returns &tp->net_stats_prev. But the caller, dev_get_stats, ignores the return value. Fix this by assigning tp->net_stats_prev to stats and returning stats. Signed-off-by: Govindarajulu Varadarajan <_govind@gmx.com> Acked-by: Prashant Sreedharan <prashant@broadcom.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
1d311ad2f9
commit
7b31b4deda
@ -14093,8 +14093,9 @@ static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
|
||||
|
||||
spin_lock_bh(&tp->lock);
|
||||
if (!tp->hw_stats) {
|
||||
*stats = tp->net_stats_prev;
|
||||
spin_unlock_bh(&tp->lock);
|
||||
return &tp->net_stats_prev;
|
||||
return stats;
|
||||
}
|
||||
|
||||
tg3_get_nstats(tp, stats);
|
||||
|
Loading…
Reference in New Issue
Block a user