summaryrefslogtreecommitdiffstats
path: root/sys/dev/ic/ath.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Fix 11g ifmedia modes in ath(4) (shown by 'ifconfig ath0 media').stsp2018-01-311-33/+8
* The net80211 stack was providing a 'beacon miss timeout' value (in ms)stsp2017-05-311-8/+4
* Partially revert previous mallocarray conversions that containdhill2017-04-111-2/+2
* Convert some malloc(9) to mallocarray(9)dhill2017-04-091-2/+2
* move counting if_opackets next to counting if_obytes in if_enqueue.dlg2017-01-221-2/+1
* G/C IFQ_SET_READY().mpi2016-04-131-2/+1
* Remove wireless turbo mode support. It is a non-standard extensionstsp2016-01-121-7/+1
* No trailers has been the default and only option for 20 years, yet sometedu2015-12-081-3/+2
* replace IFF_OACTIVE manipulation with mpsafe operations.dlg2015-11-251-5/+5
* replace the ifqueues in net80211 with mbuf_queues.dlg2015-11-041-2/+2
* arp_ifinit() is no longer needed.mpi2015-10-251-5/+1
* Remove some includes include-what-you-use claims don'tjsg2015-03-141-2/+1
* Wireless drivers call if_input() via ieee80211_input() which set `rcvif'mpi2015-02-101-2/+1
* unifdef INETtedu2014-12-221-5/+1
* Use <sys/endian.h> instead of <machine/endian.h>guenther2014-12-191-3/+3
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-121-4/+4
* Show eeprom version of ath devices in dmesg; ok reykstsp2014-07-101-1/+6
* Stop abusing the rcvif pointer to pass wireless nodes down to thempi2014-03-191-12/+2
* Instead of comparing the lower and higher addresses of all the multicastmpi2013-11-261-8/+10
* Remove unneeded include.mpi2013-11-211-2/+1
* AH_BYTE_ORDER and AH_BIG_ENDIAN are holdovers from the old FreeBSDjsg2012-10-171-2/+2
* Fix another instance of the 11a->11b switch panic (see previous commit).stsp2012-01-291-6/+8
* Don't panic when switching an ath interface in hostap mode from 11a to 11b.stsp2012-01-281-2/+6
* Make ath(4) send multicast frames once, not multiple times.stsp2011-10-141-3/+4
* Don't increase if_oerrors for every multicast frame leaving the interface.stsp2011-04-171-2/+1
* remove the powerhook code. All architectures now use the ca_activate treederaadt2010-09-071-15/+1
* Get rid of the clumsy pci_activate function and do this job inside ath.cderaadt2010-08-271-53/+18
* remove the unused if_init callback in struct ifnetjsg2010-08-271-2/+1
* kill PWR_STANDBY (apm can use PWR_SUSPEND instead). While here, renumberderaadt2010-08-271-2/+1
* on resume: calling sc_power after ath_init() is silly. ath_init()deraadt2010-08-041-3/+1
* cleanup and remove some #ifdef junk in the power hooks.reyk2010-07-021-11/+1
* remove proc.h include from uvm_map.h. This has far reaching effects, astedu2010-04-201-2/+1
* Get rid of devact enum, substitute it with an int and coresponding defines.pirofti2009-10-131-2/+2
* M_DUP_PKTHDR() define -> m_dup_pkthdr() function to properly dealkrw2009-09-131-17/+2
* More cases of shutdown hooks not needed after card is already stopped. Inderaadt2009-08-101-14/+1
* timeout_add -> timeout_add_msecblambert2009-07-311-3/+3
* Replace timeout_add(msecs * hz / 1000) with timeout_add_msec(msecs).grange2009-01-211-2/+2
* Second pass of simple timeout_add -> timeout_add_sec conversionsblambert2008-10-151-3/+3
* Switch ath(4) to softcrypto to enable support for WPA/WPA2.reyk2008-09-011-2/+2
* add support for software crypto to allow WPA/WPA2/RSN. it is disabledreyk2008-08-291-21/+52
* add IEEE80211_RADIOTAP_F_FCS radiotap flag from NetBSD.damien2008-08-271-1/+2
* introduce new IEEE80211_STA_ONLY kernel option that can be set todamien2008-08-271-5/+30
* two spelling fixes from Anathae Townsend;jmc2008-08-251-3/+3
* in ieee80211_input(), call if_start() after enqueuing frames in if_snddamien2008-08-141-4/+1
* spacingreyk2008-07-301-2/+2
* - fix FIFO overruns on PCI-E chipsets by setting the DMA sizereyk2008-07-291-3/+3
* instead of passing rx tstamp and rssi to the ieee80211_input function,damien2008-07-211-7/+11
* remove unneeded declarations that shadows existing vars; ok by many.fgsch2007-10-131-3/+1
* More easy bzero() -> M_ZERO. Use 'p = malloc(sizeof(*p) ...'.krw2007-10-011-4/+4
* Only the most obvious bzero() -> M_ZERO changes. No cast changes, nokrw2007-09-181-3/+2