Home
last modified time | relevance | path

Searched refs:peer_cs (Results 1 – 8 of 8) sorted by relevance

/wlan-driver/qca-wifi-host-cmn/umac/cp_stats/core/src/
Dwlan_cp_stats_comp_handler.c154 struct peer_cp_stats *peer_cs; in wlan_cp_stats_peer_comp_obj_config() local
156 peer_cs = wlan_cp_stats_get_peer_stats_obj(peer); in wlan_cp_stats_peer_comp_obj_config()
157 if (!peer_cs) { in wlan_cp_stats_peer_comp_obj_config()
162 wlan_cp_stats_peer_obj_lock(peer_cs); in wlan_cp_stats_peer_comp_obj_config()
164 if (peer_cs->peer_comp_priv_obj[comp_id]) { in wlan_cp_stats_peer_comp_obj_config()
165 wlan_cp_stats_peer_obj_unlock(peer_cs); in wlan_cp_stats_peer_comp_obj_config()
168 peer_cs->peer_comp_priv_obj[comp_id] = data; in wlan_cp_stats_peer_comp_obj_config()
170 if (peer_cs->peer_comp_priv_obj[comp_id] != data) { in wlan_cp_stats_peer_comp_obj_config()
171 wlan_cp_stats_peer_obj_unlock(peer_cs); in wlan_cp_stats_peer_comp_obj_config()
174 data = peer_cs->peer_comp_priv_obj[comp_id]; in wlan_cp_stats_peer_comp_obj_config()
[all …]
Dwlan_cp_stats_obj_mgr_handler.c442 struct peer_cp_stats *peer_cs = NULL; in wlan_cp_stats_peer_obj_create_handler() local
451 peer_cs = qdf_mem_malloc(sizeof(*peer_cs)); in wlan_cp_stats_peer_obj_create_handler()
452 if (!peer_cs) { in wlan_cp_stats_peer_obj_create_handler()
462 peer_cs->peer_obj = peer; in wlan_cp_stats_peer_obj_create_handler()
465 csc->cp_stats_peer_obj_init(peer_cs)) { in wlan_cp_stats_peer_obj_create_handler()
473 peer_cs, in wlan_cp_stats_peer_obj_create_handler()
480 csc->cp_stats_peer_obj_deinit(peer_cs); in wlan_cp_stats_peer_obj_create_handler()
483 if (peer_cs) in wlan_cp_stats_peer_obj_create_handler()
484 qdf_mem_free(peer_cs); in wlan_cp_stats_peer_obj_create_handler()
494 struct peer_cp_stats *peer_cs; in wlan_cp_stats_peer_obj_destroy_handler() local
[all …]
Dwlan_cp_stats_ol_api.c77 QDF_STATUS wlan_cp_stats_peer_obj_init_ol(struct peer_cp_stats *peer_cs) in wlan_cp_stats_peer_obj_init_ol() argument
79 qdf_spinlock_create(&peer_cs->peer_cp_stats_lock); in wlan_cp_stats_peer_obj_init_ol()
80 wlan_cp_stats_peer_cs_init(peer_cs); in wlan_cp_stats_peer_obj_init_ol()
84 QDF_STATUS wlan_cp_stats_peer_obj_deinit_ol(struct peer_cp_stats *peer_cs) in wlan_cp_stats_peer_obj_deinit_ol() argument
86 wlan_cp_stats_peer_cs_deinit(peer_cs); in wlan_cp_stats_peer_obj_deinit_ol()
87 qdf_spinlock_destroy(&peer_cs->peer_cp_stats_lock); in wlan_cp_stats_peer_obj_deinit_ol()
Dwlan_cp_stats_defs.h176 QDF_STATUS (*cp_stats_peer_obj_init)(struct peer_cp_stats *peer_cs);
177 QDF_STATUS (*cp_stats_peer_obj_deinit)(struct peer_cp_stats *peer_cs);
364 struct peer_cp_stats *peer_cs = NULL; in wlan_cp_stats_get_peer_stats_obj() local
367 peer_cs = wlan_objmgr_peer_get_comp_private_obj in wlan_cp_stats_get_peer_stats_obj()
371 return peer_cs; in wlan_cp_stats_get_peer_stats_obj()
Dwlan_cp_stats_cmn_api_i.h85 QDF_STATUS wlan_cp_stats_peer_cs_init(struct peer_cp_stats *peer_cs);
93 QDF_STATUS wlan_cp_stats_peer_cs_deinit(struct peer_cp_stats *peer_cs);
Dwlan_cp_stats_ol_api.h88 QDF_STATUS wlan_cp_stats_peer_obj_init_ol(struct peer_cp_stats *peer_cs);
96 QDF_STATUS wlan_cp_stats_peer_obj_deinit_ol(struct peer_cp_stats *peer_cs);
/wlan-driver/qca-wifi-host-cmn/umac/cp_stats/dispatcher/src/
Dwlan_cp_stats_utils_api.c367 struct peer_cp_stats *peer_cs = wlan_cp_stats_get_peer_stats_obj(peer); in wlan_cp_stats_peer_rx_pnerr() local
369 if (peer_cs && peer_cs->rx_pnerr_stats_inc) in wlan_cp_stats_peer_rx_pnerr()
370 peer_cs->rx_pnerr_stats_inc(peer, 1); in wlan_cp_stats_peer_rx_pnerr()
/wlan-driver/qcacld-3.0/components/cp_stats/dispatcher/src/
Dwlan_cp_stats_mc_ucfg_api.c371 QDF_STATUS wlan_cp_stats_peer_cs_init(struct peer_cp_stats *peer_cs) in wlan_cp_stats_peer_cs_init() argument
398 peer_cs->peer_stats = peer_mc_stats; in wlan_cp_stats_peer_cs_init()
403 QDF_STATUS wlan_cp_stats_peer_cs_deinit(struct peer_cp_stats *peer_cs) in wlan_cp_stats_peer_cs_deinit() argument
405 struct peer_mc_cp_stats *peer_mc_stats = peer_cs->peer_stats; in wlan_cp_stats_peer_cs_deinit()
411 qdf_mem_free(peer_cs->peer_stats); in wlan_cp_stats_peer_cs_deinit()
412 peer_cs->peer_stats = NULL; in wlan_cp_stats_peer_cs_deinit()