Kconfig 19.6 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 25 26
	  "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
	  from the package iproute2+tc at <ftp://ftp.tux.org/pub/net/ip-routing/>.
	  That package also contains some documentation; for more, check out
27
	  <http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2>.
28 29 30

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

	  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.

42 43
if NET_SCHED

44 45
comment "Queueing/Scheduling"

L
Linus Torvalds 已提交
46
config NET_SCH_CBQ
47
	tristate "Class Based Queueing (CBQ)"
L
Linus Torvalds 已提交
48 49
	---help---
	  Say Y here if you want to use the Class-Based Queueing (CBQ) packet
50 51 52
	  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 已提交
53

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

	  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
58
	  want to use as leaf disciplines.
L
Linus Torvalds 已提交
59 60 61 62 63

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

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

71
	  HTB is very similar to CBQ regarding its goals however is has
L
Linus Torvalds 已提交
72 73 74 75 76 77
	  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
78
	tristate "Hierarchical Fair Service Curve (HFSC)"
L
Linus Torvalds 已提交
79 80
	---help---
	  Say Y here if you want to use the Hierarchical Fair Service Curve
81
	  (HFSC) packet scheduling algorithm.
L
Linus Torvalds 已提交
82 83 84 85 86

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

config NET_SCH_ATM
87
	tristate "ATM Virtual Circuits (ATM)"
88
	depends on ATM
L
Linus Torvalds 已提交
89 90
	---help---
	  Say Y here if you want to use the ATM pseudo-scheduler.  This
91 92 93 94
	  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.

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

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

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

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

109 110 111 112 113 114 115 116 117
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 已提交
118
config NET_SCH_RED
119 120
	tristate "Random Early Detection (RED)"
	---help---
L
Linus Torvalds 已提交
121
	  Say Y here if you want to use the Random Early Detection (RED)
122 123 124
	  packet scheduling algorithm.

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

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

E
Eric Dumazet 已提交
129 130 131 132 133 134 135 136 137 138 139
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 已提交
140
config NET_SCH_SFQ
141
	tristate "Stochastic Fairness Queueing (SFQ)"
L
Linus Torvalds 已提交
142 143
	---help---
	  Say Y here if you want to use the Stochastic Fairness Queueing (SFQ)
144
	  packet scheduling algorithm.
145 146

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

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

config NET_SCH_TEQL
152
	tristate "True Link Equalizer (TEQL)"
L
Linus Torvalds 已提交
153 154
	---help---
	  Say Y here if you want to use the True Link Equalizer (TLE) packet
155 156 157 158
	  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 已提交
159 160 161 162 163

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

config NET_SCH_TBF
164 165 166 167 168 169
	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 已提交
170 171 172 173 174

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

config NET_SCH_GRED
175 176
	tristate "Generic Random Early Detection (GRED)"
	---help---
L
Linus Torvalds 已提交
177
	  Say Y here if you want to use the Generic Random Early Detection
178
	  (GRED) packet scheduling algorithm for some of your network devices
L
Linus Torvalds 已提交
179 180 181 182 183 184 185
	  (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
186 187
	tristate "Differentiated Services marker (DSMARK)"
	---help---
L
Linus Torvalds 已提交
188 189 190 191 192 193 194 195 196
	  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
197 198
	tristate "Network emulator (NETEM)"
	---help---
L
Linus Torvalds 已提交
199 200 201 202 203 204 205 206 207
	  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 已提交
208 209 210 211 212 213 214 215 216 217 218
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.

219 220 221 222 223 224 225 226 227 228 229 230
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 已提交
231 232 233 234 235 236 237 238 239 240 241
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.

242 243 244 245 246 247 248 249 250 251 252
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 已提交
253 254 255 256 257 258 259 260 261 262 263
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.

L
Linus Torvalds 已提交
264 265
config NET_SCH_INGRESS
	tristate "Ingress Qdisc"
266
	depends on NET_CLS_ACT
267 268
	---help---
	  Say Y here if you want to use classifiers for incoming packets.
L
Linus Torvalds 已提交
269 270 271 272 273
	  If unsure, say Y.

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

274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
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.

	  For more information, please refer to http://wiki.xensource.com/xenwiki/Remus

	  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.

300
comment "Classification"
L
Linus Torvalds 已提交
301 302

config NET_CLS
303
	boolean
L
Linus Torvalds 已提交
304 305

config NET_CLS_BASIC
306 307
	tristate "Elementary classification (BASIC)"
	select NET_CLS
L
Linus Torvalds 已提交
308 309 310 311 312 313 314 315
	---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
316 317 318 319 320 321
	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 已提交
322 323 324 325 326

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

config NET_CLS_ROUTE4
327
	tristate "Routing decision (ROUTE)"
328
	depends on INET
329
	select IP_ROUTE_CLASSID
330 331 332 333
	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 已提交
334 335 336 337 338

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

config NET_CLS_FW
339 340 341 342 343
	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 已提交
344 345 346 347 348

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

config NET_CLS_U32
349 350 351
	tristate "Universal 32bit comparisons w/ hashing (U32)"
	select NET_CLS
	---help---
352
	  Say Y here to be able to classify packets using a universal
353
	  32bit pieces based comparison scheme.
L
Linus Torvalds 已提交
354 355 356 357 358

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

config CLS_U32_PERF
359
	bool "Performance counters support"
L
Linus Torvalds 已提交
360
	depends on NET_CLS_U32
361 362 363
	---help---
	  Say Y here to make u32 gather additional statistics useful for
	  fine tuning u32 classifiers.
L
Linus Torvalds 已提交
364 365

config CLS_U32_MARK
366
	bool "Netfilter marks support"
T
Thomas Graf 已提交
367
	depends on NET_CLS_U32
368 369
	---help---
	  Say Y here to be able to use netfilter marks as u32 key.
L
Linus Torvalds 已提交
370 371

config NET_CLS_RSVP
372 373
	tristate "IPv4 Resource Reservation Protocol (RSVP)"
	select NET_CLS
L
Linus Torvalds 已提交
374 375 376 377 378 379 380 381 382 383 384 385
	---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
386 387
	tristate "IPv6 Resource Reservation Protocol (RSVP6)"
	select NET_CLS
L
Linus Torvalds 已提交
388 389 390 391 392 393
	---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
394
	  on their RSVP requests and you are using the IPv6 protocol.
L
Linus Torvalds 已提交
395 396 397 398

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

399 400 401 402 403 404 405 406 407 408 409
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 已提交
410
config NET_CLS_CGROUP
B
Ben Blum 已提交
411
	tristate "Control Group Classifier"
T
Thomas Graf 已提交
412 413 414 415 416 417
	select NET_CLS
	depends on CGROUPS
	---help---
	  Say Y here if you want to classify packets based on the control
	  cgroup of their process.

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

L
Linus Torvalds 已提交
421 422
config NET_EMATCH
	bool "Extended Matches"
423
	select NET_CLS
L
Linus Torvalds 已提交
424 425 426 427 428
	---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
429
	  a separate classifier for.
L
Linus Torvalds 已提交
430

431
	  A recent version of the iproute2 package is required to use
L
Linus Torvalds 已提交
432 433 434 435 436 437 438 439 440
	  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
441
	  encapsulated precedences. Every level requires 4 bytes of additional
L
Linus Torvalds 已提交
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
	  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
465
	tristate "U32 key"
L
Linus Torvalds 已提交
466 467 468 469 470 471 472 473 474 475 476 477
	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---
478
	  Say Y here if you want to be able to classify packets based on
L
Linus Torvalds 已提交
479 480 481 482 483 484
	  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.

485 486 487
config NET_EMATCH_TEXT
	tristate "Textsearch"
	depends on NET_EMATCH
488
	select TEXTSEARCH
489
	select TEXTSEARCH_KMP
490
	select TEXTSEARCH_BM
491
	select TEXTSEARCH_FSM
492
	---help---
493
	  Say Y here if you want to be able to classify packets based on
494
	  textsearch comparisons.
495 496 497 498

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

L
Linus Torvalds 已提交
499
config NET_CLS_ACT
500
	bool "Actions"
L
Linus Torvalds 已提交
501
	---help---
502 503 504 505 506 507 508
	  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 已提交
509 510

config NET_ACT_POLICE
511
	tristate "Traffic Policing"
L
Linus Torvalds 已提交
512 513
        depends on NET_CLS_ACT 
        ---help---
514 515 516 517 518
	  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
519
	  module will be called act_police.
L
Linus Torvalds 已提交
520 521

config NET_ACT_GACT
522
        tristate "Generic actions"
L
Linus Torvalds 已提交
523 524
        depends on NET_CLS_ACT
        ---help---
525 526 527 528
	  Say Y here to take generic actions such as dropping and
	  accepting packets.

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

config GACT_PROB
532
        bool "Probability support"
L
Linus Torvalds 已提交
533 534
        depends on NET_ACT_GACT
        ---help---
535
	  Say Y here to use the generic action randomly or deterministically.
L
Linus Torvalds 已提交
536 537

config NET_ACT_MIRRED
538
        tristate "Redirecting and Mirroring"
L
Linus Torvalds 已提交
539 540
        depends on NET_CLS_ACT
        ---help---
541 542 543 544
	  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
545
	  module will be called act_mirred.
L
Linus Torvalds 已提交
546 547

config NET_ACT_IPT
548
        tristate "IPtables targets"
L
Linus Torvalds 已提交
549 550
        depends on NET_CLS_ACT && NETFILTER && IP_NF_IPTABLES
        ---help---
551
	  Say Y here to be able to invoke iptables targets after successful
552 553 554
	  classification.

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

H
Herbert Xu 已提交
557 558 559 560 561 562 563 564
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
565
	  module will be called act_nat.
H
Herbert Xu 已提交
566

L
Linus Torvalds 已提交
567
config NET_ACT_PEDIT
568
        tristate "Packet Editing"
L
Linus Torvalds 已提交
569 570
        depends on NET_CLS_ACT
        ---help---
571
	  Say Y here if you want to mangle the content of packets.
L
Linus Torvalds 已提交
572

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

576
config NET_ACT_SIMP
577
        tristate "Simple Example (Debug)"
578 579
        depends on NET_CLS_ACT
        ---help---
580 581 582 583 584 585 586 587
	  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
588
	  module will be called act_simple.
589

590 591 592 593 594 595 596 597 598
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
599
	  module will be called act_skbedit.
600

601 602
config NET_ACT_CSUM
        tristate "Checksum Updating"
603
        depends on NET_CLS_ACT && INET
604 605 606 607 608 609 610
        ---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.

611 612
config NET_CLS_IND
	bool "Incoming device classification"
613
	depends on NET_CLS_U32 || NET_CLS_FW
614 615 616 617 618
	---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.

619 620
endif # NET_SCHED

R
Randy Dunlap 已提交
621 622
config NET_SCH_FIFO
	bool