Message ID | 20221123011617.332302-1-liujian56@huawei.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 6aae1bcb41c7aefd28bf5d90e36ebdd151c2d8ba |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net] net: altera_tse: release phylink resources in tse_shutdown() | expand |
Hello: This patch was applied to netdev/net.git (master) by Paolo Abeni <pabeni@redhat.com>: On Wed, 23 Nov 2022 09:16:17 +0800 you wrote: > Call phylink_disconnect_phy() in tse_shutdown() to release the > resources occupied by phylink_of_phy_connect() in the tse_open(). > > Fixes: fef2998203e1 ("net: altera: tse: convert to phylink") > Signed-off-by: Liu Jian <liujian56@huawei.com> > --- > Compile tested only. > drivers/net/ethernet/altera/altera_tse_main.c | 1 + > 1 file changed, 1 insertion(+) Here is the summary with links: - [net] net: altera_tse: release phylink resources in tse_shutdown() https://git.kernel.org/netdev/net/c/6aae1bcb41c7 You are awesome, thank you!
diff --git a/drivers/net/ethernet/altera/altera_tse_main.c b/drivers/net/ethernet/altera/altera_tse_main.c index 7633b227b2ca..711d5b5a4c49 100644 --- a/drivers/net/ethernet/altera/altera_tse_main.c +++ b/drivers/net/ethernet/altera/altera_tse_main.c @@ -990,6 +990,7 @@ static int tse_shutdown(struct net_device *dev) int ret; phylink_stop(priv->phylink); + phylink_disconnect_phy(priv->phylink); netif_stop_queue(dev); napi_disable(&priv->napi);
Call phylink_disconnect_phy() in tse_shutdown() to release the resources occupied by phylink_of_phy_connect() in the tse_open(). Fixes: fef2998203e1 ("net: altera: tse: convert to phylink") Signed-off-by: Liu Jian <liujian56@huawei.com> --- Compile tested only. drivers/net/ethernet/altera/altera_tse_main.c | 1 + 1 file changed, 1 insertion(+)