Merge "qca-wifi: populate vdev extension statistics" into win_wlan_host.1.0

This commit is contained in:
Linux Build Service Account
2020-09-02 00:19:05 -07:00
committed by Gerrit - the friendly Code Review server
3 changed files with 10 additions and 0 deletions

View File

@@ -300,6 +300,10 @@ struct pdev_ic_cp_stats {
* @prob_req_drops: no of probe requests drops
* @oob_probe_req_count: no of out of band probe requests
* @wc_probe_req_drops: no of wildcard probe requests drops
* @cs_fils_frames_sent: fils discovery sent success count
* @cs_fils_frames_sent_fail: fils discovery sent success count
* @cs_tx_offload_prb_resp_succ_cnt: Offload probe response success count
* @cs_tx_offload_prb_resp_fail_cnt: Offload probe response fail count
*/
struct vdev_80211_stats {
uint64_t cs_rx_wrongbss;
@@ -374,6 +378,8 @@ struct vdev_80211_stats {
uint64_t cs_wc_probe_req_drops;
uint64_t cs_fils_frames_sent;
uint64_t cs_fils_frames_sent_fail;
uint64_t cs_tx_offload_prb_resp_succ_cnt;
uint64_t cs_tx_offload_prb_resp_fail_cnt;
};
/**

View File

@@ -385,6 +385,8 @@ UCFG_VDEV_CP_STATS_SET_FUNCS(oob_probe_req_count);
UCFG_VDEV_CP_STATS_SET_FUNCS(wc_probe_req_drops);
UCFG_VDEV_CP_STATS_SET_FUNCS(fils_frames_sent);
UCFG_VDEV_CP_STATS_SET_FUNCS(fils_frames_sent_fail);
UCFG_VDEV_CP_STATS_SET_FUNCS(tx_offload_prb_resp_succ_cnt);
UCFG_VDEV_CP_STATS_SET_FUNCS(tx_offload_prb_resp_fail_cnt);
#define UCFG_VDEV_CP_STATS_GET_FUNCS(field) \
static inline uint64_t \

View File

@@ -279,6 +279,8 @@ VDEV_CP_STATS_SET_FUNCS(oob_probe_req_count);
VDEV_CP_STATS_SET_FUNCS(wc_probe_req_drops);
VDEV_CP_STATS_SET_FUNCS(fils_frames_sent);
VDEV_CP_STATS_SET_FUNCS(fils_frames_sent_fail);
VDEV_CP_STATS_SET_FUNCS(tx_offload_prb_resp_succ_cnt);
VDEV_CP_STATS_SET_FUNCS(tx_offload_prb_resp_fail_cnt);
#define VDEV_CP_STATS_GET_FUNCS(field) \
static inline uint64_t \