]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
dpaa2-eth: destroy workqueue at the end of remove function
authorDongliang Mu <mudongliangabcd@gmail.com>
Tue, 30 Nov 2021 04:05:54 +0000 (12:05 +0800)
committerPaolo Pisati <paolo.pisati@canonical.com>
Thu, 9 Dec 2021 10:10:42 +0000 (11:10 +0100)
BugLink: https://bugs.launchpad.net/bugs/1953731
commit f4a8adbfe4841491b60c14fe610571e1422359f9 upstream.

The commit c55211892f46 ("dpaa2-eth: support PTP Sync packet one-step
timestamping") forgets to destroy workqueue at the end of remove
function.

Fix this by adding destroy_workqueue before fsl_mc_portal_free and
free_netdev.

Fixes: c55211892f46 ("dpaa2-eth: support PTP Sync packet one-step timestamping")
Signed-off-by: Dongliang Mu <mudongliangabcd@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c

index f3e443f2d9cf9597d80aa117660fdfcbffcd6111..1108e1730841b6edbbca4ca23f5d258276879579 100644 (file)
@@ -4538,6 +4538,8 @@ static int dpaa2_eth_remove(struct fsl_mc_device *ls_dev)
 
        fsl_mc_portal_free(priv->mc_io);
 
+       destroy_workqueue(priv->dpaa2_ptp_wq);
+
        dev_dbg(net_dev->dev.parent, "Removed interface %s\n", net_dev->name);
 
        free_netdev(net_dev);