Home
last modified time | relevance | path

Searched refs:mpdu_counters (Results 1 – 5 of 5) sorted by relevance

/linux/drivers/net/wireless/intel/iwlwifi/mvm/
H A Drx.c989 if (!mvmsta->mpdu_counters) in iwl_mvm_update_esr_mode_tpt()
1001 spin_lock_bh(&mvmsta->mpdu_counters[q].lock); in iwl_mvm_update_esr_mode_tpt()
1005 total_tx += mvmsta->mpdu_counters[q].per_link[link].tx; in iwl_mvm_update_esr_mode_tpt()
1006 total_rx += mvmsta->mpdu_counters[q].per_link[link].rx; in iwl_mvm_update_esr_mode_tpt()
1009 sec_link_tx += mvmsta->mpdu_counters[q].per_link[sec_link].tx; in iwl_mvm_update_esr_mode_tpt()
1010 sec_link_rx += mvmsta->mpdu_counters[q].per_link[sec_link].rx; in iwl_mvm_update_esr_mode_tpt()
1019 if (jiffies - mvmsta->mpdu_counters[q].window_start < in iwl_mvm_update_esr_mode_tpt()
1022 mvmsta->mpdu_counters[q].window_start = jiffies; in iwl_mvm_update_esr_mode_tpt()
1023 memset(mvmsta->mpdu_counters[q].per_link, 0, in iwl_mvm_update_esr_mode_tpt()
1024 sizeof(mvmsta->mpdu_counters[ in iwl_mvm_update_esr_mode_tpt()
[all...]
H A Dmld-sta.c855 kfree(mvm_sta->mpdu_counters); in iwl_mvm_mld_rm_sta()
856 mvm_sta->mpdu_counters = NULL; in iwl_mvm_mld_rm_sta()
/linux/drivers/net/wireless/intel/iwlwifi/mld/
H A Dsta.c654 kfree(mld_sta->mpdu_counters); in iwl_mld_destroy_sta()
700 mld_sta->mpdu_counters = kcalloc(mld->trans->info.num_rxqs, in iwl_mld_alloc_mpdu_counters()
701 sizeof(*mld_sta->mpdu_counters), in iwl_mld_alloc_mpdu_counters()
703 if (!mld_sta->mpdu_counters) in iwl_mld_alloc_mpdu_counters()
707 spin_lock_init(&mld_sta->mpdu_counters[q].lock); in iwl_mld_alloc_mpdu_counters()
872 if (!mld_sta->mpdu_counters) in iwl_mld_count_mpdu()
881 queue_counter = &mld_sta->mpdu_counters[queue]; in iwl_mld_count_mpdu()
H A Dmlo.c550 if (!mld_sta->mpdu_counters) in iwl_mld_emlsr_check_tpt()
582 &mld_sta->mpdu_counters[q]; in iwl_mld_emlsr_check_tpt()
1177 if (!mld_sta->mpdu_counters) in iwl_mld_ignore_tpt_iter()
1190 &mld_sta->mpdu_counters[q]; in iwl_mld_ignore_tpt_iter()
H A Dsta.h123 * @mpdu_counters: RX/TX MPDUs counters for each queue.
141 struct iwl_mld_per_q_mpdu_counter *mpdu_counters; member