qcacmn: Handle RX exception from IPA on WDS-EXT netdev

When WDS_EXT feature is enable, Host needs to redirect
the data packets to WDS extended netdevice.

Change is added the support for forwarding the RX packets
when received from IPA as an exception by deriving the
correct netdevice interface.

Change-Id: I083a1acc72023f3ebe6ea36ec05a5706f89c16bc
CRs-Fixed: 3597357
This commit is contained in:
Gaurav Saini
2023-09-11 14:34:54 +05:30
committed by Rahul Choudhary
parent f58bde59f4
commit b64de0cf4a
11 changed files with 200 additions and 3 deletions

View File

@@ -4416,6 +4416,16 @@ QDF_STATUS dp_wds_ext_get_peer_osif_handle(
uint8_t *mac,
ol_osif_peer_handle *osif_peer);
/**
* dp_wds_ext_set_peer_bit(): function to set wds-ext peer bit
* @soc: Datapath soc handle
* @mac: Peer mac address
*
* Return: QDF_STATUS_SUCCESS on success
* QDF_STATUS_E_INVAL if peer is not found
*/
QDF_STATUS dp_wds_ext_set_peer_bit(ol_txrx_soc_handle soc, uint8_t *mac);
#endif /* QCA_SUPPORT_WDS_EXTENDED */
#ifdef DP_MEM_PRE_ALLOC