diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-08-19 15:13:00 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-08-19 15:13:00 +0000 |
commit | 6fb461da2bd74ff73e7138e2bc41d446232a0534 (patch) | |
tree | 6a91cfad0d451a47f77e417c68548ed4a97e4945 /package/madwifi/Config.in | |
parent | 2bb863f337025c138dc92f6c7cc4e3a378d27e36 (diff) | |
download | upstream-6fb461da2bd74ff73e7138e2bc41d446232a0534.tar.gz upstream-6fb461da2bd74ff73e7138e2bc41d446232a0534.tar.bz2 upstream-6fb461da2bd74ff73e7138e2bc41d446232a0534.zip |
madwifi: add patch for building all modules (except for the HAL) into a single module. saves space and gets rid of unnecessary exports removes support for onoe and amrr - I don't think anybody needs these anymore
SVN-Revision: 17314
Diffstat (limited to 'package/madwifi/Config.in')
-rw-r--r-- | package/madwifi/Config.in | 41 |
1 files changed, 9 insertions, 32 deletions
diff --git a/package/madwifi/Config.in b/package/madwifi/Config.in index 23cc433f3d..802e52a663 100644 --- a/package/madwifi/Config.in +++ b/package/madwifi/Config.in @@ -30,6 +30,15 @@ config MADWIFI_UPSTREAM endchoice +config MADWIFI_SINGLE_MODULE + bool "Combine driver and net80211 into a single module" + depends on PACKAGE_kmod-madwifi + default y + help + This option combines all driver and stack related code (except for HAL) + into a single module, thus saving space and removing unnecessary kernel + exports + choice prompt "Rate control algorithm selection" depends on PACKAGE_kmod-madwifi @@ -46,38 +55,6 @@ config MADWIFI_RCA_MINSTREL always wander in directions where he/she feels he/she will get paid the best for his/her work. -config MADWIFI_RCA_ONOE - bool "Use the Onoe rate control algorithm" - help - Onoe is a credit based RCA where the value of the credit is determined - by the frequency of successful, erroneous and retransmissions - accumulated during a fixed invocation period of 1000 ms. If less than - 10% of the packets need to be retransmitted at a particular rate, Onoe - keeps increasing its credit point till the threshold value of 10 is - reached. At this point, the current transmission rate is increased to - the next available higher rate and the process repeated with credit - score of zero. Similar logic holds for deducting the credit score and - moving to a lower bit-rate for failed packet - transmission/retransmission attempts. However, once a bit-rate has - been marked as failure in the previous attempt, Onoe will not attempt - to select that bit-rate until 10 seconds have elapsed since the last - attempt. Due to the manner in which it operates, Onoe is conservative - in rate selection and is less sensitive to individual packet failure. - -config MADWIFI_RCA_AMRR - bool "Use the AMRR rate control algorithm" - help - AMRR uses Binary Exponential Backoff (BEB) technique to adapt the - length (threshold) of the sampling period used to change the values of - bit-rate and transmission count parameters. It uses probe packets and - depending on their transmission status adaptively changes the threshold - value. The adaptation mechanism ensures fewer failed - transmission/retransmission and higher throughput by not switching to a - higher rate as specified by the backoff mechanism. In addition to this, - the AMRR employs heuristics to capture the short-term variations of the - channel by judiciously setting the rate and transmission count - parameters. - config MADWIFI_RCA_SAMPLERATE bool "Use the SampleRate rate control algorithm" help |