qcacmn: Move monitor mode HTT parsing from mon_1_0 to common
Moving HTT parsing to common file dp_mon.c Initialize function pointer to stats ind handler for BE CRs-Fixed: 3071271 Change-Id: I08fb98f8dbed075c3b49baebca399771bfb5077c
Este cometimento está contido em:

cometido por
Madan Koyyalamudi

ascendente
66181cbbbb
cometimento
3637ac16b0
A apresentação das diferenças no ficheiro foi suprimida por ser demasiado grande
Carregar diff
@@ -801,7 +801,7 @@ dp_mon_register_feature_ops_2_0(struct dp_soc *soc)
|
||||
#endif
|
||||
#if defined(WDI_EVENT_ENABLE) &&\
|
||||
(defined(QCA_ENHANCED_STATS_SUPPORT) || !defined(REMOVE_PKT_LOG))
|
||||
mon_ops->mon_ppdu_stats_ind_handler = NULL;
|
||||
mon_ops->mon_ppdu_stats_ind_handler = dp_ppdu_stats_ind_handler;
|
||||
#endif
|
||||
#ifdef WLAN_RX_PKT_CAPTURE_ENH
|
||||
mon_ops->mon_config_enh_rx_capture = NULL;
|
||||
|
A apresentação das diferenças no ficheiro foi suprimida por ser demasiado grande
Carregar diff
@@ -50,6 +50,16 @@ struct dp_peer_tx_capture {
|
||||
};
|
||||
#endif
|
||||
|
||||
#ifndef WLAN_TX_PKT_CAPTURE_ENH
|
||||
static inline void
|
||||
dp_process_ppdu_stats_update_failed_bitmap(struct dp_pdev *pdev,
|
||||
void *data,
|
||||
uint32_t ppdu_id,
|
||||
uint32_t size)
|
||||
{
|
||||
}
|
||||
#endif
|
||||
|
||||
/*
|
||||
* dp_mon_soc_attach() - DP monitor soc attach
|
||||
* @soc: Datapath SOC handle
|
||||
@@ -354,6 +364,21 @@ dp_vdev_set_monitor_mode_rings(struct dp_pdev *pdev,
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(WDI_EVENT_ENABLE) &&\
|
||||
(defined(QCA_ENHANCED_STATS_SUPPORT) || !defined(REMOVE_PKT_LOG))
|
||||
/*
|
||||
* dp_ppdu_stats_ind_handler() - PPDU stats msg handler
|
||||
* @htt_soc: HTT SOC handle
|
||||
* @msg_word: Pointer to payload
|
||||
* @htt_t2h_msg: HTT msg nbuf
|
||||
*
|
||||
* Return: True if buffer should be freed by caller.
|
||||
*/
|
||||
bool dp_ppdu_stats_ind_handler(struct htt_soc *soc,
|
||||
uint32_t *msg_word,
|
||||
qdf_nbuf_t htt_t2h_msg);
|
||||
#endif
|
||||
|
||||
struct dp_mon_ops {
|
||||
QDF_STATUS (*mon_soc_cfg_init)(struct dp_soc *soc);
|
||||
QDF_STATUS (*mon_soc_attach)(struct dp_soc *soc);
|
||||
|
Criar uma nova questão referindo esta
Bloquear um utilizador