/linux/net/mac80211/ |
H A D | sta_info.c | 69 struct ieee80211_link_sta sta; member 92 struct sta_info *sta) in sta_info_hash_del() argument 94 return rhltable_remove(&local->sta_hash, &sta->hash_node, in sta_info_hash_del() 116 void ieee80211_purge_sta_txqs(struct sta_info *sta) in ieee80211_purge_sta_txqs() argument 118 struct ieee80211_local *local = sta->sdata->local; in ieee80211_purge_sta_txqs() 121 for (i = 0; i < ARRAY_SIZE(sta->sta.txq); i++) { in ieee80211_purge_sta_txqs() 124 if (!sta->sta.txq[i]) in ieee80211_purge_sta_txqs() 127 txqi = to_txq_info(sta->sta.txq[i]); in ieee80211_purge_sta_txqs() 133 static void __cleanup_single_sta(struct sta_info *sta) in __cleanup_single_sta() argument 137 struct ieee80211_sub_if_data *sdata = sta->sdata; in __cleanup_single_sta() [all …]
|
H A D | mesh_ps.c | 21 static struct sk_buff *mps_qos_null_get(struct sta_info *sta) in mps_qos_null_get() argument 23 struct ieee80211_sub_if_data *sdata = sta->sdata; in mps_qos_null_get() 37 ieee80211_fill_mesh_addresses(nullfunc, &fc, sta->sta.addr, in mps_qos_null_get() 43 memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN); in mps_qos_null_get() 45 ieee80211_mps_set_frame_flags(sdata, sta, nullfunc); in mps_qos_null_get() 54 static void mps_qos_null_tx(struct sta_info *sta) in mps_qos_null_tx() argument 58 skb = mps_qos_null_get(sta); in mps_qos_null_tx() 62 mps_dbg(sta->sdata, "announcing peer-specific power mode to %pM\n", in mps_qos_null_tx() 63 sta->sta.addr); in mps_qos_null_tx() 66 if (!test_sta_flag(sta, WLAN_STA_PS_STA)) { in mps_qos_null_tx() [all …]
|
H A D | agg-tx.c | 61 static void ieee80211_send_addba_request(struct sta_info *sta, u16 tid, in ieee80211_send_addba_request() argument 65 struct ieee80211_sub_if_data *sdata = sta->sdata; in ieee80211_send_addba_request() 78 mgmt = ieee80211_mgmt_ba(skb, sta->sta.addr, sdata); in ieee80211_send_addba_request() 97 if (sta->sta.deflink.he_cap.has_he) in ieee80211_send_addba_request() 133 void ieee80211_assign_tid_tx(struct sta_info *sta, int tid, in ieee80211_assign_tid_tx() argument 136 lockdep_assert_wiphy(sta->local->hw.wiphy); in ieee80211_assign_tid_tx() 137 lockdep_assert_held(&sta->lock); in ieee80211_assign_tid_tx() 138 rcu_assign_pointer(sta->ampdu_mlme.tid_tx[tid], tid_tx); in ieee80211_assign_tid_tx() 181 ieee80211_agg_stop_txq(struct sta_info *sta, int tid) in ieee80211_agg_stop_txq() argument 183 struct ieee80211_txq *txq = sta->sta.txq[tid]; in ieee80211_agg_stop_txq() [all …]
|
H A D | agg-rx.c | 58 void __ieee80211_stop_rx_ba_session(struct sta_info *sta, u16 tid, in __ieee80211_stop_rx_ba_session() argument 61 struct ieee80211_local *local = sta->local; in __ieee80211_stop_rx_ba_session() 64 .sta = &sta->sta, in __ieee80211_stop_rx_ba_session() 72 lockdep_assert_wiphy(sta->local->hw.wiphy); in __ieee80211_stop_rx_ba_session() 74 tid_rx = rcu_dereference_protected(sta->ampdu_mlme.tid_rx[tid], in __ieee80211_stop_rx_ba_session() 75 lockdep_is_held(&sta->local->hw.wiphy->mtx)); in __ieee80211_stop_rx_ba_session() 77 if (!test_bit(tid, sta->ampdu_mlme.agg_session_valid)) in __ieee80211_stop_rx_ba_session() 80 RCU_INIT_POINTER(sta->ampdu_mlme.tid_rx[tid], NULL); in __ieee80211_stop_rx_ba_session() 81 __clear_bit(tid, sta->ampdu_mlme.agg_session_valid); in __ieee80211_stop_rx_ba_session() 83 ht_dbg(sta->sdata, in __ieee80211_stop_rx_ba_session() [all …]
|
H A D | rate.c | 33 struct sta_info *sta = link_sta->sta; in rate_control_rate_init() local 34 struct ieee80211_local *local = sta->sdata->local; in rate_control_rate_init() 35 struct rate_control_ref *ref = sta->rate_ctrl; in rate_control_rate_init() 36 struct ieee80211_sta *ista = &sta->sta; in rate_control_rate_init() 37 void *priv_sta = sta->rate_ctrl_priv; in rate_control_rate_init() 47 if (WARN_ON(ieee80211_vif_is_mld(&sta->sdata->vif))) in rate_control_rate_init() 52 chanctx_conf = rcu_dereference(sta->sdata->vif.bss_conf.chanctx_conf); in rate_control_rate_init() 62 ieee80211_s1g_sta_rate_init(sta); in rate_control_rate_init() 67 spin_lock_bh(&sta->rate_ctrl_lock); in rate_control_rate_init() 70 spin_unlock_bh(&sta->rate_ctrl_lock); in rate_control_rate_init() [all …]
|
H A D | tx.c | 310 if (tx->sta) in ieee80211_tx_h_check_assoc() 311 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC); in ieee80211_tx_h_check_assoc() 345 struct sta_info *sta; in purge_old_ps_buffers() local 369 list_for_each_entry_rcu(sta, &local->sta_list, list) { in purge_old_ps_buffers() 373 skb = skb_dequeue(&sta->ps_tx_buf[ac]); in purge_old_ps_buffers() 374 total += skb_queue_len(&sta->ps_tx_buf[ac]); in purge_old_ps_buffers() 452 static int ieee80211_use_mfp(__le16 fc, struct sta_info *sta, in ieee80211_use_mfp() argument 458 if (sta == NULL || !test_sta_flag(sta, WLAN_STA_MFP)) in ieee80211_use_mfp() 470 struct sta_info *sta = tx->sta; in ieee80211_tx_h_unicast_ps_buf() local 475 if (unlikely(!sta)) in ieee80211_tx_h_unicast_ps_buf() [all …]
|
H A D | status.c | 45 struct sta_info *sta, in ieee80211_handle_filtered_frame() argument 70 info->control.vif = &sta->sdata->vif; in ieee80211_handle_filtered_frame() 75 sta->deflink.status_stats.filtered++; in ieee80211_handle_filtered_frame() 108 set_sta_flag(sta, WLAN_STA_CLEAR_PS_FILT); in ieee80211_handle_filtered_frame() 109 ieee80211_clear_fast_xmit(sta); in ieee80211_handle_filtered_frame() 145 if (test_sta_flag(sta, WLAN_STA_PS_STA) && in ieee80211_handle_filtered_frame() 146 skb_queue_len(&sta->tx_filtered[ac]) < STA_MAX_TX_BUFFER) { in ieee80211_handle_filtered_frame() 147 skb_queue_tail(&sta->tx_filtered[ac], skb); in ieee80211_handle_filtered_frame() 148 sta_info_recalc_tim(sta); in ieee80211_handle_filtered_frame() 157 if (!test_sta_flag(sta, WLAN_STA_PS_STA) && in ieee80211_handle_filtered_frame() [all …]
|
H A D | ht.c | 144 struct sta_info *sta = link_sta->sta; in ieee80211_ht_cap_ie_to_sta_ht_cap() local 248 ieee80211_sta_recalc_aggregates(&sta->sta); in ieee80211_ht_cap_ie_to_sta_ht_cap() 287 if (sta->sdata->vif.type == NL80211_IFTYPE_AP || in ieee80211_ht_cap_ie_to_sta_ht_cap() 288 sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) { in ieee80211_ht_cap_ie_to_sta_ht_cap() 315 void ieee80211_sta_tear_down_BA_sessions(struct sta_info *sta, in ieee80211_sta_tear_down_BA_sessions() argument 320 lockdep_assert_wiphy(sta->local->hw.wiphy); in ieee80211_sta_tear_down_BA_sessions() 323 __ieee80211_stop_rx_ba_session(sta, i, WLAN_BACK_RECIPIENT, in ieee80211_sta_tear_down_BA_sessions() 329 __ieee80211_stop_tx_ba_session(sta, i, reason); in ieee80211_sta_tear_down_BA_sessions() 337 wiphy_work_cancel(sta->local->hw.wiphy, &sta->ampdu_mlme.work); in ieee80211_sta_tear_down_BA_sessions() 341 rcu_dereference_protected_tid_tx(sta, i); in ieee80211_sta_tear_down_BA_sessions() [all …]
|
H A D | s1g.c | 12 void ieee80211_s1g_sta_rate_init(struct sta_info *sta) in ieee80211_s1g_sta_rate_init() argument 15 sta->deflink.tx_stats.last_rate.flags |= IEEE80211_TX_RC_S1G_MCS; in ieee80211_s1g_sta_rate_init() 16 sta->deflink.rx_stats.last_rate = in ieee80211_s1g_sta_rate_init() 98 struct sta_info *sta, struct sk_buff *skb) in ieee80211_s1g_rx_twt_setup() argument 119 drv_add_twt_setup(sdata->local, sdata, &sta->sta, twt); in ieee80211_s1g_rx_twt_setup() 126 struct sta_info *sta, struct sk_buff *skb) in ieee80211_s1g_rx_twt_teardown() argument 130 drv_twt_teardown_request(sdata->local, sdata, &sta->sta, in ieee80211_s1g_rx_twt_teardown() 136 struct sta_info *sta, struct sk_buff *skb) in ieee80211_s1g_tx_twt_setup_fail() argument 144 drv_twt_teardown_request(sdata->local, sdata, &sta->sta, flowid); in ieee80211_s1g_tx_twt_setup_fail() 155 struct sta_info *sta; in ieee80211_s1g_rx_twt_action() local [all …]
|
H A D | rx.c | 220 struct sta_info *sta, in __ieee80211_queue_skb_to_iface() argument 234 if (sta) in __ieee80211_queue_skb_to_iface() 235 sta->deflink.rx_stats.packets++; in __ieee80211_queue_skb_to_iface() 240 struct sta_info *sta, in ieee80211_queue_skb_to_iface() argument 244 __ieee80211_queue_skb_to_iface(sdata, link_id, sta, skb); in ieee80211_queue_skb_to_iface() 1063 if (!rx->sta || sta_plink_state(rx->sta) != NL80211_PLINK_ESTAB) { in ieee80211_rx_mesh_check() 1358 struct sta_info *sta = rx->sta; in ieee80211_rx_reorder_ampdu() local 1372 if (!sta) in ieee80211_rx_reorder_ampdu() 1379 tid_agg_rx = rcu_dereference(sta->ampdu_mlme.tid_rx[tid]); in ieee80211_rx_reorder_ampdu() 1382 !test_bit(tid, rx->sta->ampdu_mlme.agg_session_valid) && in ieee80211_rx_reorder_ampdu() [all …]
|
H A D | cfg.c | 237 struct sta_info *sta; in ieee80211_change_iface() local 247 RCU_INIT_POINTER(sdata->u.vlan.sta, NULL); in ieee80211_change_iface() 263 sta = sta_info_get(sdata, sdata->deflink.u.mgd.bssid); in ieee80211_change_iface() 264 if (sta) in ieee80211_change_iface() 265 drv_sta_set_4addr(local, sdata, &sta->sta, in ieee80211_change_iface() 463 struct sta_info *sta; in ieee80211_set_tx() local 470 sta = sta_info_get_bss(sdata, mac_addr); in ieee80211_set_tx() 472 if (!sta) in ieee80211_set_tx() 475 if (sta->ptk_idx == key_idx) in ieee80211_set_tx() 478 key = wiphy_dereference(local->hw.wiphy, sta->ptk[key_idx]); in ieee80211_set_tx() [all …]
|
/linux/arch/sparc/mm/ |
H A D | swift.S | 34 sta %g0, [%o0] ASI_M_DATAC_TAG 36 sta %g0, [%o1] ASI_M_TXTC_TAG 48 sta %g0, [%o0] ASI_M_TXTC_TAG 50 sta %g0, [%o0] ASI_M_DATAC_TAG 67 sta %g2, [%g7] ASI_M_MMUREGS 72 sta %g0, [%o0] ASI_M_FLUSH_CTX 85 1: sta %g0, [%o0 ] ASI_M_FLUSH_CTX 86 sta %g0, [%o0 + %o1] ASI_M_FLUSH_CTX 87 sta %g0, [%o0 + %o2] ASI_M_FLUSH_CTX 88 sta %g0, [%o0 + %o3] ASI_M_FLUSH_CTX [all …]
|
H A D | hypersparc.S | 36 sta %g0, [%g5] ASI_M_FLUSH_CTX 38 sta %g0, [%g0] ASI_M_FLUSH_IWHOLE ! hyper_flush_whole_icache 64 sta %g0, [%o0 + %g0] ASI_M_FLUSH_USER 65 sta %g0, [%o0 + %o1] ASI_M_FLUSH_USER 66 sta %g0, [%o0 + %g1] ASI_M_FLUSH_USER 67 sta %g0, [%o0 + %g2] ASI_M_FLUSH_USER 68 sta %g0, [%o0 + %g3] ASI_M_FLUSH_USER 69 sta %g0, [%o0 + %g4] ASI_M_FLUSH_USER 70 sta %g0, [%o0 + %g5] ASI_M_FLUSH_USER 72 sta %g0, [%o0 + %o4] ASI_M_FLUSH_USER [all …]
|
H A D | viking.S | 132 sta %g0, [%g1] ASI_M_FLUSH_PROBE 143 sta %o1, [%g1] ASI_M_MMUREGS 144 sta %g0, [%g2] ASI_M_FLUSH_PROBE 146 sta %g5, [%g1] ASI_M_MMUREGS 162 sta %o3, [%g1] ASI_M_MMUREGS 165 sta %g0, [%o1] ASI_M_FLUSH_PROBE 169 sta %g0, [%o1] ASI_M_FLUSH_PROBE 171 sta %g5, [%g1] ASI_M_MMUREGS 187 sta %o3, [%g1] ASI_M_MMUREGS 188 sta %g0, [%o1] ASI_M_FLUSH_PROBE [all …]
|
/linux/drivers/staging/rtl8723bs/include/ |
H A D | sta_info.h | 220 #define sta_rx_pkts(sta) \ argument 221 (sta->sta_stats.rx_mgnt_pkts \ 222 + sta->sta_stats.rx_ctrl_pkts \ 223 + sta->sta_stats.rx_data_pkts) 225 #define sta_rx_data_pkts(sta) \ argument 226 (sta->sta_stats.rx_data_pkts) 228 #define sta_last_rx_data_pkts(sta) \ argument 229 (sta->sta_stats.last_rx_data_pkts) 231 #define sta_rx_beacon_pkts(sta) \ argument 232 (sta->sta_stats.rx_beacon_pkts) [all …]
|
/linux/drivers/net/wireless/realtek/rtlwifi/ |
H A D | rc.c | 16 struct ieee80211_sta *sta, in _rtl_rc_get_highest_rix() argument 49 if (sta) { in _rtl_rc_get_highest_rix() 50 sta_entry = (struct rtl_sta_info *)sta->drv_priv; in _rtl_rc_get_highest_rix() 69 if (sta->deflink.bandwidth == IEEE80211_STA_RX_BW_20) { in _rtl_rc_get_highest_rix() 91 if (sta->deflink.bandwidth == IEEE80211_STA_RX_BW_20) { in _rtl_rc_get_highest_rix() 112 struct ieee80211_sta *sta, in _rtl_rc_rate_set_series() argument 123 if (sta) { in _rtl_rc_rate_set_series() 124 sgi_20 = sta->deflink.ht_cap.cap & IEEE80211_HT_CAP_SGI_20; in _rtl_rc_rate_set_series() 125 sgi_40 = sta->deflink.ht_cap.cap & IEEE80211_HT_CAP_SGI_40; in _rtl_rc_rate_set_series() 126 sgi_80 = sta->deflink.vht_cap.cap & IEEE80211_VHT_CAP_SHORT_GI_80; in _rtl_rc_rate_set_series() [all …]
|
/linux/net/mac80211/tests/ |
H A D | mfp.c | 16 bool sta, mfp, decrypted, unicast, assoc; member 45 .sta = true, 54 .sta = true, 63 .sta = true, 73 .sta = true, 100 .sta = true, 109 .sta = true, 118 .sta = true, 128 .sta = true, 139 .sta = true, [all …]
|
/linux/drivers/net/wireless/intel/iwlwifi/dvm/ |
H A D | sta.c | 28 sta_id, priv->stations[sta_id].sta.sta.addr); in iwl_sta_ucode_activate() 34 sta_id, priv->stations[sta_id].sta.sta.addr); in iwl_sta_ucode_activate() 38 sta_id, priv->stations[sta_id].sta.sta.addr); in iwl_sta_ucode_activate() 83 struct iwl_addsta_cmd *sta, u8 flags) in iwl_send_add_sta() argument 89 .data = { sta, }, in iwl_send_add_sta() 90 .len = { sizeof(*sta), }, in iwl_send_add_sta() 92 u8 sta_id __maybe_unused = sta->sta.sta_id; in iwl_send_add_sta() 97 sta_id, sta->sta.addr, flags & CMD_ASYNC ? "a" : ""); in iwl_send_add_sta() 128 struct ieee80211_sta *sta) in iwl_is_ht40_tx_allowed() argument 139 if (!sta) in iwl_is_ht40_tx_allowed() [all …]
|
/linux/arch/riscv/kvm/ |
H A D | vcpu_sbi_sta.c | 21 vcpu->arch.sta.shmem = INVALID_GPA; in kvm_riscv_vcpu_sbi_sta_reset() 22 vcpu->arch.sta.last_steal = 0; in kvm_riscv_vcpu_sbi_sta_reset() 27 gpa_t shmem = vcpu->arch.sta.shmem; in kvm_riscv_vcpu_record_steal_time() 28 u64 last_steal = vcpu->arch.sta.last_steal; in kvm_riscv_vcpu_record_steal_time() 50 vcpu->arch.sta.shmem = INVALID_GPA; in kvm_riscv_vcpu_record_steal_time() 70 vcpu->arch.sta.last_steal = READ_ONCE(current->sched_info.run_delay); in kvm_riscv_vcpu_record_steal_time() 71 steal += vcpu->arch.sta.last_steal - last_steal; in kvm_riscv_vcpu_record_steal_time() 98 vcpu->arch.sta.shmem = INVALID_GPA; in kvm_sbi_sta_steal_time_set_shmem() 122 vcpu->arch.sta.shmem = shmem; in kvm_sbi_sta_steal_time_set_shmem() 123 vcpu->arch.sta.last_steal = current->sched_info.run_delay; in kvm_sbi_sta_steal_time_set_shmem() [all …]
|
/linux/drivers/net/wireless/intel/iwlwifi/mvm/ |
H A D | mld-key.c | 13 struct ieee80211_sta *sta, in iwl_mvm_get_sec_sta_mask() argument 38 if (!sta && vif->type == NL80211_IFTYPE_STATION) in iwl_mvm_get_sec_sta_mask() 39 sta = mvmvif->ap_sta; in iwl_mvm_get_sec_sta_mask() 50 if (!sta && (keyconf->link_id >= 0 || !ieee80211_vif_is_mld(vif))) in iwl_mvm_get_sec_sta_mask() 56 return iwl_mvm_sta_fw_id_mask(mvm, sta, keyconf->link_id); in iwl_mvm_get_sec_sta_mask() 61 struct ieee80211_sta *sta, in iwl_mvm_get_sec_flags() argument 98 if (!sta && vif->type == NL80211_IFTYPE_STATION) in iwl_mvm_get_sec_flags() 99 sta = mvmvif->ap_sta; in iwl_mvm_get_sec_flags() 108 if ((!IS_ERR_OR_NULL(sta) && sta->mfp && pairwise) || igtk) in iwl_mvm_get_sec_flags() 118 struct ieee80211_sta *sta; member [all …]
|
H A D | rs.c | 115 struct ieee80211_sta *sta, 127 static bool rs_ant_allow(struct iwl_mvm *mvm, struct ieee80211_sta *sta, in rs_ant_allow() argument 134 static bool rs_mimo_allow(struct iwl_mvm *mvm, struct ieee80211_sta *sta, in rs_mimo_allow() argument 138 if (!sta->deflink.ht_cap.ht_supported) in rs_mimo_allow() 141 if (sta->deflink.smps_mode == IEEE80211_SMPS_STATIC) in rs_mimo_allow() 147 if (!iwl_mvm_bt_coex_is_mimo_allowed(mvm, sta)) in rs_mimo_allow() 156 static bool rs_siso_allow(struct iwl_mvm *mvm, struct ieee80211_sta *sta, in rs_siso_allow() argument 160 if (!sta->deflink.ht_cap.ht_supported) in rs_siso_allow() 166 static bool rs_sgi_allow(struct iwl_mvm *mvm, struct ieee80211_sta *sta, in rs_sgi_allow() argument 170 struct ieee80211_sta_ht_cap *ht_cap = &sta->deflink.ht_cap; in rs_sgi_allow() [all …]
|
/linux/drivers/net/wireless/ath/ath10k/ |
H A D | debugfs_sta.c | 64 if (!peer || !peer->sta) in ath10k_sta_update_rx_tid_stats_ampdu() 67 arsta = (struct ath10k_sta *)peer->sta->drv_priv; in ath10k_sta_update_rx_tid_stats_ampdu() 87 struct ieee80211_sta *sta; in ath10k_sta_update_rx_tid_stats() local 106 sta = ieee80211_find_sta_by_ifaddr(ar->hw, hdr->addr2, NULL); in ath10k_sta_update_rx_tid_stats() 107 if (!sta) in ath10k_sta_update_rx_tid_stats() 110 arsta = (struct ath10k_sta *)sta->drv_priv; in ath10k_sta_update_rx_tid_stats() 133 struct ieee80211_sta *sta; in ath10k_sta_update_extd_stats_rx_duration() local 138 sta = ieee80211_find_sta_by_ifaddr(ar->hw, peer->peer_macaddr, in ath10k_sta_update_extd_stats_rx_duration() 140 if (!sta) in ath10k_sta_update_extd_stats_rx_duration() 142 arsta = (struct ath10k_sta *)sta->drv_priv; in ath10k_sta_update_extd_stats_rx_duration() [all …]
|
/linux/drivers/net/wireless/ath/wil6210/ |
H A D | rx_reorder.c | 83 __acquires(&sta->tid_rx_lock) __releases(&sta->tid_rx_lock) in wil_rx_reorder() 89 struct wil_sta_info *sta; in wil_rx_reorder() local 96 sta = &wil->sta[cid]; in wil_rx_reorder() 109 spin_lock(&sta->tid_rx_lock); in wil_rx_reorder() 111 r = sta->tid_rx[tid]; in wil_rx_reorder() 210 spin_unlock(&sta->tid_rx_lock); in wil_rx_reorder() 217 struct wil_sta_info *sta = &wil->sta[cid]; in wil_rx_bar() local 221 spin_lock(&sta->tid_rx_lock); in wil_rx_bar() 223 r = sta->tid_rx[tid]; in wil_rx_bar() 238 spin_unlock(&sta->tid_rx_lock); in wil_rx_bar() [all …]
|
/linux/drivers/net/wireless/ath/ath11k/ |
H A D | debugfs_sta.c | 139 struct ieee80211_sta *sta = file->private_data; in ath11k_dbg_sta_dump_tx_stats() local 140 struct ath11k_sta *arsta = ath11k_sta_to_arsta(sta); in ath11k_dbg_sta_dump_tx_stats() 246 struct ieee80211_sta *sta = file->private_data; in ath11k_dbg_sta_dump_rx_stats() local 247 struct ath11k_sta *arsta = ath11k_sta_to_arsta(sta); in ath11k_dbg_sta_dump_rx_stats() 343 struct ieee80211_sta *sta = inode->i_private; in ath11k_dbg_sta_open_htt_peer_stats() local 344 struct ath11k_sta *arsta = ath11k_sta_to_arsta(sta); in ath11k_dbg_sta_open_htt_peer_stats() 362 memcpy(stats_req->peer_addr, sta->addr, ETH_ALEN); in ath11k_dbg_sta_open_htt_peer_stats() 379 struct ieee80211_sta *sta = inode->i_private; in ath11k_dbg_sta_release_htt_peer_stats() local 380 struct ath11k_sta *arsta = ath11k_sta_to_arsta(sta); in ath11k_dbg_sta_release_htt_peer_stats() 416 struct ieee80211_sta *sta = file->private_data; in ath11k_dbg_sta_write_peer_pktlog() local [all …]
|
/linux/drivers/i2c/algos/ |
H A D | i2c-algo-pca.c | 70 int sta = pca_get_con(adap); in pca_start() local 72 sta |= I2C_PCA_CON_STA; in pca_start() 73 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_SI); in pca_start() 74 pca_set_con(adap, sta); in pca_start() 85 int sta = pca_get_con(adap); in pca_repeated_start() local 87 sta |= I2C_PCA_CON_STA; in pca_repeated_start() 88 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_SI); in pca_repeated_start() 89 pca_set_con(adap, sta); in pca_repeated_start() 104 int sta = pca_get_con(adap); in pca_stop() local 106 sta |= I2C_PCA_CON_STO; in pca_stop() [all …]
|