nss-packages-breeze303/qca-nss-ecm/patches/0016-ecm-conditionally-check-mlo-device.patch
Sean Khan 9308d452f6 nss-packages: Bump to QSDK 12.5 for kernel 6.6
note: qca-nss-crypto, and qca-nss-cfi are non-code change releases, but
align with naming scheme upstream anyways.

Signed-off-by: Sean Khan <datapronix@protonmail.com>
2024-05-05 02:49:54 -04:00

15 lines
565 B
Diff

--- a/ecm_interface.c
+++ b/ecm_interface.c
@@ -4040,7 +4040,11 @@ static uint32_t ecm_interface_multicast_
* For MLO bond netdevice, destination for multicast is bond netdevice itself
* Therefore, slave lookup is not needed.
*/
+#ifdef ECM_FRONT_END_SFE_ENABLE
if (ecm_front_end_is_lag_master(dest_dev) && !bond_is_mlo_device(dest_dev)) {
+#else
+ if (ecm_front_end_is_lag_master(dest_dev)) {
+#endif
/*
* Link aggregation
* Figure out which slave device of the link aggregation will be used to reach the destination.