qcacmn: Add cdp ops for MSCS feature

Add a new cdp datapath ops - mscs_ops for Mirrored
stream classification signalling feature. This function
will be invoked from ECM flow acceleration manager

Change-Id: I749623846395057b6ea8328c881efa8733700b0e
Dieser Commit ist enthalten in:
Mainak Sen
2020-08-29 20:54:57 +05:30
committet von snandini
Ursprung 69cfce2eca
Commit eb011c8f02
3 geänderte Dateien mit 82 neuen und 0 gelöschten Zeilen

Datei anzeigen

@@ -68,6 +68,9 @@ cdp_dump_flow_pool_info(struct cdp_soc_t *soc)
#ifdef FEATURE_WDS
#include "dp_txrx_wds.h"
#endif
#ifdef WLAN_SUPPORT_MSCS
#include "dp_mscs.h"
#endif
#ifdef ATH_SUPPORT_IQUE
#include "dp_txrx_me.h"
#endif
@@ -10962,6 +10965,12 @@ static struct cdp_cfr_ops dp_ops_cfr = {
};
#endif
#ifdef WLAN_SUPPORT_MSCS
static struct cdp_mscs_ops dp_ops_mscs = {
.mscs_peer_lookup_n_get_priority = dp_mscs_peer_lookup_n_get_priority,
};
#endif
#ifdef FEATURE_RUNTIME_PM
/**
* dp_runtime_suspend() - ensure DP is ready to runtime suspend
@@ -11614,6 +11623,9 @@ static struct cdp_ops dp_txrx_ops = {
#if defined(WLAN_CFR_ENABLE) && defined(WLAN_ENH_CFR_ENABLE)
.cfr_ops = &dp_ops_cfr,
#endif
#ifdef WLAN_SUPPORT_MSCS
.mscs_ops = &dp_ops_mscs,
#endif
};
/*