]> git.baikalelectronics.ru Git - kernel.git/commit
alx: acquire mutex for alx_reinit in alx_change_mtu
authorNiels Dossche <dossche.niels@gmail.com>
Thu, 10 Mar 2022 23:27:08 +0000 (00:27 +0100)
committerJakub Kicinski <kuba@kernel.org>
Sat, 12 Mar 2022 06:53:14 +0000 (22:53 -0800)
commit969830c430e16a943a5fe5ada5874f2f56952803
tree983bff76abe22d31e92ecc1eb421a2508c88ccdd
parent9755e816a4539f2899eaaaa35b13438767c5f4b9
alx: acquire mutex for alx_reinit in alx_change_mtu

alx_reinit has a lockdep assertion that the alx->mtx mutex must be held.
alx_reinit is called from two places: alx_reset and alx_change_mtu.
alx_reset does acquire alx->mtx before calling alx_reinit.
alx_change_mtu does not acquire this mutex, nor do its callers or any
path towards alx_change_mtu.
Acquire the mutex in alx_change_mtu.

The issue was introduced when the fine-grained locking was introduced
to the code to replace the RTNL. The same commit also introduced the
lockdep assertion.

Fixes: f4eba221099e ("alx: use fine-grained locking instead of RTNL")
Signed-off-by: Niels Dossche <dossche.niels@gmail.com>
Link: https://lore.kernel.org/r/20220310232707.44251-1-dossche.niels@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/atheros/alx/main.c