Kconfig (844e31bbaef7c8a6ff2c0fbac45c0c85b5484482) Kconfig (99de9d4022e5004f95f425f798f0aa01e87949ff)
1# SPDX-License-Identifier: GPL-2.0-only
2#
3# Traffic control configuration.
4#
5
6menuconfig NET_SCHED
7 bool "QoS and/or fair queueing"
8 select NET_SCH_FIFO

--- 389 unchanged lines hidden (view full) ---

398 Say Y here if you want to use the ETS packet scheduling
399 algorithm.
400
401 To compile this driver as a module, choose M here: the module
402 will be called sch_ets.
403
404 If unsure, say N.
405
1# SPDX-License-Identifier: GPL-2.0-only
2#
3# Traffic control configuration.
4#
5
6menuconfig NET_SCHED
7 bool "QoS and/or fair queueing"
8 select NET_SCH_FIFO

--- 389 unchanged lines hidden (view full) ---

398 Say Y here if you want to use the ETS packet scheduling
399 algorithm.
400
401 To compile this driver as a module, choose M here: the module
402 will be called sch_ets.
403
404 If unsure, say N.
405
406config NET_SCH_BPF
407 bool "BPF-based Qdisc"
408 depends on BPF_SYSCALL && BPF_JIT && DEBUG_INFO_BTF
409 help
410 This option allows BPF-based queueing disiplines. With BPF struct_ops,
411 users can implement supported operators in Qdisc_ops using BPF programs.
412 The queue holding skb can be built with BPF maps or graphs.
413
414 Say Y here if you want to use BPF-based Qdisc.
415
416 If unsure, say N.
417
406menuconfig NET_SCH_DEFAULT
407 bool "Allow override default queue discipline"
408 help
409 Support for selection of default queuing discipline.
410
411 Nearly all users can safely say no here, and the default
412 of pfifo_fast will be used. Many distributions already set
413 the default value via /proc/sys/net/core/default_qdisc.

--- 365 unchanged lines hidden (view full) ---

779 If unsure, say N.
780
781 To compile this code as a module, choose M here: the
782 module will be called act_skbedit.
783
784config NET_ACT_CSUM
785 tristate "Checksum Updating"
786 depends on NET_CLS_ACT && INET
418menuconfig NET_SCH_DEFAULT
419 bool "Allow override default queue discipline"
420 help
421 Support for selection of default queuing discipline.
422
423 Nearly all users can safely say no here, and the default
424 of pfifo_fast will be used. Many distributions already set
425 the default value via /proc/sys/net/core/default_qdisc.

--- 365 unchanged lines hidden (view full) ---

791 If unsure, say N.
792
793 To compile this code as a module, choose M here: the
794 module will be called act_skbedit.
795
796config NET_ACT_CSUM
797 tristate "Checksum Updating"
798 depends on NET_CLS_ACT && INET
787 select CRC32
799 select NET_CRC32C
788 help
789 Say Y here to update some common checksum after some direct
790 packet alterations.
791
792 To compile this code as a module, choose M here: the
793 module will be called act_csum.
794
795config NET_ACT_MPLS

--- 150 unchanged lines hidden ---
800 help
801 Say Y here to update some common checksum after some direct
802 packet alterations.
803
804 To compile this code as a module, choose M here: the
805 module will be called act_csum.
806
807config NET_ACT_MPLS

--- 150 unchanged lines hidden ---