mac80211: use multi-queue master netdevice
[deliverable/linux.git] / net / mac80211 / Kconfig
CommitLineData
f0706e82
JB
1config MAC80211
2 tristate "Generic IEEE 802.11 Networking Stack (mac80211)"
f0706e82
JB
3 select CRYPTO
4 select CRYPTO_ECB
5 select CRYPTO_ARC4
6 select CRYPTO_AES
7 select CRC32
8 select WIRELESS_EXT
9 select CFG80211
f0706e82 10 ---help---
c40896de
JL
11 This option enables the hardware independent IEEE 802.11
12 networking stack.
f0706e82 13
e2530083
JB
14config MAC80211_QOS
15 def_bool y
16 depends on MAC80211
17 depends on NET_SCHED
18 depends on NETDEVICES_MULTIQUEUE
19
20comment "QoS/HT support disabled"
21 depends on MAC80211 && !MAC80211_QOS
22comment "QoS/HT support needs CONFIG_NET_SCHED"
23 depends on MAC80211 && !NET_SCHED
24comment "QoS/HT support needs CONFIG_NETDEVICES_MULTIQUEUE"
25 depends on MAC80211 && !NETDEVICES_MULTIQUEUE
26
4b475898
JB
27menu "Rate control algorithm selection"
28 depends on MAC80211 != n
c21b39ac
SB
29
30choice
31 prompt "Default rate control algorithm"
32 default MAC80211_RC_DEFAULT_PID
c21b39ac
SB
33 ---help---
34 This option selects the default rate control algorithm
35 mac80211 will use. Note that this default can still be
36 overriden through the ieee80211_default_rc_algo module
4b475898 37 parameter if different algorithms are available.
c21b39ac
SB
38
39config MAC80211_RC_DEFAULT_PID
40 bool "PID controller based rate control algorithm"
41 select MAC80211_RC_PID
42 ---help---
43 Select the PID controller based rate control as the
44 default rate control algorithm. You should choose
45 this unless you know what you are doing.
46
4b475898
JB
47config MAC80211_RC_DEFAULT_NONE
48 bool "No default algorithm"
49 depends on EMBEDDED
50 help
51 Selecting this option will select no default algorithm
52 and allow you to not build any. Do not choose this
53 option unless you know your driver comes with another
54 suitable algorithm.
c21b39ac 55endchoice
ac71c691 56
4b475898
JB
57comment "Selecting 'y' for an algorithm will"
58comment "build the algorithm into mac80211."
59
c21b39ac
SB
60config MAC80211_RC_DEFAULT
61 string
c21b39ac 62 default "pid" if MAC80211_RC_DEFAULT_PID
c21b39ac
SB
63 default ""
64
65config MAC80211_RC_PID
4b475898 66 tristate "PID controller based rate control algorithm"
c21b39ac 67 ---help---
ad018375
MN
68 This option enables a TX rate control algorithm for
69 mac80211 that uses a PID controller to select the TX
70 rate.
71
c21b39ac
SB
72 Say Y or M unless you're sure you want to use a
73 different rate control algorithm.
74
4b475898 75endmenu
ad018375 76
2f5ce793
JB
77config MAC80211_MESH
78 bool "Enable mac80211 mesh networking (pre-802.11s) support"
37659ff8 79 depends on MAC80211 && EXPERIMENTAL
2f5ce793 80 ---help---
5c142e8d
JB
81 This options enables support of Draft 802.11s mesh networking.
82 The implementation is based on Draft 1.08 of the Mesh Networking
83 amendment. For more information visit http://o11s.org/.
2f5ce793
JB
84
85
f0706e82
JB
86config MAC80211_LEDS
87 bool "Enable LED triggers"
bd8fd21d
LT
88 depends on MAC80211
89 select NEW_LEDS
90 select LEDS_TRIGGERS
f0706e82 91 ---help---
c40896de
JL
92 This option enables a few LED triggers for different
93 packet receive/transmit events.
f0706e82 94
e9f207f0
JB
95config MAC80211_DEBUGFS
96 bool "Export mac80211 internals in DebugFS"
97 depends on MAC80211 && DEBUG_FS
98 ---help---
99 Select this to see extensive information about
100 the internal state of mac80211 in debugfs.
101
102 Say N unless you know you need this.
103
6feeb8aa
JB
104config MAC80211_DEBUG_PACKET_ALIGNMENT
105 bool "Enable packet alignment debugging"
106 depends on MAC80211
107 help
108 This option is recommended for driver authors and strongly
109 discouraged for everybody else, it will trigger a warning
110 when a driver hands mac80211 a buffer that is aligned in
111 a way that will cause problems with the IP stack on some
112 architectures.
113
114 Say N unless you're writing a mac80211 based driver.
115
f0706e82
JB
116config MAC80211_DEBUG
117 bool "Enable debugging output"
118 depends on MAC80211
119 ---help---
120 This option will enable debug tracing output for the
121 ieee80211 network stack.
122
123 If you are not trying to debug or develop the ieee80211
124 subsystem, you most likely want to say N here.
82b3cad9
RR
125
126config MAC80211_HT_DEBUG
c40896de
JL
127 bool "Enable HT debugging output"
128 depends on MAC80211_DEBUG
129 ---help---
130 This option enables 802.11n High Throughput features
131 debug tracing output.
132
133 If you are not trying to debug of develop the ieee80211
134 subsystem, you most likely want to say N here.
f0706e82
JB
135
136config MAC80211_VERBOSE_DEBUG
137 bool "Verbose debugging output"
138 depends on MAC80211_DEBUG
139
140config MAC80211_LOWTX_FRAME_DUMP
141 bool "Debug frame dumping"
142 depends on MAC80211_DEBUG
143 ---help---
144 Selecting this option will cause the stack to
145 print a message for each frame that is handed
146 to the lowlevel driver for transmission. This
147 message includes all MAC addresses and the
148 frame control field.
149
150 If unsure, say N and insert the debugging code
151 you require into the driver you are debugging.
152
153config TKIP_DEBUG
154 bool "TKIP debugging"
155 depends on MAC80211_DEBUG
156
157config MAC80211_DEBUG_COUNTERS
158 bool "Extra statistics for TX/RX debugging"
159 depends on MAC80211_DEBUG
160
161config MAC80211_IBSS_DEBUG
162 bool "Support for IBSS testing"
163 depends on MAC80211_DEBUG
164 ---help---
165 Say Y here if you intend to debug the IBSS code.
166
167config MAC80211_VERBOSE_PS_DEBUG
168 bool "Verbose powersave mode debugging"
169 depends on MAC80211_DEBUG
170 ---help---
171 Say Y here to print out verbose powersave
172 mode debug messages.
2f5ce793
JB
173
174config MAC80211_VERBOSE_MPL_DEBUG
175 bool "Verbose mesh peer link debugging"
176 depends on MAC80211_DEBUG && MAC80211_MESH
177 ---help---
178 Say Y here to print out verbose mesh peer link
179 debug messages.
This page took 0.152635 seconds and 5 git commands to generate.