| /linux-6.15/net/mac80211/ |
| H A D | agg-tx.c | 557 struct sta_info *sta = container_of(pubsta, struct sta_info, sta); in ieee80211_refresh_tx_agg_session_timer() 601 struct sta_info *sta = container_of(pubsta, struct sta_info, sta); in ieee80211_start_tx_ba_session() 607 trace_api_start_tx_ba_session(pubsta, tid); in ieee80211_start_tx_ba_session() 613 if (!pubsta->valid_links && in ieee80211_start_tx_ba_session() 614 !pubsta->deflink.ht_cap.ht_supported && in ieee80211_start_tx_ba_session() 615 !pubsta->deflink.vht_cap.vht_supported && in ieee80211_start_tx_ba_session() 616 !pubsta->deflink.he_cap.has_he && in ieee80211_start_tx_ba_session() 617 !pubsta->deflink.eht_cap.has_eht) in ieee80211_start_tx_ba_session() 632 pubsta->addr, tid); in ieee80211_start_tx_ba_session() 672 pubsta->addr); in ieee80211_start_tx_ba_session() [all …]
|
| H A D | rate.c | 414 static bool rate_control_send_low(struct ieee80211_sta *pubsta, in rate_control_send_low() argument 423 if (!pubsta || rc_no_data_or_no_ack_use_min(txrc)) { in rate_control_send_low() 424 __rate_control_send_low(txrc->hw, sband, pubsta, info, in rate_control_send_low() 427 if (!pubsta && txrc->bss) { in rate_control_send_low() 434 } else if (pubsta) { in rate_control_send_low() 435 sta = container_of(pubsta, struct sta_info, sta); in rate_control_send_low() 968 struct ieee80211_sta *pubsta, in rate_control_set_rates() argument 971 struct sta_info *sta = container_of(pubsta, struct sta_info, sta); in rate_control_set_rates() 985 old = rcu_dereference_protected(pubsta->rates, true); in rate_control_set_rates() 986 rcu_assign_pointer(pubsta->rates, rates); in rate_control_set_rates() [all …]
|
| H A D | status.c | 1126 struct ieee80211_sta *pubsta = status->sta; in ieee80211_tx_status_ext() local 1133 if (pubsta) { in ieee80211_tx_status_ext() 1134 sta = container_of(pubsta, struct sta_info, sta); in ieee80211_tx_status_ext() 1163 if (pubsta) { in ieee80211_tx_status_ext() 1223 if (!pubsta) in ieee80211_tx_status_ext() 1246 struct ieee80211_sta *pubsta, in ieee80211_tx_rate_update() argument 1250 struct sta_info *sta = container_of(pubsta, struct sta_info, sta); in ieee80211_tx_rate_update() 1253 .sta = pubsta, in ieee80211_tx_rate_update() 1263 void ieee80211_report_low_ack(struct ieee80211_sta *pubsta, u32 num_packets) in ieee80211_report_low_ack() argument 1265 struct sta_info *sta = container_of(pubsta, struct sta_info, sta); in ieee80211_report_low_ack()
|
| H A D | sta_info.c | 2234 struct ieee80211_sta *pubsta, bool block) in ieee80211_sta_block_awake() argument 2236 struct sta_info *sta = container_of(pubsta, struct sta_info, sta); in ieee80211_sta_block_awake() 2238 trace_api_sta_block_awake(sta->local, pubsta, block); in ieee80211_sta_block_awake() 2265 void ieee80211_sta_eosp(struct ieee80211_sta *pubsta) in ieee80211_sta_eosp() argument 2267 struct sta_info *sta = container_of(pubsta, struct sta_info, sta); in ieee80211_sta_eosp() 2270 trace_api_eosp(local, pubsta); in ieee80211_sta_eosp() 2282 trace_api_send_eosp_nullfunc(sta->local, pubsta, tid); in ieee80211_send_eosp_nullfunc() 2292 void ieee80211_sta_set_buffered(struct ieee80211_sta *pubsta, in ieee80211_sta_set_buffered() argument 2300 trace_api_sta_set_buffered(sta->local, pubsta, tid, buffered); in ieee80211_sta_set_buffered() 2380 void ieee80211_sta_recalc_aggregates(struct ieee80211_sta *pubsta) in ieee80211_sta_recalc_aggregates() argument [all …]
|
| H A D | rx.c | 4304 if (WARN_ON(!pubsta || tid >= IEEE80211_NUM_TIDS)) in ieee80211_mark_rx_ba_filtered_frames() 4309 sta = container_of(pubsta, struct sta_info, sta); in ieee80211_mark_rx_ba_filtered_frames() 5045 struct ieee80211_sta *pubsta, in __ieee80211_rx_handle_8023() argument 5068 if (!pubsta) in __ieee80211_rx_handle_8023() 5081 sta = container_of(pubsta, struct sta_info, sta); in __ieee80211_rx_handle_8023() 5133 struct ieee80211_sta *pubsta, in __ieee80211_rx_handle_packet() argument 5188 if (pubsta) { in __ieee80211_rx_handle_packet() 5189 sta = container_of(pubsta, struct sta_info, sta); in __ieee80211_rx_handle_packet() 5201 if (!status->link_valid && pubsta->mlo) { in __ieee80211_rx_handle_packet() 5414 __ieee80211_rx_handle_8023(hw, pubsta, skb, list); in ieee80211_rx_list() [all …]
|
| H A D | airtime.c | 758 struct ieee80211_sta *pubsta, in ieee80211_calc_expected_tx_airtime() argument 775 if (pubsta) { in ieee80211_calc_expected_tx_airtime() 776 struct sta_info *sta = container_of(pubsta, struct sta_info, in ieee80211_calc_expected_tx_airtime()
|
| H A D | tx.c | 4551 struct ieee80211_sta *pubsta = NULL; in __ieee80211_tx_8023() local 4572 pubsta = &sta->sta; in __ieee80211_tx_8023() 4574 control.sta = pubsta; in __ieee80211_tx_8023() 5963 int ieee80211_reserve_tid(struct ieee80211_sta *pubsta, u8 tid) in ieee80211_reserve_tid() argument 5965 struct sta_info *sta = container_of(pubsta, struct sta_info, sta); in ieee80211_reserve_tid() 6027 void ieee80211_unreserve_tid(struct ieee80211_sta *pubsta, u8 tid) in ieee80211_unreserve_tid() argument 6029 struct sta_info *sta = container_of(pubsta, struct sta_info, sta); in ieee80211_unreserve_tid()
|
| H A D | ieee80211_i.h | 2756 struct ieee80211_sta *pubsta,
|
| /linux-6.15/include/net/ |
| H A D | mac80211.h | 2541 bool lockdep_sta_mutex_held(struct ieee80211_sta *pubsta); 2543 static inline bool lockdep_sta_mutex_held(struct ieee80211_sta *pubsta) in lockdep_sta_mutex_held() argument 5362 void ieee80211_sta_set_expected_throughput(struct ieee80211_sta *pubsta, 5377 struct ieee80211_sta *pubsta, 6499 struct ieee80211_sta *pubsta, bool block); 6520 void ieee80211_sta_eosp(struct ieee80211_sta *pubsta); 6542 void ieee80211_send_eosp_nullfunc(struct ieee80211_sta *pubsta, int tid); 6555 void ieee80211_sta_recalc_aggregates(struct ieee80211_sta *pubsta); 6582 void ieee80211_sta_register_airtime(struct ieee80211_sta *pubsta, u8 tid, 6903 void ieee80211_mark_rx_ba_filtered_frames(struct ieee80211_sta *pubsta, u8 tid, [all …]
|
| /linux-6.15/drivers/net/wireless/ath/ath12k/ |
| H A D | dp_mon.c | 1966 struct ieee80211_sta *pubsta = NULL; in ath12k_dp_mon_rx_deliver_msdu() local 1985 pubsta = peer->sta; in ath12k_dp_mon_rx_deliver_msdu() 1986 if (pubsta->valid_links) { in ath12k_dp_mon_rx_deliver_msdu() 2034 ieee80211_rx_napi(ath12k_ar_to_hw(ar), pubsta, msdu, napi); in ath12k_dp_mon_rx_deliver_msdu()
|
| H A D | dp_rx.c | 2476 struct ieee80211_sta *pubsta; in ath12k_dp_rx_deliver_msdu() local 2496 pubsta = peer ? peer->sta : NULL; in ath12k_dp_rx_deliver_msdu() 2498 if (pubsta && pubsta->valid_links) { in ath12k_dp_rx_deliver_msdu() 2548 ieee80211_rx_napi(ath12k_ar_to_hw(ar), pubsta, msdu, napi); in ath12k_dp_rx_deliver_msdu()
|
| /linux-6.15/drivers/net/wireless/ath/ath11k/ |
| H A D | dp_rx.c | 2438 struct ieee80211_sta *pubsta = NULL; in ath11k_dp_rx_deliver_msdu() local 2459 pubsta = peer->sta; in ath11k_dp_rx_deliver_msdu() 2503 ieee80211_rx_napi(ar->hw, pubsta, msdu, napi); in ath11k_dp_rx_deliver_msdu()
|