[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <6f0dc4f0-8a1a-9512-01f8-71b0ce6024ea@huawei.com>
Date: Mon, 13 Mar 2023 09:22:07 +0800
From: Yunsheng Lin <linyunsheng@...wei.com>
To: Zheng Wang <zyytlz.wz@....com>, <davem@...emloft.net>
CC: <edumazet@...gle.com>, <kuba@...nel.org>, <pabeni@...hat.com>,
<mkl@...gutronix.de>, <j.neuschaefer@....net>,
<netdev@...r.kernel.org>, <linux-kernel@...r.kernel.org>,
<hackerzheng666@...il.com>, <1395428693sheep@...il.com>,
<alex000young@...il.com>
Subject: Re: [PATCH net v2] net: calxedaxgmac: fix race condition in
xgmac_remove due to unfinished work
On 2023/3/12 2:04, Zheng Wang wrote:
> In xgmac_probe, the priv->tx_timeout_work is bound with
> xgmac_tx_timeout_work. In xgmac_remove, if there is an
> unfinished work, there might be a race condition that
> priv->base was written byte after iounmap it.
>
> Fix it by finishing the work before cleanup.
>
> Fixes: 8746f671ef04 ("net: calxedaxgmac: fix race between xgmac_tx_complete and xgmac_tx_err")
> Signed-off-by: Zheng Wang <zyytlz.wz@....com>
LGTM.
Reviewed-by: Yunsheng Lin <linyunsheng@...wei.com>
> ---
> v2:
> - fix typo,add Fixes label and stop dev_watchdog so that it will handle no more timeout work suggested by Yunsheng Lin
> ---
> drivers/net/ethernet/calxeda/xgmac.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/drivers/net/ethernet/calxeda/xgmac.c b/drivers/net/ethernet/calxeda/xgmac.c
> index f4f87dfa9687..f0880538f6f3 100644
> --- a/drivers/net/ethernet/calxeda/xgmac.c
> +++ b/drivers/net/ethernet/calxeda/xgmac.c
> @@ -1832,6 +1832,10 @@ static int xgmac_remove(struct platform_device *pdev)
> free_irq(ndev->irq, ndev);
> free_irq(priv->pmt_irq, ndev);
>
> + netif_carrier_off(ndev);
> + netif_tx_disable(ndev);
> + cancel_work_sync(&priv->tx_timeout_work);
> +
> unregister_netdev(ndev);
> netif_napi_del(&priv->napi);
>
>
Powered by blists - more mailing lists