Home
last modified time | relevance | path

Searched refs:aid (Results 1 – 11 of 11) sorted by relevance

/net/mac80211/
Dsta_info.c348 static inline void __bss_tim_set(struct ieee80211_if_ap *bss, u16 aid) in __bss_tim_set() argument
354 bss->tim[aid / 8] |= (1 << (aid % 8)); in __bss_tim_set()
357 static inline void __bss_tim_clear(struct ieee80211_if_ap *bss, u16 aid) in __bss_tim_clear() argument
363 bss->tim[aid / 8] &= ~(1 << (aid % 8)); in __bss_tim_clear()
371 __bss_tim_set(bss, sta->sta.aid); in __sta_info_set_tim_bit()
397 __bss_tim_clear(bss, sta->sta.aid); in __sta_info_clear_tim_bit()
Ddebugfs_netdev.c102 IEEE80211_IF_FILE(aid, u.sta.aid, DEC);
191 DEBUGFS_ADD(aid, sta); in add_sta_files()
322 DEBUGFS_DEL(aid, sta); in del_sta_files()
Ddebugfs_sta.c46 STA_FILE(aid, sta.aid, D);
Dcfg.c643 if (params->aid) { in sta_apply_parameters()
644 sta->sta.aid = params->aid; in sta_apply_parameters()
645 if (sta->sta.aid > IEEE80211_MAX_AID) in sta_apply_parameters()
646 sta->sta.aid = 0; /* XXX: should this be an error? */ in sta_apply_parameters()
Dmlme.c1215 u16 capab_info, status_code, aid; in ieee80211_rx_mgmt_assoc_resp() local
1238 aid = le16_to_cpu(mgmt->u.assoc_resp.aid); in ieee80211_rx_mgmt_assoc_resp()
1243 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14)))); in ieee80211_rx_mgmt_assoc_resp()
1255 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14))) in ieee80211_rx_mgmt_assoc_resp()
1257 "set\n", sdata->dev->name, aid); in ieee80211_rx_mgmt_assoc_resp()
1258 aid &= ~(BIT(15) | BIT(14)); in ieee80211_rx_mgmt_assoc_resp()
1270 ifsta->aid = aid; in ieee80211_rx_mgmt_assoc_resp()
1404 bss_conf->aid = aid; in ieee80211_rx_mgmt_assoc_resp()
Dieee80211_i.h292 u16 aid; member
442 struct dentry *aid; member
Drx.c677 sdata->dev->name, sta->sta.addr, sta->sta.aid); in ap_sta_ps_start()
700 sdata->dev->name, sta->sta.addr, sta->sta.aid); in ap_sta_ps_end()
715 sta->sta.addr, sta->sta.aid); in ap_sta_ps_end()
1026 rx->sta->sta.addr, rx->sta->sta.aid, in ieee80211_rx_h_ps_poll()
Dtx.c351 sta->sta.addr, sta->sta.aid, in ieee80211_tx_h_unicast_ps_buf()
/net/decnet/
DKconfig20 below when using DECnet, since you will need sysctl support to aid
/net/ipv4/
DKconfig313 an aid in tracing the packets to their actual source and should not
/net/wireless/
Dnl80211.c1439 params.aid = nla_get_u16(info->attrs[NL80211_ATTR_STA_AID]); in nl80211_new_station()