summaryrefslogtreecommitdiffstats
path: root/sys/net80211/ieee80211_amrr.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove 11n support from AMRR. All 11n drivers switched to MiRA long ago.stsp2019-02-241-22/+3
|
* Remove the IEEE80211_NO_HT macro. Reduces ifdef spaghetti, enables 11n modestsp2016-01-051-9/+1
| | | | | in bsd.rd, and might uncover some bugs. Suggested by tedu@ and deraadt@. ok sthen@ jasper@ deraadt@
* In AMRR debug printfs, show ni_txmcs instead of ni_txrate for HT nodes.stsp2015-12-141-1/+3
|
* Add support for 11n mode to the rate adaptation (AMRR) code.stsp2015-11-151-9/+50
| | | | | | | | Currently limited to MCS 0-7. For now, drivers must not configure 11n hardware to use MCS other than MCS 0-7, which limits us to 65Mbit/s. MCS 8 and above use MIMO and will require more work in AMRR once we get there. ok deraadt mpi phessler kettenis guenther
* unifdef some more INET. v4 4life.tedu2014-12-231-3/+1
|
* Allow the kernel to compile with IEEE80211_DEBUG.fgsch2011-03-021-1/+2
| | | | deraadt@ ok.
* remove proc.h include from uvm_map.h. This has far reaching effects, astedu2010-04-201-2/+1
| | | | | | sysctl.h was reliant on this particular include, and many drivers included sysctl.h unnecessarily. remove sysctl.h or add proc.h as needed. ok deraadt
* s/IEEE80211_DPRINTF/DPRINTF/damien2008-07-271-9/+7
| | | | | | | automatically prepend __func__ to output. deobfuscates debug messages a bit. no binary change unless compiled with IEEE80211_DEBUG.
* add ieee80211_priv.h file: contains definitions private to net80211.damien2008-07-211-1/+2
| | | | this must not be included by drivers.
* constifydamien2007-06-161-2/+2
|
* avoid extra inclusions; ok jsgderaadt2006-11-261-2/+1
|
* Move AMRR rate control algorithm out of wpi(4) and ural(4), into net80211.damien2006-06-171-0/+115
ok brad@