fjes: Handle workqueue allocation failure
[ Upstream commit 85ac30fa2e24f628e9f4f9344460f4015d33fd7d ] In the highly unlikely event that we fail to allocate either of the "/txrx" or "/control" workqueues, we should bail cleanly rather than blindly march on with NULL queue pointer(s) installed in the 'fjes_adapter' instance. Cc: "David S. Miller" <davem@davemloft.net> Reported-by: Nicolas Waisman <nico@semmle.com> Link: https://lore.kernel.org/lkml/CADJ_3a8WFrs5NouXNqS5WYe7rebFP+_A5CheeqAyD_p7DFJJcg@mail.gmail.com/ Signed-off-by: Will Deacon <will@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
6376736d01
commit
f09b99c883
1 changed files with 14 additions and 1 deletions
|
@ -1252,8 +1252,17 @@ static int fjes_probe(struct platform_device *plat_dev)
|
||||||
adapter->open_guard = false;
|
adapter->open_guard = false;
|
||||||
|
|
||||||
adapter->txrx_wq = alloc_workqueue(DRV_NAME "/txrx", WQ_MEM_RECLAIM, 0);
|
adapter->txrx_wq = alloc_workqueue(DRV_NAME "/txrx", WQ_MEM_RECLAIM, 0);
|
||||||
|
if (unlikely(!adapter->txrx_wq)) {
|
||||||
|
err = -ENOMEM;
|
||||||
|
goto err_free_netdev;
|
||||||
|
}
|
||||||
|
|
||||||
adapter->control_wq = alloc_workqueue(DRV_NAME "/control",
|
adapter->control_wq = alloc_workqueue(DRV_NAME "/control",
|
||||||
WQ_MEM_RECLAIM, 0);
|
WQ_MEM_RECLAIM, 0);
|
||||||
|
if (unlikely(!adapter->control_wq)) {
|
||||||
|
err = -ENOMEM;
|
||||||
|
goto err_free_txrx_wq;
|
||||||
|
}
|
||||||
|
|
||||||
INIT_WORK(&adapter->tx_stall_task, fjes_tx_stall_task);
|
INIT_WORK(&adapter->tx_stall_task, fjes_tx_stall_task);
|
||||||
INIT_WORK(&adapter->raise_intr_rxdata_task,
|
INIT_WORK(&adapter->raise_intr_rxdata_task,
|
||||||
|
@ -1270,7 +1279,7 @@ static int fjes_probe(struct platform_device *plat_dev)
|
||||||
hw->hw_res.irq = platform_get_irq(plat_dev, 0);
|
hw->hw_res.irq = platform_get_irq(plat_dev, 0);
|
||||||
err = fjes_hw_init(&adapter->hw);
|
err = fjes_hw_init(&adapter->hw);
|
||||||
if (err)
|
if (err)
|
||||||
goto err_free_netdev;
|
goto err_free_control_wq;
|
||||||
|
|
||||||
/* setup MAC address (02:00:00:00:00:[epid])*/
|
/* setup MAC address (02:00:00:00:00:[epid])*/
|
||||||
netdev->dev_addr[0] = 2;
|
netdev->dev_addr[0] = 2;
|
||||||
|
@ -1292,6 +1301,10 @@ static int fjes_probe(struct platform_device *plat_dev)
|
||||||
|
|
||||||
err_hw_exit:
|
err_hw_exit:
|
||||||
fjes_hw_exit(&adapter->hw);
|
fjes_hw_exit(&adapter->hw);
|
||||||
|
err_free_control_wq:
|
||||||
|
destroy_workqueue(adapter->control_wq);
|
||||||
|
err_free_txrx_wq:
|
||||||
|
destroy_workqueue(adapter->txrx_wq);
|
||||||
err_free_netdev:
|
err_free_netdev:
|
||||||
free_netdev(netdev);
|
free_netdev(netdev);
|
||||||
err_out:
|
err_out:
|
||||||
|
|
Loading…
Reference in a new issue