]> git.baikalelectronics.ru Git - kernel.git/commit
tg3: Fix vunmap() BUG_ON() triggered from tg3_free_consistent().
authorMichael Chan <michael.chan@broadcom.com>
Fri, 4 May 2018 00:04:27 +0000 (20:04 -0400)
committerDavid S. Miller <davem@davemloft.net>
Fri, 4 May 2018 16:57:17 +0000 (12:57 -0400)
commit70619284eae91fc07af3809aba29777392089b0b
tree49dfd594495bc0d5b9bb790b18841e276c0ef68d
parent65b01b46fcdfc7d7998d14ed8d81382b880b83f9
tg3: Fix vunmap() BUG_ON() triggered from tg3_free_consistent().

tg3_free_consistent() calls dma_free_coherent() to free tp->hw_stats
under spinlock and can trigger BUG_ON() in vunmap() because vunmap()
may sleep.  Fix it by removing the spinlock and relying on the
TG3_FLAG_INIT_COMPLETE flag to prevent race conditions between
tg3_get_stats64() and tg3_free_consistent().  TG3_FLAG_INIT_COMPLETE
is always cleared under tp->lock before tg3_free_consistent()
and therefore tg3_get_stats64() can safely access tp->hw_stats
under tp->lock if TG3_FLAG_INIT_COMPLETE is set.

Fixes: 39b325ba12c5 ("tg3: Fix race condition in tg3_get_stats64().")
Reported-by: Zumeng Chen <zumeng.chen@gmail.com>
Signed-off-by: Michael Chan <michael.chan@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/broadcom/tg3.c