Patch "net: bridge: mcast: fix br_multicast_ctx_vlan_global_disabled helper" has been added to the 5.15-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: bridge: mcast: fix br_multicast_ctx_vlan_global_disabled helper

to the 5.15-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-bridge-mcast-fix-br_multicast_ctx_vlan_global_di.patch
and it can be found in the queue-5.15 subdirectory.

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



commit ff9646f81b11c79f524685fab51204ca0f2ec1fb
Author: Nikolay Aleksandrov <nikolay@xxxxxxxxxx>
Date:   Tue Dec 28 17:31:42 2021 +0200

    net: bridge: mcast: fix br_multicast_ctx_vlan_global_disabled helper
    
    [ Upstream commit 168fed986b3a7ec7b98cab1fe84e2f282b9e6a8f ]
    
    We need to first check if the context is a vlan one, then we need to
    check the global bridge multicast vlan snooping flag, and finally the
    vlan's multicast flag, otherwise we will unnecessarily enable vlan mcast
    processing (e.g. querier timers).
    
    Fixes: 7b54aaaf53cb ("net: bridge: multicast: add vlan state initialization and control")
    Signed-off-by: Nikolay Aleksandrov <nikolay@xxxxxxxxxx>
    Link: https://lore.kernel.org/r/20211228153142.536969-1-nikolay@xxxxxxxxxx
    Signed-off-by: Jakub Kicinski <kuba@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/net/bridge/br_private.h b/net/bridge/br_private.h
index 5951e3142fe94..bd218c2b2cd97 100644
--- a/net/bridge/br_private.h
+++ b/net/bridge/br_private.h
@@ -1158,9 +1158,9 @@ br_multicast_port_ctx_get_global(const struct net_bridge_mcast_port *pmctx)
 static inline bool
 br_multicast_ctx_vlan_global_disabled(const struct net_bridge_mcast *brmctx)
 {
-	return br_opt_get(brmctx->br, BROPT_MCAST_VLAN_SNOOPING_ENABLED) &&
-	       br_multicast_ctx_is_vlan(brmctx) &&
-	       !(brmctx->vlan->priv_flags & BR_VLFLAG_GLOBAL_MCAST_ENABLED);
+	return br_multicast_ctx_is_vlan(brmctx) &&
+	       (!br_opt_get(brmctx->br, BROPT_MCAST_VLAN_SNOOPING_ENABLED) ||
+		!(brmctx->vlan->priv_flags & BR_VLFLAG_GLOBAL_MCAST_ENABLED));
 }
 
 static inline bool



[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