qcacld-3.0: Send L2UF frame to update bridge forwarding table

Generate a Level 2 update frame and send it to the bridge in SAP
mode when a new station connects.

It will update the forwarding table of all the bridge devices
through source port learning.

Change-Id: Ia804968453c051e4c8322d3735506a912c0d963d
CRs-Fixed: 2997409
This commit is contained in:
Subrat Dash
2021-06-25 22:38:17 +05:30
committed by Madan Koyyalamudi
parent 87304f21e8
commit 19619ce40b
4 changed files with 108 additions and 1 deletions

View File

@@ -4501,4 +4501,16 @@ uint32_t ucfg_mlme_get_user_mcc_quota_percentage(struct wlan_objmgr_psoc *psoc)
{
return wlan_mlme_get_user_mcc_duty_cycle_percentage(psoc);
}
/**
* ucfg_mlme_get_wds_mode() - Get the configured WDS mode
* @psoc: pointer to psoc object
*
* Return: supported wds mode from enum wlan_wds_mode
*/
static inline uint32_t
ucfg_mlme_get_wds_mode(struct wlan_objmgr_psoc *psoc)
{
return wlan_mlme_get_wds_mode(psoc);
}
#endif /* _WLAN_MLME_UCFG_API_H_ */