Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | hostapd: add a separate config symbol for 802.11n driver support | Felix Fietkau | 2011-03-17 | 1 | -3/+3 |
| | | | | SVN-Revision: 26212 | ||||
* | mac80211: add an aggregation rx reorder timeout handling fix | Felix Fietkau | 2011-03-16 | 1 | -0/+11 |
| | | | | SVN-Revision: 26185 | ||||
* | ath9k: force the rx chainmask on ar913x to 0x7 - fixes calibration issues ↵ | Felix Fietkau | 2011-03-15 | 1 | -0/+11 |
| | | | | | | with 2-antenna devices such as the wrt160nl SVN-Revision: 26168 | ||||
* | ath9k: enable an ar913x specific hardware fix for sending block-ack | Felix Fietkau | 2011-03-15 | 1 | -0/+21 |
| | | | | SVN-Revision: 26167 | ||||
* | mac80211: Fix unique device autodetection | Vasilis Tsiligiannis | 2011-03-15 | 1 | -2/+2 |
| | | | | SVN-Revision: 26165 | ||||
* | mac80211: fix ath9k/ath9k-htc description (thx, swalker) | Felix Fietkau | 2011-03-14 | 1 | -1/+1 |
| | | | | SVN-Revision: 26160 | ||||
* | ath9k: split package into kmod-ath9k and kmod-ath9k-common, add a new ↵ | Felix Fietkau | 2011-03-13 | 1 | -7/+67 |
| | | | | | | package for ath9k_htc SVN-Revision: 26130 | ||||
* | mac80211: update to wireless-testing 2011-03-11 | Felix Fietkau | 2011-03-13 | 28 | -1210/+396 |
| | | | | SVN-Revision: 26128 | ||||
* | mac80211/ath9k: improve pending patches based on review feedback | Felix Fietkau | 2011-03-11 | 4 | -19/+26 |
| | | | | SVN-Revision: 26041 | ||||
* | mac80211: fix spurious channel type changes when vifs are created/deleted | Felix Fietkau | 2011-03-11 | 1 | -0/+10 |
| | | | | SVN-Revision: 26038 | ||||
* | ath9k: add a patch to fix the interoperability issues with intel clients ↵ | Felix Fietkau | 2011-03-11 | 1 | -0/+11 |
| | | | | | | (fixes #8830) SVN-Revision: 26036 | ||||
* | Add wext support to libertas-sd driver | Hamish Guthrie | 2011-03-11 | 1 | -1/+1 |
| | | | | SVN-Revision: 26028 | ||||
* | mac80211: redirect EAP frames on AP VLAN interfaces to the main AP interface ↵ | Felix Fietkau | 2011-03-10 | 1 | -0/+67 |
| | | | | | | to fix a bridging related race condition SVN-Revision: 26016 | ||||
* | ath9k: improve tx dma fixes based on review feedback | Felix Fietkau | 2011-03-10 | 3 | -20/+79 |
| | | | | SVN-Revision: 26005 | ||||
* | ath9k: get rid of most of those annoying dma tx stop issues | Felix Fietkau | 2011-03-10 | 4 | -0/+306 |
| | | | | SVN-Revision: 25988 | ||||
* | zd1211rw: fix #define collision for register names triggered by compat patches | Felix Fietkau | 2011-03-09 | 1 | -0/+14 |
| | | | | SVN-Revision: 25965 | ||||
* | mac80211: fix minstrel_ht sampling intervals (patch by Daniel Halperin) | Felix Fietkau | 2011-03-09 | 1 | -0/+50 |
| | | | | SVN-Revision: 25964 | ||||
* | ath9k: remove support for in-bss promisc mode, the rx filter flag is too ↵ | Felix Fietkau | 2011-03-09 | 1 | -0/+13 |
| | | | | | | broad and in-bss promisc mode is not particularly useful. should fix most (or all) instances of "ath: Could not stop RX..." error messages SVN-Revision: 25963 | ||||
* | mac80211: Add scan race fix | Michael Büsch | 2011-03-07 | 1 | -0/+141 |
| | | | | SVN-Revision: 25930 | ||||
* | mac80211: print message on hw restart | Michael Büsch | 2011-03-07 | 1 | -0/+14 |
| | | | | SVN-Revision: 25926 | ||||
* | mac80211: Don't include p54spi default eeprom | Michael Büsch | 2011-03-07 | 1 | -3/+2 |
| | | | | SVN-Revision: 25925 | ||||
* | mac80211: allow AP configuration of beacon interval, DTIM period, maximum ↵ | Felix Fietkau | 2011-03-02 | 1 | -4/+33 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | permissible STA listen interval, and basic rates This introduces beacon_int and basic_rate (per wifi-device), and dtim_period and max_listen_int (per wifi-iface) for mac80211. These configure the beacon interval, basic rate specification, DTIM period (one DTIM per this many beacon frames), and maximum listen interval that a STA will be permitted to associate with. All of the new settings are optional; if they're absent, the existing hostapd (or, in the case of basic_rate, driver) defaults will be used. The existing bintval property only used for type adhoc is moved from wifi-iface to wifi-device, and is renamed to beacon_interval because bintval isn't a great name. The beacon interval is property of the wifi-device; while the choice between wifi-device and wifi-iface may not be relevant with an adhoc network, there's no reason to configure the same property one way for type adhoc and another for type ap. This change isn't expected to cause many problems, as bintval was added recently, in r25111. Similarly, the list of basic rates, also added for type adhoc in r25111, is a property of the device and not the interface. Further, it ought to be represented in UCI as a list, not a string dependent on the format that iw uses. I’ve moved it onto the device, renamed it to basic_rate, and made it configurable for APs via hostapd. Finally, I adapted it to use the same kb/s representation as mcast_rate; there's precedent for this format in that it's also how madwifi interprets mcast_rate. Neither bintval nor basicrates were ever documented in the UCI wireless configuration page on the wiki. When this change is committed, I'll update the documentation as needed. Signed-off-by: Mark Mentovai <mark@moxienet.com> SVN-Revision: 25837 | ||||
* | 2.6.38: Let mac80211 select CONFIG_AVERAGE | Michael Büsch | 2011-03-01 | 1 | -0/+2 |
| | | | | SVN-Revision: 25818 | ||||
* | mac80211: improve ath9k AP A-MPDU PS buffering | Felix Fietkau | 2011-02-27 | 2 | -8/+44 |
| | | | | SVN-Revision: 25779 | ||||
* | mac80211: override CONFIG_IWLWIFI_LEGACY | Felix Fietkau | 2011-02-27 | 1 | -0/+1 |
| | | | | SVN-Revision: 25778 | ||||
* | mac80211: set CONFIG_RTLWIFI | Felix Fietkau | 2011-02-27 | 1 | -0/+1 |
| | | | | SVN-Revision: 25776 | ||||
* | p54: fix a null pointer dereference bug | Felix Fietkau | 2011-02-27 | 1 | -0/+18 |
| | | | | SVN-Revision: 25775 | ||||
* | mac80211: update to 2011-02-25 | Felix Fietkau | 2011-02-27 | 27 | -70/+69 |
| | | | | SVN-Revision: 25749 | ||||
* | ath9k: fix interrupt enable/disable issues | Felix Fietkau | 2011-02-18 | 1 | -0/+21 |
| | | | | SVN-Revision: 25575 | ||||
* | make all wext wifi drivers select DRIVER_WEXT_SUPPORT, so that ↵ | Felix Fietkau | 2011-02-13 | 1 | -1/+1 |
| | | | | | | hostapd/wpa_supplicant can make it optional SVN-Revision: 25518 | ||||
* | mac80211: add a patch for keeping track of the rx bitrate of remote stations | Felix Fietkau | 2011-02-10 | 1 | -0/+232 |
| | | | | SVN-Revision: 25441 | ||||
* | ath9k: remove an old tx stop workaround which conflicts with the powersave fixes | Felix Fietkau | 2011-02-10 | 1 | -0/+36 |
| | | | | SVN-Revision: 25439 | ||||
* | ath9k: improve the power save fix by closing another remaining race ↵ | Felix Fietkau | 2011-02-08 | 1 | -5/+9 |
| | | | | | | condition for setting the TIM bit SVN-Revision: 25428 | ||||
* | ath9k: add fixes for AP side powersave frame buffering | Felix Fietkau | 2011-02-08 | 2 | -0/+344 |
| | | | | SVN-Revision: 25426 | ||||
* | mac80211: update to wireless-testing 2010-02-07 | Felix Fietkau | 2011-02-08 | 18 | -2851/+20 |
| | | | | SVN-Revision: 25425 | ||||
* | ath: fix world regulatory domain fix-up so that all regulatory rules are ↵ | Felix Fietkau | 2011-02-08 | 1 | -0/+72 |
| | | | | | | | | | | | | | | processed r24503 (trunk) and r24505 (backfire) revised the regulatory rules used for the ath drivers' world regulatory domains in the 5GHz band by opening up channels 36, 40, 44, and 48 to being used without the *_PASSIVE_SCAN and *_NO_IBSS flags set. This was done by breaking ATH9K_5GHZ_5150_5350 into two REG_RULES. The various struct ieee80211_regdomains that reference these rules in their reg_rules fields need to have their n_reg_rules fields updated accordingly. SVN-Revision: 25418 | ||||
* | mac80211: fix the check for cloned skbs in the tx path | Felix Fietkau | 2011-02-07 | 1 | -0/+11 |
| | | | | SVN-Revision: 25398 | ||||
* | mac80211: when operating as a 4-addr station, do not pick up 4-addr frames ↵ | Felix Fietkau | 2011-02-05 | 1 | -0/+12 |
| | | | | | | meant for other stations, as this would confuse the bridge layer SVN-Revision: 25378 | ||||
* | ath9k: reduce false positives in the baseband hang check | Felix Fietkau | 2011-02-04 | 1 | -0/+109 |
| | | | | SVN-Revision: 25359 | ||||
* | mac80211: drop retransmitted data frames from the cooked monitor interface - ↵ | Felix Fietkau | 2011-02-04 | 1 | -0/+11 |
| | | | | | | reduces CPU usage SVN-Revision: 25358 | ||||
* | cfg80211: revert the max power patch - it seems to be limiting tx power too ↵ | Felix Fietkau | 2011-01-30 | 1 | -35/+0 |
| | | | | | | much on some devices SVN-Revision: 25258 | ||||
* | cfg80211: do not overwrite the hardware max power setting in the regulatory ↵ | Felix Fietkau | 2011-01-29 | 1 | -0/+35 |
| | | | | | | code, fixes reported tx power values SVN-Revision: 25238 | ||||
* | ath9k: reduce allocation size, common->cachelz is already added to the ↵ | Felix Fietkau | 2011-01-28 | 1 | -1/+1 |
| | | | | | | buffer size elsewhere SVN-Revision: 25205 | ||||
* | ath9k: fix a compile error in the debug stubs (fixes #8737, #8745) | Felix Fietkau | 2011-01-28 | 1 | -0/+10 |
| | | | | SVN-Revision: 25204 | ||||
* | mac80211: ignore errors in the command to set the rx/tx antenna - many ↵ | Felix Fietkau | 2011-01-28 | 1 | -1/+1 |
| | | | | | | drivers do not support this yet SVN-Revision: 25192 | ||||
* | mac80211: fix order of iw parameters, fix broken antenna config call | Jo-Philipp Wich | 2011-01-27 | 1 | -2/+2 |
| | | | | SVN-Revision: 25152 | ||||
* | mac80211: Fix antenna setting when only one of {rx,tx}antenna options is ↵ | Vasilis Tsiligiannis | 2011-01-27 | 1 | -4/+3 |
| | | | | | | specified SVN-Revision: 25136 | ||||
* | mac80211: add missing done to mac80211.sh (#8735) | Jo-Philipp Wich | 2011-01-26 | 1 | -0/+1 |
| | | | | SVN-Revision: 25131 | ||||
* | mac80211: add mising esac to mac80211.sh | Jo-Philipp Wich | 2011-01-26 | 1 | -0/+1 |
| | | | | SVN-Revision: 25122 | ||||
* | mac80211: rework recent mac80211.sh additions: - split antenna options into ↵ | Jo-Philipp Wich | 2011-01-26 | 1 | -7/+32 |
| | | | | | | rxantenna and txantenna to bring it in line with broadcom and madwifi - get rid of temporary variables - follow the documented config protocol for wep keys (option key # + option key# [s:]data) SVN-Revision: 25116 |