[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <f2223288-ef86-1712-6b24-087d7e741b8b@linux.alibaba.com>
Date: Wed, 23 Feb 2022 19:40:18 +0800
From: Heyi Guo <guoheyi@...ux.alibaba.com>
To: Andrew Lunn <andrew@...n.ch>
Cc: linux-kernel@...r.kernel.org,
"David S. Miller" <davem@...emloft.net>,
Jakub Kicinski <kuba@...nel.org>,
Joel Stanley <joel@....id.au>,
Guangbin Huang <huangguangbin2@...wei.com>,
Hao Chen <chenhao288@...ilicon.com>,
Arnd Bergmann <arnd@...db.de>,
Dylan Hung <dylan_hung@...eedtech.com>, netdev@...r.kernel.org
Subject: Re: [PATCH 3/3] drivers/net/ftgmac100: fix DHCP potential failure
with systemd
在 2022/2/23 下午6:48, Andrew Lunn 写道:
>> diff --git a/drivers/net/ethernet/faraday/ftgmac100.c b/drivers/net/ethernet/faraday/ftgmac100.c
>> index c1deb6e5d26c5..d5356db7539a4 100644
>> --- a/drivers/net/ethernet/faraday/ftgmac100.c
>> +++ b/drivers/net/ethernet/faraday/ftgmac100.c
>> @@ -1402,8 +1402,17 @@ static void ftgmac100_adjust_link(struct net_device *netdev)
>> /* Disable all interrupts */
>> iowrite32(0, priv->base + FTGMAC100_OFFSET_IER);
>>
>> - /* Reset the adapter asynchronously */
>> - schedule_work(&priv->reset_task);
>> + /* Release phy lock to allow ftgmac100_reset to aquire it, keeping lock
>> + * order consistent to prevent dead lock.
>> + */
>> + if (netdev->phydev)
>> + mutex_unlock(&netdev->phydev->lock);
> No need to do this test. The fact that adjust_link is being called
> indicates there must be a PHY.
OK, will remove the check in v2.
Thanks,
Heyi
>
> Andrew
Powered by blists - more mailing lists