Patch "net: ethernet: ti: cpsw_new: fix clean up of vlan mc entries for host port" has been added to the 5.8-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    net: ethernet: ti: cpsw_new: fix clean up of vlan mc entries for host port

to the 5.8-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     net-ethernet-ti-cpsw_new-fix-clean-up-of-vlan-mc-ent.patch
and it can be found in the queue-5.8 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 461c6a44caef294c5e9d5efc1e0e720007c0cb38
Author: Murali Karicheri <m-karicheri2@xxxxxx>
Date:   Mon Aug 24 11:10:53 2020 -0400

    net: ethernet: ti: cpsw_new: fix clean up of vlan mc entries for host port
    
    [ Upstream commit 2c6500e82e5190b038f0b79f85a20da55bdd4b86 ]
    
    To flush the vid + mc entries from ALE, which is required when a VLAN
    interface is removed, driver needs to call cpsw_ale_flush_multicast()
    with ALE_PORT_HOST for port mask as these entries are added only for
    host port. Without this, these entries remain in the ALE table even
    after removing the VLAN interface. cpsw_ale_flush_multicast() calls
    cpsw_ale_flush_mcast which expects a port mask to do the job.
    
    Fixes: ed3525eda4c4 ("net: ethernet: ti: introduce cpsw switchdev based driver part 1 - dual-emac")
    Signed-off-by: Murali Karicheri <m-karicheri2@xxxxxx>
    Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/net/ethernet/ti/cpsw_new.c b/drivers/net/ethernet/ti/cpsw_new.c
index 1247d35d42ef3..8d0a2bc7128d4 100644
--- a/drivers/net/ethernet/ti/cpsw_new.c
+++ b/drivers/net/ethernet/ti/cpsw_new.c
@@ -1044,7 +1044,7 @@ static int cpsw_ndo_vlan_rx_kill_vid(struct net_device *ndev,
 			   HOST_PORT_NUM, ALE_VLAN, vid);
 	cpsw_ale_del_mcast(cpsw->ale, priv->ndev->broadcast,
 			   0, ALE_VLAN, vid);
-	cpsw_ale_flush_multicast(cpsw->ale, 0, vid);
+	cpsw_ale_flush_multicast(cpsw->ale, ALE_PORT_HOST, vid);
 err:
 	pm_runtime_put(cpsw->dev);
 	return ret;



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux