summaryrefslogtreecommitdiffstats
path: root/sys/net80211/ieee80211_ageq.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix memset sizeofskevlo2011-07-071-1/+1
| | | | Reviewed by: bschmidt
* Fix typos - remove duplicate "is".brucec2011-02-231-1/+1
| | | | | | PR: docs/154934 Submitted by: Eitan Adler <lists at eitanadler.com> MFC after: 3 days
* correctly set the tailq ptr when removing the last item in the qsam2009-07-101-1/+2
| | | | Approved by: re (kensmith)
* Add ieee80211_ageq; a facility for staging packets that requiresam2009-07-051-0/+236
long-term work before they can be serviced. Packets are tagged and assigned an age (in seconds) at the point they are added to the queue. If a packet is not retrieved before it's age expires it is reclaimed. Tagging can take two forms: a reference to an ieee80211_node (as happens in the tx path) or an opaque token in cases where there is no reference or the node structure is not stable (i.e. it's going to be destroyed). o add ic_stageq to replace the per-node wds staging queue used for dynamic wds o add ieee80211_mac_hash for building ageq tokens; this computes a 32-bit hash from an 802.11 mac address (copied from the bridge) o while here fix a stray ';' noticed in IEEE80211_PSQ_INIT Reviewed by: rpaulo Approved by: re (kensmith)
OpenPOWER on IntegriCloud