qcacmn: Add dp_update_msdu_to_list function to dp_mon_ops struct

This patch adds the function dp_update_msdu_to_list to dp_mon_ops
struct. This is needed for supporting tx capture module in NSS
offload.

Change-Id: Id36aa6d1442eed4112585807e8798fc28ccdc424
This commit is contained in:
Pavithra R
2021-08-05 22:04:36 +05:30
committed by Madan Koyyalamudi
parent 296e2e7722
commit 4a84bdb2ad
3 changed files with 69 additions and 0 deletions

View File

@@ -311,6 +311,16 @@ QDF_STATUS monitor_tx_add_to_comp_queue(struct dp_soc *soc,
return QDF_STATUS_E_FAILURE;
}
static inline
QDF_STATUS monitor_update_msdu_to_list(struct dp_soc *soc,
struct dp_pdev *pdev,
struct dp_peer *peer,
struct hal_tx_completion_status *ts,
qdf_nbuf_t netbuf)
{
return QDF_STATUS_E_FAILURE;
}
static inline bool monitor_ppdu_stats_ind_handler(struct htt_soc *soc,
uint32_t *msg_word,
qdf_nbuf_t htt_t2h_msg)