Home
last modified time | relevance | path

Searched refs:hnext (Results 1 – 2 of 2) sorted by relevance

/drivers/net/wireless/hostap/
Dhostap_ap.c90 sta->hnext = ap->sta_hash[STA_HASH(sta->addr)]; in ap_sta_hash_add()
101 ap->sta_hash[STA_HASH(sta->addr)] = s->hnext; in ap_sta_hash_del()
105 while (s->hnext != NULL && memcmp(s->hnext->addr, sta->addr, ETH_ALEN) in ap_sta_hash_del()
107 s = s->hnext; in ap_sta_hash_del()
108 if (s->hnext != NULL) in ap_sta_hash_del()
109 s->hnext = s->hnext->hnext; in ap_sta_hash_del()
906 s = s->hnext; in ap_get_sta()
Dhostap_ap.h41 struct sta_info *hnext; /* next entry in hash table list */ member