mirror of
https://github.com/torvalds/linux.git
synced 2026-05-25 23:52:08 +02:00
alx: fix missing unlock on error in alx_set_pauseparam()
Add the missing unlock before return from function alx_set_pauseparam()
in the error handling case.
Fixes: 4a5fe57e77 ("alx: use fine-grained locking instead of RTNL")
Signed-off-by: Pu Lehui <pulehui@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
052d601725
commit
2d1c5f29d2
|
|
@ -253,8 +253,10 @@ static int alx_set_pauseparam(struct net_device *netdev,
|
|||
|
||||
if (reconfig_phy) {
|
||||
err = alx_setup_speed_duplex(hw, hw->adv_cfg, fc);
|
||||
if (err)
|
||||
if (err) {
|
||||
mutex_unlock(&alx->mtx);
|
||||
return err;
|
||||
}
|
||||
}
|
||||
|
||||
/* flow control on mac */
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user