mirror of
https://github.com/torvalds/linux.git
synced 2026-09-23 13:14:02 +02:00
CONFIG_SYSCTL used to make sense as a separate hidden bool before commit
61a47c1ad3 ("sysctl: Remove the sysctl system call"); it was selected
by both CONFIG_SYSCTL_SYSCALL and CONFIG_PROC_SYSCTL.
Today CONFIG_PROC_SYSCTL is the only selector, so the two are always
equal. Kill the hidden bool, rename the PROC_SYSCTL prompt to SYSCTL,
and s/CONFIG_PROC_SYSCTL/CONFIG_SYSCTL/ tree-wide.
Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Signed-off-by: Joel Granados <joel.granados@kernel.org>
40 lines
1002 B
Plaintext
40 lines
1002 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# MPLS configuration
|
|
#
|
|
|
|
menuconfig MPLS
|
|
bool "MultiProtocol Label Switching"
|
|
default n
|
|
help
|
|
MultiProtocol Label Switching routes packets through logical
|
|
circuits. Originally conceived as a way of routing packets at
|
|
hardware speeds (before hardware was capable of routing ipv4 packets),
|
|
MPLS remains a simple way of making tunnels.
|
|
|
|
If you have not heard of MPLS you probably want to say N here.
|
|
|
|
if MPLS
|
|
|
|
config NET_MPLS_GSO
|
|
tristate "MPLS: GSO support"
|
|
help
|
|
This is helper module to allow segmentation of non-MPLS GSO packets
|
|
that have had MPLS stack entries pushed onto them and thus
|
|
become MPLS GSO packets.
|
|
|
|
config MPLS_ROUTING
|
|
tristate "MPLS: routing support"
|
|
depends on NET_IP_TUNNEL || NET_IP_TUNNEL=n
|
|
depends on SYSCTL
|
|
help
|
|
Add support for forwarding of mpls packets.
|
|
|
|
config MPLS_IPTUNNEL
|
|
tristate "MPLS: IP over MPLS tunnel support"
|
|
depends on LWTUNNEL && MPLS_ROUTING
|
|
help
|
|
mpls ip tunnel support.
|
|
|
|
endif # MPLS
|