Merge "qca-wifi: add fils stat variables to apstats"

Bu işleme şunda yer alıyor:
Linux Build Service Account
2020-08-25 21:35:57 -07:00
işlemeyi yapan: Gerrit - the friendly Code Review server
işleme 1b1fc968c0
4 değiştirilmiş dosya ile 22 ekleme ve 0 silme

Dosyayı Görüntüle

@@ -772,6 +772,10 @@ enum {
IEEE80211_PARAM_RAWSIM_DEBUG_NUM_ENCAP_FRAMES = 704, /* Sets the number of encap raw frames to dump when debug enabled */
IEEE80211_PARAM_RAWSIM_DEBUG_NUM_DECAP_FRAMES = 705, /* Sets the number of decap raw frames to dump when debug enabled */
#endif /* ATH_PERF_PWR_OFFLOAD && QCA_SUPPORT_RAWMODE_PKT_SIMULATION */
IEEE80211_PARAM_CURRENT_PP = 706, /* P Periodicity */
IEEE80211_PARAM_NO_ACT_VAPS = 707, /* Active Vaps */
IEEE80211_PARAM_TX_VAP = 708, /* Current Tx Vap */
IEEE80211_PARAM_FILS_IS_ENABLE = 709, /* Fils enable frames*/
};
enum {

Dosyayı Görüntüle

@@ -297,6 +297,9 @@ struct pdev_ic_cp_stats {
* @peer_delete_resp: no of peer delete resp rcvd from target
* @peer_delete_all_req: no of peer delete all req sent to target
* @peer_delete_all_resp: no of peer delete all resp rcvd from target
* @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
*/
struct vdev_80211_stats {
uint64_t cs_rx_wrongbss;
@@ -366,6 +369,11 @@ struct vdev_80211_stats {
uint64_t cs_peer_delete_resp;
uint64_t cs_peer_delete_all_req;
uint64_t cs_peer_delete_all_resp;
uint64_t cs_prob_req_drops;
uint64_t cs_oob_probe_req_count;
uint64_t cs_wc_probe_req_drops;
uint64_t cs_fils_frames_sent;
uint64_t cs_fils_frames_sent_fail;
};
/**

Dosyayı Görüntüle

@@ -380,6 +380,11 @@ UCFG_VDEV_CP_STATS_SET_FUNCS(peer_delete_req);
UCFG_VDEV_CP_STATS_SET_FUNCS(peer_delete_resp);
UCFG_VDEV_CP_STATS_SET_FUNCS(peer_delete_all_req);
UCFG_VDEV_CP_STATS_SET_FUNCS(peer_delete_all_resp);
UCFG_VDEV_CP_STATS_SET_FUNCS(prob_req_drops);
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);
#define UCFG_VDEV_CP_STATS_GET_FUNCS(field) \
static inline uint64_t \

Dosyayı Görüntüle

@@ -274,6 +274,11 @@ VDEV_CP_STATS_SET_FUNCS(peer_delete_req);
VDEV_CP_STATS_SET_FUNCS(peer_delete_resp);
VDEV_CP_STATS_SET_FUNCS(peer_delete_all_req);
VDEV_CP_STATS_SET_FUNCS(peer_delete_all_resp);
VDEV_CP_STATS_SET_FUNCS(prob_req_drops);
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);
#define VDEV_CP_STATS_GET_FUNCS(field) \
static inline uint64_t \