aboutsummaryrefslogtreecommitdiff
path: root/sys/net80211/ieee80211_dfs.c
Commit message (Collapse)AuthorAgeFilesLines
* Use name from ieee80211com instead of parent ifnet, in debugging printfs.Gleb Smirnoff2015-05-251-11/+11
| | | | | | | | Sponsored by: Netflix Sponsored by: Nginx, Inc. Notes: svn path=/head/; revision=283529
* Include necessary headers that now are available due to pollutionGleb Smirnoff2013-10-281-0/+1
| | | | | | | | | | via if_var.h. Sponsored by: Netflix Sponsored by: Nginx, Inc. Notes: svn path=/head/; revision=257241
* The r48589 promised to remove implicit inclusion of if_var.h soon. PrepareGleb Smirnoff2013-10-261-0/+1
| | | | | | | | | | | to this event, adding if_var.h to files that do need it. Also, include all includes that now are included due to implicit pollution via if_var.h Sponsored by: Netflix Sponsored by: Nginx, Inc. Notes: svn path=/head/; revision=257176
* Add a DFS debugging mode which is useful when doing automated DFSAdrian Chadd2012-01-311-16/+66
| | | | | | | | | | | | | | | | | | | | | | | compliance testing. In order to allow for radar pattern matching to occur, the DFS CAC/NOL handling needs to be made configurable. This commit introduces a new sysctl, "net.wlan.dfs_debug", which controls which DFS debug mode net80211 is in. * 0 = default, CSA/NOL handling as per normal. * 1 = announce a CSA, but don't add the channel to the non-occupy list (NOL.) * 2 = disable both CSA and NOL - only print that a radar event occured. This code is not compiled/enabled by default as it breaks regulatory handling. A user must enable IEEE80211_DFS_DEBUG in their kernel configuration file for this option to become available. Obtained from: Atheros Notes: svn path=/head/; revision=230793
* Add 802.11h quiet time element support into net80211.Adrian Chadd2011-11-081-0/+8
| | | | | | | | | | | | | | | This supports both station and hostap modes: * Station mode quiet time element support listens to quiet time IE's and modifies the local quiet time configuration as appropriate; * Hostap mode both obeys the locally configured quiet time period and includes it in beacon frames so stations also can obey as needed. Submitted by: Himali Patel <himali.patel@sibridgetech.com> Sponsored by: Sibridge Technologies Notes: svn path=/head/; revision=227331
* Mark MALLOC_DEFINEs static that have no corresponding MALLOC_DECLAREs.Ed Schouten2011-11-071-1/+1
| | | | | | | This means that their use is restricted to a single C file. Notes: svn path=/head/; revision=227293
* Print out a big warning if DFS can't find a channel to use.Adrian Chadd2011-06-271-0/+2
| | | | | | | | This way people debugging DFS won't be surprised when their AP stops talking. Notes: svn path=/head/; revision=223583
* correct timeout for doing NOL processing; need a ticks-relative valueSam Leffler2009-09-031-1/+1
| | | | | | | | Obtained from: Marvell MFC after: 3 days Notes: svn path=/head/; revision=196785
* protect callouts with the com lockSam Leffler2009-06-091-5/+7
| | | | | | | Prodded by: jhb Notes: svn path=/head/; revision=193844
* prefer callout_scheduleSam Leffler2009-06-071-2/+1
| | | | Notes: svn path=/head/; revision=193666
* distribute sysctl decls so global variables can be made staticSam Leffler2009-05-301-3/+7
| | | | Notes: svn path=/head/; revision=193115
* schedule the correct timer when receiving a radar event during CACSam Leffler2008-08-021-1/+1
| | | | Notes: svn path=/head/; revision=181193
* Multi-bss (aka vap) support for 802.11 devices.Sam Leffler2008-04-201-0/+372
Note this includes changes to all drivers and moves some device firmware loading to use firmware(9) and a separate module (e.g. ral). Also there no longer are separate wlan_scan* modules; this functionality is now bundled into the wlan module. Supported by: Hobnob and Marvell Reviewed by: many Obtained from: Atheros (some bits) Notes: svn path=/head/; revision=178354