tg3: Fix race condition in tg3_get_stats64()
Spinlock should be taken before checking for tp->hw_stats. Signed-off-by: Michael Chan <mchan@broadcom.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
091f0ea300
commit
0f566b208b
@@ -12524,10 +12524,12 @@ static struct rtnl_link_stats64 *tg3_get_stats64(struct net_device *dev,
|
|||||||
{
|
{
|
||||||
struct tg3 *tp = netdev_priv(dev);
|
struct tg3 *tp = netdev_priv(dev);
|
||||||
|
|
||||||
if (!tp->hw_stats)
|
|
||||||
return &tp->net_stats_prev;
|
|
||||||
|
|
||||||
spin_lock_bh(&tp->lock);
|
spin_lock_bh(&tp->lock);
|
||||||
|
if (!tp->hw_stats) {
|
||||||
|
spin_unlock_bh(&tp->lock);
|
||||||
|
return &tp->net_stats_prev;
|
||||||
|
}
|
||||||
|
|
||||||
tg3_get_nstats(tp, stats);
|
tg3_get_nstats(tp, stats);
|
||||||
spin_unlock_bh(&tp->lock);
|
spin_unlock_bh(&tp->lock);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user