summaryrefslogtreecommitdiffstats
path: root/sys/dev/ic/ath.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* move reset of HAL descriptors to ath.creyk2005-04-081-1/+4
|
* pad keys with zeros to a supported key length. this is bad but seemsreyk2005-04-061-8/+30
| | | | | to be the default WEP behaviour for string-based keys and allows commands like "ifconfig ath0 nwkey yuck" to work...
* <sys/types.h> is not needed with <sys/param.h>kevlo2005-04-061-2/+1
| | | | ok reyk and damien
* fix wep by adjusting the total packet lengthreyk2005-04-051-5/+8
|
* remove redundant suser() checksuwe2005-04-031-7/+1
|
* More ioctl permission checks.uwe2005-04-021-1/+7
|
* further fixes for ar5212.reyk2005-03-191-3/+4
|
* use IFQ_* instead of IF_* for the data queuereyk2005-03-181-3/+4
|
* fix channel initialisation. thanks to simon slater.reyk2005-03-111-4/+25
|
* fix beacon handlingreyk2005-03-101-12/+7
|
* use bcopy and bzeroreyk2005-03-101-20/+13
|
* improve radiotap support, fix some minor bugs.reyk2005-03-031-38/+33
|
* addtion of a generic function for allocating beacons: ieee80211_beacon_alloc().damien2005-03-031-81/+6
| | | | ok jsg@, reyk@, dlg@
* fix the radiotap bpf listenerreyk2005-03-011-4/+8
|
* mostly cosmetic changes: knf, get rid of unneeded sysctls, cleanup thereyk2005-02-171-651/+273
| | | | code.
* derived from NetBSD:reyk2005-02-171-11/+7
| | | | | | | | | | | | | | | | | | --- Make the node table into an LRU cache: least-recently used nodes are at the end of the node queue. Change the reference-counting discipline: ni->ni_refcnt indicates how many times net80211 has granted ni to the driver. Every node in the table with ni_refcnt=0 is eligible to be garbage-collected. The mere presence of a node in the table does not any longer indicate its auth/assoc state; nodes have a ni_state variable, now. While I am here, patch ieee80211_find_node_for_beacon to do a "best match" by bssid/ssid/channel, not a "perfect match." This keeps net80211 from caching duplicate nodes in the table. --- ok deraadt@ dlg@, looks good jsg@
* Make ath at cardbus not depend on ath at pci. ok reyk@jsg2005-01-031-1/+5
|
* sync with the latest work and add some stuff needed by the upcoming ar5211/ar5212reyk2004-12-311-15/+26
| | | | support. some further cleanups and changes will follow.
* support the gpio found on ath(4) devices.reyk2004-11-231-2/+93
| | | | ok grange@
* some fixes for beeing compatible with gcc3 as noticed by some people.reyk2004-11-111-2/+2
| | | | thanks to Joerg Sonnenberger and Nathan Binkert.
* spacing, beautify dmesg outputreyk2004-11-021-3/+3
|
* imported Sam Leffler's ath driver for atheros multimode wireless nicsreyk2004-11-021-0/+3622
from NetBSD and FreeBSD. ok deraadt@