mirror of
https://github.com/torvalds/linux.git
synced 2024-12-05 10:32:35 +00:00
net: lan966x: Fix sleep in atomic context when updating MAC table
The function lan966x_mac_wait_for_completion is used to poll the status
of the MAC table using the function readx_poll_timeout. The problem with
this function is that is called also from atomic context. Therefore
update the function to use readx_poll_timeout_atomic.
Fixes: e18aba8941
("net: lan966x: add mactable support")
Signed-off-by: Horatiu Vultur <horatiu.vultur@microchip.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b6ab149654
commit
77bdaf39f3
@ -40,11 +40,12 @@ static int lan966x_mac_wait_for_completion(struct lan966x *lan966x)
|
||||
{
|
||||
u32 val;
|
||||
|
||||
return readx_poll_timeout(lan966x_mac_get_status,
|
||||
lan966x, val,
|
||||
(ANA_MACACCESS_MAC_TABLE_CMD_GET(val)) ==
|
||||
MACACCESS_CMD_IDLE,
|
||||
TABLE_UPDATE_SLEEP_US, TABLE_UPDATE_TIMEOUT_US);
|
||||
return readx_poll_timeout_atomic(lan966x_mac_get_status,
|
||||
lan966x, val,
|
||||
(ANA_MACACCESS_MAC_TABLE_CMD_GET(val)) ==
|
||||
MACACCESS_CMD_IDLE,
|
||||
TABLE_UPDATE_SLEEP_US,
|
||||
TABLE_UPDATE_TIMEOUT_US);
|
||||
}
|
||||
|
||||
static void lan966x_mac_select(struct lan966x *lan966x,
|
||||
|
Loading…
Reference in New Issue
Block a user