Config.in 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. # MadWifi configuration
  2. config MADWIFI_DEBUG
  3. bool "Enable compilation of debugging features"
  4. depends on EXPERIMENTAL && PACKAGE_kmod-madwifi
  5. default n
  6. choice
  7. prompt "Rate control algorithm selection"
  8. depends on PACKAGE_kmod-madwifi
  9. default MADWIFI_RCA_MINSTREL
  10. help
  11. This option controls how MadWifi chooses its bitrate.
  12. config MADWIFI_RCA_MINSTREL
  13. bool "Use the Minstrel rate control algorithm"
  14. help
  15. This code is takes a wandering minstrel approach. Wander around the
  16. different rates, singing wherever you can. And then, look at the
  17. performance, and make a choice. Note that the wandering minstrel will
  18. always wander in directions where he/she feels he/she will get paid
  19. the best for his/her work.
  20. config MADWIFI_RCA_ONOE
  21. bool "Use the Onoe rate control algorithm"
  22. help
  23. Onoe is a credit based RCA where the value of the credit is determined
  24. by the frequency of successful, erroneous and retransmissions
  25. accumulated during a fixed invocation period of 1000 ms. If less than
  26. 10% of the packets need to be retransmitted at a particular rate, Onoe
  27. keeps increasing its credit point till the threshold value of 10 is
  28. reached. At this point, the current transmission rate is increased to
  29. the next available higher rate and the process repeated with credit
  30. score of zero. Similar logic holds for deducting the credit score and
  31. moving to a lower bit-rate for failed packet
  32. transmission/retransmission attempts. However, once a bit-rate has
  33. been marked as failure in the previous attempt, Onoe will not attempt
  34. to select that bit-rate until 10 seconds have elapsed since the last
  35. attempt. Due to the manner in which it operates, Onoe is conservative
  36. in rate selection and is less sensitive to individual packet failure.
  37. config MADWIFI_RCA_AMRR
  38. bool "Use the AMRR rate control algorithm"
  39. help
  40. AMRR uses Binary Exponential Backoff (BEB) technique to adapt the
  41. length (threshold) of the sampling period used to change the values of
  42. bit-rate and transmission count parameters. It uses probe packets and
  43. depending on their transmission status adaptively changes the threshold
  44. value. The adaptation mechanism ensures fewer failed
  45. transmission/retransmission and higher throughput by not switching to a
  46. higher rate as specified by the backoff mechanism. In addition to this,
  47. the AMRR employs heuristics to capture the short-term variations of the
  48. channel by judiciously setting the rate and transmission count
  49. parameters.
  50. config MADWIFI_RCA_SAMPLERATE
  51. bool "Use the SampleRate rate control algorithm"
  52. help
  53. SampleRate decides on the transmission bit-rate based on the past
  54. history of performance; it keeps a record of the number of successive
  55. failures, the number of successful transmits and the total transmission
  56. time along with the destination for that bit-rate. Stale samples are
  57. removed based on a EWMA windowing mechanism. If in the sampling
  58. process, no successful acknowledgment is received or the number of
  59. packets sent is multiple of 10 on a specific link, it transmits the
  60. packet with the highest rate which has not failed 4 successive times.
  61. Other than that it transmits packets at the rate which has the lowest
  62. average transmission time.
  63. endchoice