Kconfig 26.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
#
# Traffic control configuration.
# 
4

R
Randy Dunlap 已提交
5
menuconfig NET_SCHED
6
	bool "QoS and/or fair queueing"
7
	select NET_SCH_FIFO
8 9 10
	---help---
	  When the kernel has several packets to send out over a network
	  device, it has to decide which ones to send first, which ones to
11 12
	  delay, and which ones to drop. This is the job of the queueing
	  disciplines, several different algorithms for how to do this
13 14 15 16 17 18 19 20 21 22 23 24
	  "fairly" have been proposed.

	  If you say N here, you will get the standard packet scheduler, which
	  is a FIFO (first come, first served). If you say Y here, you will be
	  able to choose from among several alternative algorithms which can
	  then be attached to different network devices. This is useful for
	  example if some of your network devices are real time devices that
	  need a certain minimum data flow rate, or if you need to limit the
	  maximum data flow rate for traffic which matches specified criteria.
	  This code is considered to be experimental.

	  To administer these schedulers, you'll need the user-level utilities
25 26 27
	  from the package iproute2+tc at
	  <https://www.kernel.org/pub/linux/utils/net/iproute2/>.  That package
	  also contains some documentation; for more, check out
28
	  <http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2>.
29 30 31

	  This Quality of Service (QoS) support will enable you to use
	  Differentiated Services (diffserv) and Resource Reservation Protocol
32 33 34
	  (RSVP) on your Linux router if you also say Y to the corresponding
	  classifiers below.  Documentation and software is at
	  <http://diffserv.sourceforge.net/>.
35 36 37 38 39 40 41 42

	  If you say Y here and to "/proc file system" below, you will be able
	  to read status information about packet schedulers from the file
	  /proc/net/psched.

	  The available schedulers are listed in the following questions; you
	  can say Y to as many as you like. If unsure, say N now.

43 44
if NET_SCHED

45 46
comment "Queueing/Scheduling"

L
Linus Torvalds 已提交
47
config NET_SCH_CBQ
48
	tristate "Class Based Queueing (CBQ)"
L
Linus Torvalds 已提交
49 50
	---help---
	  Say Y here if you want to use the Class-Based Queueing (CBQ) packet
51 52 53
	  scheduling algorithm. This algorithm classifies the waiting packets
	  into a tree-like hierarchy of classes; the leaves of this tree are
	  in turn scheduled by separate algorithms.
L
Linus Torvalds 已提交
54

55
	  See the top of <file:net/sched/sch_cbq.c> for more details.
L
Linus Torvalds 已提交
56 57 58

	  CBQ is a commonly used scheduler, so if you're unsure, you should
	  say Y here. Then say Y to all the queueing algorithms below that you
59
	  want to use as leaf disciplines.
L
Linus Torvalds 已提交
60 61 62 63 64

	  To compile this code as a module, choose M here: the
	  module will be called sch_cbq.

config NET_SCH_HTB
65
	tristate "Hierarchical Token Bucket (HTB)"
L
Linus Torvalds 已提交
66 67
	---help---
	  Say Y here if you want to use the Hierarchical Token Buckets (HTB)
68
	  packet scheduling algorithm. See
L
Linus Torvalds 已提交
69 70 71
	  <http://luxik.cdi.cz/~devik/qos/htb/> for complete manual and
	  in-depth articles.

72
	  HTB is very similar to CBQ regarding its goals however is has
L
Linus Torvalds 已提交
73 74 75 76 77 78
	  different properties and different algorithm.

	  To compile this code as a module, choose M here: the
	  module will be called sch_htb.

config NET_SCH_HFSC
79
	tristate "Hierarchical Fair Service Curve (HFSC)"
L
Linus Torvalds 已提交
80 81
	---help---
	  Say Y here if you want to use the Hierarchical Fair Service Curve
82
	  (HFSC) packet scheduling algorithm.
L
Linus Torvalds 已提交
83 84 85 86 87

	  To compile this code as a module, choose M here: the
	  module will be called sch_hfsc.

config NET_SCH_ATM
88
	tristate "ATM Virtual Circuits (ATM)"
89
	depends on ATM
L
Linus Torvalds 已提交
90 91
	---help---
	  Say Y here if you want to use the ATM pseudo-scheduler.  This
92 93 94 95
	  provides a framework for invoking classifiers, which in turn
	  select classes of this queuing discipline.  Each class maps
	  the flow(s) it is handling to a given virtual circuit.

96
	  See the top of <file:net/sched/sch_atm.c> for more details.
L
Linus Torvalds 已提交
97 98 99 100 101

	  To compile this code as a module, choose M here: the
	  module will be called sch_atm.

config NET_SCH_PRIO
102 103
	tristate "Multi Band Priority Queueing (PRIO)"
	---help---
L
Linus Torvalds 已提交
104
	  Say Y here if you want to use an n-band priority queue packet
105
	  scheduler.
L
Linus Torvalds 已提交
106 107 108 109

	  To compile this code as a module, choose M here: the
	  module will be called sch_prio.

110 111 112 113 114 115 116 117 118
config NET_SCH_MULTIQ
	tristate "Hardware Multiqueue-aware Multi Band Queuing (MULTIQ)"
	---help---
	  Say Y here if you want to use an n-band queue packet scheduler
	  to support devices that have multiple hardware transmit queues.

	  To compile this code as a module, choose M here: the
	  module will be called sch_multiq.

L
Linus Torvalds 已提交
119
config NET_SCH_RED
120 121
	tristate "Random Early Detection (RED)"
	---help---
L
Linus Torvalds 已提交
122
	  Say Y here if you want to use the Random Early Detection (RED)
123 124 125
	  packet scheduling algorithm.

	  See the top of <file:net/sched/sch_red.c> for more details.
L
Linus Torvalds 已提交
126 127 128 129

	  To compile this code as a module, choose M here: the
	  module will be called sch_red.

E
Eric Dumazet 已提交
130 131 132 133 134 135 136 137 138 139 140
config NET_SCH_SFB
	tristate "Stochastic Fair Blue (SFB)"
	---help---
	  Say Y here if you want to use the Stochastic Fair Blue (SFB)
	  packet scheduling algorithm.

	  See the top of <file:net/sched/sch_sfb.c> for more details.

	  To compile this code as a module, choose M here: the
	  module will be called sch_sfb.

L
Linus Torvalds 已提交
141
config NET_SCH_SFQ
142
	tristate "Stochastic Fairness Queueing (SFQ)"
L
Linus Torvalds 已提交
143 144
	---help---
	  Say Y here if you want to use the Stochastic Fairness Queueing (SFQ)
145
	  packet scheduling algorithm.
146 147

	  See the top of <file:net/sched/sch_sfq.c> for more details.
L
Linus Torvalds 已提交
148 149 150 151 152

	  To compile this code as a module, choose M here: the
	  module will be called sch_sfq.

config NET_SCH_TEQL
153
	tristate "True Link Equalizer (TEQL)"
L
Linus Torvalds 已提交
154 155
	---help---
	  Say Y here if you want to use the True Link Equalizer (TLE) packet
156 157 158 159
	  scheduling algorithm. This queueing discipline allows the combination
	  of several physical devices into one virtual device.

	  See the top of <file:net/sched/sch_teql.c> for more details.
L
Linus Torvalds 已提交
160 161 162 163 164

	  To compile this code as a module, choose M here: the
	  module will be called sch_teql.

config NET_SCH_TBF
165 166 167 168 169 170
	tristate "Token Bucket Filter (TBF)"
	---help---
	  Say Y here if you want to use the Token Bucket Filter (TBF) packet
	  scheduling algorithm.

	  See the top of <file:net/sched/sch_tbf.c> for more details.
L
Linus Torvalds 已提交
171 172 173 174

	  To compile this code as a module, choose M here: the
	  module will be called sch_tbf.

175 176 177 178 179 180 181 182 183 184 185
config NET_SCH_CBS
	tristate "Credit Based Shaper (CBS)"
	---help---
	  Say Y here if you want to use the Credit Based Shaper (CBS) packet
	  scheduling algorithm.

	  See the top of <file:net/sched/sch_cbs.c> for more details.

	  To compile this code as a module, choose M here: the
	  module will be called sch_cbs.

L
Linus Torvalds 已提交
186
config NET_SCH_GRED
187 188
	tristate "Generic Random Early Detection (GRED)"
	---help---
L
Linus Torvalds 已提交
189
	  Say Y here if you want to use the Generic Random Early Detection
190
	  (GRED) packet scheduling algorithm for some of your network devices
L
Linus Torvalds 已提交
191 192 193 194 195 196 197
	  (see the top of <file:net/sched/sch_red.c> for details and
	  references about the algorithm).

	  To compile this code as a module, choose M here: the
	  module will be called sch_gred.

config NET_SCH_DSMARK
198 199
	tristate "Differentiated Services marker (DSMARK)"
	---help---
L
Linus Torvalds 已提交
200 201 202 203 204 205 206 207 208
	  Say Y if you want to schedule packets according to the
	  Differentiated Services architecture proposed in RFC 2475.
	  Technical information on this method, with pointers to associated
	  RFCs, is available at <http://www.gta.ufrj.br/diffserv/>.

	  To compile this code as a module, choose M here: the
	  module will be called sch_dsmark.

config NET_SCH_NETEM
209 210
	tristate "Network emulator (NETEM)"
	---help---
L
Linus Torvalds 已提交
211 212 213 214 215 216 217 218 219
	  Say Y if you want to emulate network delay, loss, and packet
	  re-ordering. This is often useful to simulate networks when
	  testing applications or protocols.

	  To compile this driver as a module, choose M here: the module
	  will be called sch_netem.

	  If unsure, say N.

P
Patrick McHardy 已提交
220 221 222 223 224 225 226 227 228 229 230
config NET_SCH_DRR
	tristate "Deficit Round Robin scheduler (DRR)"
	help
	  Say Y here if you want to use the Deficit Round Robin (DRR) packet
	  scheduling algorithm.

	  To compile this driver as a module, choose M here: the module
	  will be called sch_drr.

	  If unsure, say N.

231 232 233 234 235 236 237 238 239 240 241 242
config NET_SCH_MQPRIO
	tristate "Multi-queue priority scheduler (MQPRIO)"
	help
	  Say Y here if you want to use the Multi-queue Priority scheduler.
	  This scheduler allows QOS to be offloaded on NICs that have support
	  for offloading QOS schedulers.

	  To compile this driver as a module, choose M here: the module will
	  be called sch_mqprio.

	  If unsure, say N.

S
stephen hemminger 已提交
243 244 245 246 247 248 249 250 251 252 253
config NET_SCH_CHOKE
	tristate "CHOose and Keep responsive flow scheduler (CHOKE)"
	help
	  Say Y here if you want to use the CHOKe packet scheduler (CHOose
	  and Keep for responsive flows, CHOose and Kill for unresponsive
	  flows). This is a variation of RED which trys to penalize flows
	  that monopolize the queue.

	  To compile this code as a module, choose M here: the
	  module will be called sch_choke.

254 255 256 257 258 259 260 261 262 263 264
config NET_SCH_QFQ
	tristate "Quick Fair Queueing scheduler (QFQ)"
	help
	  Say Y here if you want to use the Quick Fair Queueing Scheduler (QFQ)
	  packet scheduling algorithm.

	  To compile this driver as a module, choose M here: the module
	  will be called sch_qfq.

	  If unsure, say N.

E
Eric Dumazet 已提交
265 266 267 268 269 270 271 272 273 274 275
config NET_SCH_CODEL
	tristate "Controlled Delay AQM (CODEL)"
	help
	  Say Y here if you want to use the Controlled Delay (CODEL)
	  packet scheduling algorithm.

	  To compile this driver as a module, choose M here: the module
	  will be called sch_codel.

	  If unsure, say N.

E
Eric Dumazet 已提交
276 277 278 279 280 281 282 283 284 285 286
config NET_SCH_FQ_CODEL
	tristate "Fair Queue Controlled Delay AQM (FQ_CODEL)"
	help
	  Say Y here if you want to use the FQ Controlled Delay (FQ_CODEL)
	  packet scheduling algorithm.

	  To compile this driver as a module, choose M here: the module
	  will be called sch_fq_codel.

	  If unsure, say N.

287 288 289 290 291 292 293 294 295 296 297 298 299 300
config NET_SCH_FQ
	tristate "Fair Queue"
	help
	  Say Y here if you want to use the FQ packet scheduling algorithm.

	  FQ does flow separation, and is able to respect pacing requirements
	  set by TCP stack into sk->sk_pacing_rate (for localy generated
	  traffic)

	  To compile this driver as a module, choose M here: the module
	  will be called sch_fq.

	  If unsure, say N.

301 302 303 304 305 306 307 308 309
config NET_SCH_HHF
	tristate "Heavy-Hitter Filter (HHF)"
	help
	  Say Y here if you want to use the Heavy-Hitter Filter (HHF)
	  packet scheduling algorithm.

	  To compile this driver as a module, choose M here: the module
	  will be called sch_hhf.

310 311 312 313 314 315 316 317 318 319 320 321 322
config NET_SCH_PIE
	tristate "Proportional Integral controller Enhanced (PIE) scheduler"
	help
	  Say Y here if you want to use the Proportional Integral controller
	  Enhanced scheduler packet scheduling algorithm.
	  For more information, please see
	  http://tools.ietf.org/html/draft-pan-tsvwg-pie-00

	  To compile this driver as a module, choose M here: the module
	  will be called sch_pie.

	  If unsure, say N.

L
Linus Torvalds 已提交
323
config NET_SCH_INGRESS
D
Daniel Borkmann 已提交
324
	tristate "Ingress/classifier-action Qdisc"
325
	depends on NET_CLS_ACT
326
	select NET_INGRESS
D
Daniel Borkmann 已提交
327
	select NET_EGRESS
328
	---help---
D
Daniel Borkmann 已提交
329 330 331 332 333 334
	  Say Y here if you want to use classifiers for incoming and/or outgoing
	  packets. This qdisc doesn't do anything else besides running classifiers,
	  which can also have actions attached to them. In case of outgoing packets,
	  classifiers that this qdisc holds are executed in the transmit path
	  before real enqueuing to an egress qdisc happens.

L
Linus Torvalds 已提交
335 336
	  If unsure, say Y.

D
Daniel Borkmann 已提交
337 338
	  To compile this code as a module, choose M here: the module will be
	  called sch_ingress with alias of sch_clsact.
L
Linus Torvalds 已提交
339

340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
config NET_SCH_PLUG
	tristate "Plug network traffic until release (PLUG)"
	---help---

	  This queuing discipline allows userspace to plug/unplug a network
	  output queue, using the netlink interface.  When it receives an
	  enqueue command it inserts a plug into the outbound queue that
	  causes following packets to enqueue until a dequeue command arrives
	  over netlink, causing the plug to be removed and resuming the normal
	  packet flow.

	  This module also provides a generic "network output buffering"
	  functionality (aka output commit), wherein upon arrival of a dequeue
	  command, only packets up to the first plug are released for delivery.
	  The Remus HA project uses this module to enable speculative execution
	  of virtual machines by allowing the generated network output to be rolled
	  back if needed.

358
	  For more information, please refer to <http://wiki.xenproject.org/wiki/Remus>
359 360 361 362 363 364 365

	  Say Y here if you are using this kernel for Xen dom0 and
	  want to protect Xen guests with Remus.

	  To compile this code as a module, choose M here: the
	  module will be called sch_plug.

366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410
menuconfig NET_SCH_DEFAULT
	bool "Allow override default queue discipline"
	---help---
	  Support for selection of default queuing discipline.

	  Nearly all users can safely say no here, and the default
	  of pfifo_fast will be used. Many distributions already set
	  the default value via /proc/sys/net/core/default_qdisc.

	  If unsure, say N.

if NET_SCH_DEFAULT

choice
	prompt "Default queuing discipline"
	default DEFAULT_PFIFO_FAST
	help
	  Select the queueing discipline that will be used by default
	  for all network devices.

	config DEFAULT_FQ
		bool "Fair Queue" if NET_SCH_FQ

	config DEFAULT_CODEL
		bool "Controlled Delay" if NET_SCH_CODEL

	config DEFAULT_FQ_CODEL
		bool "Fair Queue Controlled Delay" if NET_SCH_FQ_CODEL

	config DEFAULT_SFQ
		bool "Stochastic Fair Queue" if NET_SCH_SFQ

	config DEFAULT_PFIFO_FAST
		bool "Priority FIFO Fast"
endchoice

config DEFAULT_NET_SCH
	string
	default "pfifo_fast" if DEFAULT_PFIFO_FAST
	default "fq" if DEFAULT_FQ
	default "fq_codel" if DEFAULT_FQ_CODEL
	default "sfq" if DEFAULT_SFQ
	default "pfifo_fast"
endif

411
comment "Classification"
L
Linus Torvalds 已提交
412 413

config NET_CLS
414
	bool
L
Linus Torvalds 已提交
415 416

config NET_CLS_BASIC
417 418
	tristate "Elementary classification (BASIC)"
	select NET_CLS
L
Linus Torvalds 已提交
419 420 421 422 423 424 425 426
	---help---
	  Say Y here if you want to be able to classify packets using
	  only extended matches and actions.

	  To compile this code as a module, choose M here: the
	  module will be called cls_basic.

config NET_CLS_TCINDEX
427 428 429 430 431 432
	tristate "Traffic-Control Index (TCINDEX)"
	select NET_CLS
	---help---
	  Say Y here if you want to be able to classify packets based on
	  traffic control indices. You will want this feature if you want
	  to implement Differentiated Services together with DSMARK.
L
Linus Torvalds 已提交
433 434 435 436 437

	  To compile this code as a module, choose M here: the
	  module will be called cls_tcindex.

config NET_CLS_ROUTE4
438
	tristate "Routing decision (ROUTE)"
439
	depends on INET
440
	select IP_ROUTE_CLASSID
441 442 443 444
	select NET_CLS
	---help---
	  If you say Y here, you will be able to classify packets
	  according to the route table entry they matched.
L
Linus Torvalds 已提交
445 446 447 448 449

	  To compile this code as a module, choose M here: the
	  module will be called cls_route.

config NET_CLS_FW
450 451 452 453 454
	tristate "Netfilter mark (FW)"
	select NET_CLS
	---help---
	  If you say Y here, you will be able to classify packets
	  according to netfilter/firewall marks.
L
Linus Torvalds 已提交
455 456 457 458 459

	  To compile this code as a module, choose M here: the
	  module will be called cls_fw.

config NET_CLS_U32
460 461 462
	tristate "Universal 32bit comparisons w/ hashing (U32)"
	select NET_CLS
	---help---
463
	  Say Y here to be able to classify packets using a universal
464
	  32bit pieces based comparison scheme.
L
Linus Torvalds 已提交
465 466 467 468 469

	  To compile this code as a module, choose M here: the
	  module will be called cls_u32.

config CLS_U32_PERF
470
	bool "Performance counters support"
L
Linus Torvalds 已提交
471
	depends on NET_CLS_U32
472 473 474
	---help---
	  Say Y here to make u32 gather additional statistics useful for
	  fine tuning u32 classifiers.
L
Linus Torvalds 已提交
475 476

config CLS_U32_MARK
477
	bool "Netfilter marks support"
T
Thomas Graf 已提交
478
	depends on NET_CLS_U32
479 480
	---help---
	  Say Y here to be able to use netfilter marks as u32 key.
L
Linus Torvalds 已提交
481 482

config NET_CLS_RSVP
483 484
	tristate "IPv4 Resource Reservation Protocol (RSVP)"
	select NET_CLS
L
Linus Torvalds 已提交
485 486 487 488 489 490 491 492 493 494 495 496
	---help---
	  The Resource Reservation Protocol (RSVP) permits end systems to
	  request a minimum and maximum data flow rate for a connection; this
	  is important for real time data such as streaming sound or video.

	  Say Y here if you want to be able to classify outgoing packets based
	  on their RSVP requests.

	  To compile this code as a module, choose M here: the
	  module will be called cls_rsvp.

config NET_CLS_RSVP6
497 498
	tristate "IPv6 Resource Reservation Protocol (RSVP6)"
	select NET_CLS
L
Linus Torvalds 已提交
499 500 501 502 503 504
	---help---
	  The Resource Reservation Protocol (RSVP) permits end systems to
	  request a minimum and maximum data flow rate for a connection; this
	  is important for real time data such as streaming sound or video.

	  Say Y here if you want to be able to classify outgoing packets based
505
	  on their RSVP requests and you are using the IPv6 protocol.
L
Linus Torvalds 已提交
506 507 508 509

	  To compile this code as a module, choose M here: the
	  module will be called cls_rsvp6.

510 511 512 513 514 515 516 517 518 519 520
config NET_CLS_FLOW
	tristate "Flow classifier"
	select NET_CLS
	---help---
	  If you say Y here, you will be able to classify packets based on
	  a configurable combination of packet keys. This is mostly useful
	  in combination with SFQ.

	  To compile this code as a module, choose M here: the
	  module will be called cls_flow.

T
Thomas Graf 已提交
521
config NET_CLS_CGROUP
B
Ben Blum 已提交
522
	tristate "Control Group Classifier"
T
Thomas Graf 已提交
523
	select NET_CLS
524
	select CGROUP_NET_CLASSID
T
Thomas Graf 已提交
525 526 527 528 529
	depends on CGROUPS
	---help---
	  Say Y here if you want to classify packets based on the control
	  cgroup of their process.

B
Ben Blum 已提交
530 531 532
	  To compile this code as a module, choose M here: the
	  module will be called cls_cgroup.

533 534 535 536 537 538 539 540 541 542
config NET_CLS_BPF
	tristate "BPF-based classifier"
	select NET_CLS
	---help---
	  If you say Y here, you will be able to classify packets based on
	  programmable BPF (JIT'ed) filters as an alternative to ematches.

	  To compile this code as a module, choose M here: the module will
	  be called cls_bpf.

J
Jiri Pirko 已提交
543 544 545 546 547 548 549 550 551 552
config NET_CLS_FLOWER
	tristate "Flower classifier"
	select NET_CLS
	---help---
	  If you say Y here, you will be able to classify packets based on
	  a configurable combination of packet keys and masks.

	  To compile this code as a module, choose M here: the module will
	  be called cls_flower.

553 554 555 556 557 558 559 560 561 562
config NET_CLS_MATCHALL
	tristate "Match-all classifier"
	select NET_CLS
	---help---
	  If you say Y here, you will be able to classify packets based on
	  nothing. Every packet will match.

	  To compile this code as a module, choose M here: the module will
	  be called cls_matchall.

L
Linus Torvalds 已提交
563 564
config NET_EMATCH
	bool "Extended Matches"
565
	select NET_CLS
L
Linus Torvalds 已提交
566 567 568 569 570
	---help---
	  Say Y here if you want to use extended matches on top of classifiers
	  and select the extended matches below.

	  Extended matches are small classification helpers not worth writing
571
	  a separate classifier for.
L
Linus Torvalds 已提交
572

573
	  A recent version of the iproute2 package is required to use
L
Linus Torvalds 已提交
574 575 576 577 578 579 580 581 582
	  extended matches.

config NET_EMATCH_STACK
	int "Stack size"
	depends on NET_EMATCH
	default "32"
	---help---
	  Size of the local stack variable used while evaluating the tree of
	  ematches. Limits the depth of the tree, i.e. the number of
583
	  encapsulated precedences. Every level requires 4 bytes of additional
L
Linus Torvalds 已提交
584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606
	  stack space.

config NET_EMATCH_CMP
	tristate "Simple packet data comparison"
	depends on NET_EMATCH
	---help---
	  Say Y here if you want to be able to classify packets based on
	  simple packet data comparisons for 8, 16, and 32bit values.

	  To compile this code as a module, choose M here: the
	  module will be called em_cmp.

config NET_EMATCH_NBYTE
	tristate "Multi byte comparison"
	depends on NET_EMATCH
	---help---
	  Say Y here if you want to be able to classify packets based on
	  multiple byte comparisons mainly useful for IPv6 address comparisons.

	  To compile this code as a module, choose M here: the
	  module will be called em_nbyte.

config NET_EMATCH_U32
607
	tristate "U32 key"
L
Linus Torvalds 已提交
608 609 610 611 612 613 614 615 616 617 618 619
	depends on NET_EMATCH
	---help---
	  Say Y here if you want to be able to classify packets using
	  the famous u32 key in combination with logic relations.

	  To compile this code as a module, choose M here: the
	  module will be called em_u32.

config NET_EMATCH_META
	tristate "Metadata"
	depends on NET_EMATCH
	---help---
620
	  Say Y here if you want to be able to classify packets based on
L
Linus Torvalds 已提交
621 622 623 624 625 626
	  metadata such as load average, netfilter attributes, socket
	  attributes and routing decisions.

	  To compile this code as a module, choose M here: the
	  module will be called em_meta.

627 628 629
config NET_EMATCH_TEXT
	tristate "Textsearch"
	depends on NET_EMATCH
630
	select TEXTSEARCH
631
	select TEXTSEARCH_KMP
632
	select TEXTSEARCH_BM
633
	select TEXTSEARCH_FSM
634
	---help---
635
	  Say Y here if you want to be able to classify packets based on
636
	  textsearch comparisons.
637 638 639 640

	  To compile this code as a module, choose M here: the
	  module will be called em_text.

641 642
config NET_EMATCH_CANID
	tristate "CAN Identifier"
643
	depends on NET_EMATCH && (CAN=y || CAN=m)
644 645 646 647 648 649 650
	---help---
	  Say Y here if you want to be able to classify CAN frames based
	  on CAN Identifier.

	  To compile this code as a module, choose M here: the
	  module will be called em_canid.

F
Florian Westphal 已提交
651 652 653 654 655 656 657 658 659 660
config NET_EMATCH_IPSET
	tristate "IPset"
	depends on NET_EMATCH && IP_SET
	---help---
	  Say Y here if you want to be able to classify packets based on
	  ipset membership.

	  To compile this code as a module, choose M here: the
	  module will be called em_ipset.

L
Linus Torvalds 已提交
661
config NET_CLS_ACT
662
	bool "Actions"
663
	select NET_CLS
L
Linus Torvalds 已提交
664
	---help---
665 666 667 668 669 670 671
	  Say Y here if you want to use traffic control actions. Actions
	  get attached to classifiers and are invoked after a successful
	  classification. They are used to overwrite the classification
	  result, instantly drop or redirect packets, etc.

	  A recent version of the iproute2 package is required to use
	  extended matches.
L
Linus Torvalds 已提交
672 673

config NET_ACT_POLICE
674
	tristate "Traffic Policing"
L
Linus Torvalds 已提交
675 676
        depends on NET_CLS_ACT 
        ---help---
677 678 679 680 681
	  Say Y here if you want to do traffic policing, i.e. strict
	  bandwidth limiting. This action replaces the existing policing
	  module.

	  To compile this code as a module, choose M here: the
682
	  module will be called act_police.
L
Linus Torvalds 已提交
683 684

config NET_ACT_GACT
685
        tristate "Generic actions"
L
Linus Torvalds 已提交
686 687
        depends on NET_CLS_ACT
        ---help---
688 689 690 691
	  Say Y here to take generic actions such as dropping and
	  accepting packets.

	  To compile this code as a module, choose M here: the
692
	  module will be called act_gact.
L
Linus Torvalds 已提交
693 694

config GACT_PROB
695
        bool "Probability support"
L
Linus Torvalds 已提交
696 697
        depends on NET_ACT_GACT
        ---help---
698
	  Say Y here to use the generic action randomly or deterministically.
L
Linus Torvalds 已提交
699 700

config NET_ACT_MIRRED
701
        tristate "Redirecting and Mirroring"
L
Linus Torvalds 已提交
702 703
        depends on NET_CLS_ACT
        ---help---
704 705 706 707
	  Say Y here to allow packets to be mirrored or redirected to
	  other devices.

	  To compile this code as a module, choose M here: the
708
	  module will be called act_mirred.
L
Linus Torvalds 已提交
709

710 711 712 713 714 715 716 717 718 719 720 721
config NET_ACT_SAMPLE
        tristate "Traffic Sampling"
        depends on NET_CLS_ACT
        select PSAMPLE
        ---help---
	  Say Y here to allow packet sampling tc action. The packet sample
	  action consists of statistically choosing packets and sampling
	  them using the psample module.

	  To compile this code as a module, choose M here: the
	  module will be called act_sample.

L
Linus Torvalds 已提交
722
config NET_ACT_IPT
723
        tristate "IPtables targets"
L
Linus Torvalds 已提交
724 725
        depends on NET_CLS_ACT && NETFILTER && IP_NF_IPTABLES
        ---help---
726
	  Say Y here to be able to invoke iptables targets after successful
727 728 729
	  classification.

	  To compile this code as a module, choose M here: the
730
	  module will be called act_ipt.
L
Linus Torvalds 已提交
731

H
Herbert Xu 已提交
732 733 734 735 736 737 738 739
config NET_ACT_NAT
        tristate "Stateless NAT"
        depends on NET_CLS_ACT
        ---help---
	  Say Y here to do stateless NAT on IPv4 packets.  You should use
	  netfilter for NAT unless you know what you are doing.

	  To compile this code as a module, choose M here: the
740
	  module will be called act_nat.
H
Herbert Xu 已提交
741

L
Linus Torvalds 已提交
742
config NET_ACT_PEDIT
743
        tristate "Packet Editing"
L
Linus Torvalds 已提交
744 745
        depends on NET_CLS_ACT
        ---help---
746
	  Say Y here if you want to mangle the content of packets.
L
Linus Torvalds 已提交
747

748
	  To compile this code as a module, choose M here: the
749
	  module will be called act_pedit.
L
Linus Torvalds 已提交
750

751
config NET_ACT_SIMP
752
        tristate "Simple Example (Debug)"
753 754
        depends on NET_CLS_ACT
        ---help---
755 756 757 758 759 760 761 762
	  Say Y here to add a simple action for demonstration purposes.
	  It is meant as an example and for debugging purposes. It will
	  print a configured policy string followed by the packet count
	  to the console for every packet that passes by.

	  If unsure, say N.

	  To compile this code as a module, choose M here: the
763
	  module will be called act_simple.
764

765 766 767 768 769 770 771 772 773
config NET_ACT_SKBEDIT
        tristate "SKB Editing"
        depends on NET_CLS_ACT
        ---help---
	  Say Y here to change skb priority or queue_mapping settings.

	  If unsure, say N.

	  To compile this code as a module, choose M here: the
774
	  module will be called act_skbedit.
775

776 777
config NET_ACT_CSUM
        tristate "Checksum Updating"
778
        depends on NET_CLS_ACT && INET
779
        select LIBCRC32C
780 781 782 783 784 785 786
        ---help---
	  Say Y here to update some common checksum after some direct
	  packet alterations.

	  To compile this code as a module, choose M here: the
	  module will be called act_csum.

J
Jiri Pirko 已提交
787 788 789 790 791 792 793 794 795 796 797
config NET_ACT_VLAN
        tristate "Vlan manipulation"
        depends on NET_CLS_ACT
        ---help---
	  Say Y here to push or pop vlan headers.

	  If unsure, say N.

	  To compile this code as a module, choose M here: the
	  module will be called act_vlan.

J
Jiri Pirko 已提交
798 799 800 801 802 803 804 805 806 807 808 809
config NET_ACT_BPF
        tristate "BPF based action"
        depends on NET_CLS_ACT
        ---help---
	  Say Y here to execute BPF code on packets. The BPF code will decide
	  if the packet should be dropped or not.

	  If unsure, say N.

	  To compile this code as a module, choose M here: the
	  module will be called act_bpf.

810 811 812
config NET_ACT_CONNMARK
        tristate "Netfilter Connection Mark Retriever"
        depends on NET_CLS_ACT && NETFILTER && IP_NF_IPTABLES
813
        depends on NF_CONNTRACK && NF_CONNTRACK_MARK
814 815 816 817 818 819 820 821
        ---help---
	  Say Y here to allow retrieving of conn mark

	  If unsure, say N.

	  To compile this code as a module, choose M here: the
	  module will be called act_connmark.

822 823 824 825 826 827 828 829 830 831 832
config NET_ACT_SKBMOD
        tristate "skb data modification action"
        depends on NET_CLS_ACT
        ---help---
         Say Y here to allow modification of skb data

         If unsure, say N.

         To compile this code as a module, choose M here: the
         module will be called act_skbmod.

J
Jamal Hadi Salim 已提交
833 834 835
config NET_ACT_IFE
        tristate "Inter-FE action based on IETF ForCES InterFE LFB"
        depends on NET_CLS_ACT
836
        select NET_IFE
J
Jamal Hadi Salim 已提交
837 838 839 840 841 842 843 844 845
        ---help---
	  Say Y here to allow for sourcing and terminating metadata
	  For details refer to netdev01 paper:
	  "Distributing Linux Traffic Control Classifier-Action Subsystem"
	   Authors: Jamal Hadi Salim and Damascene M. Joachimpillai

	  To compile this code as a module, choose M here: the
	  module will be called act_ife.

A
Amir Vadai 已提交
846 847 848 849 850 851 852 853 854 855 856
config NET_ACT_TUNNEL_KEY
        tristate "IP tunnel metadata manipulation"
        depends on NET_CLS_ACT
        ---help---
	  Say Y here to set/release ip tunnel metadata.

	  If unsure, say N.

	  To compile this code as a module, choose M here: the
	  module will be called act_tunnel_key.

857 858 859 860
config NET_IFE_SKBMARK
        tristate "Support to encoding decoding skb mark on IFE action"
        depends on NET_ACT_IFE

861 862 863 864
config NET_IFE_SKBPRIO
        tristate "Support to encoding decoding skb prio on IFE action"
        depends on NET_ACT_IFE

865 866 867 868
config NET_IFE_SKBTCINDEX
        tristate "Support to encoding decoding skb tcindex on IFE action"
        depends on NET_ACT_IFE

869 870
config NET_CLS_IND
	bool "Incoming device classification"
871
	depends on NET_CLS_U32 || NET_CLS_FW
872 873 874 875 876
	---help---
	  Say Y here to extend the u32 and fw classifier to support
	  classification based on the incoming device. This option is
	  likely to disappear in favour of the metadata ematch.

877 878
endif # NET_SCHED

R
Randy Dunlap 已提交
879 880
config NET_SCH_FIFO
	bool