hc
2023-12-11 d2ccde1c8e90d38cee87a1b0309ad2827f3fd30d
kernel/drivers/net/team/Kconfig
....@@ -1,6 +1,7 @@
1
+# SPDX-License-Identifier: GPL-2.0-only
12 menuconfig NET_TEAM
23 tristate "Ethernet team driver support"
3
- ---help---
4
+ help
45 This allows one to create virtual interfaces that teams together
56 multiple ethernet devices.
67
....@@ -17,7 +18,7 @@
1718 config NET_TEAM_MODE_BROADCAST
1819 tristate "Broadcast mode support"
1920 depends on NET_TEAM
20
- ---help---
21
+ help
2122 Basic mode where packets are transmitted always by all suitable ports.
2223
2324 All added ports are setup to have team's device address.
....@@ -28,7 +29,7 @@
2829 config NET_TEAM_MODE_ROUNDROBIN
2930 tristate "Round-robin mode support"
3031 depends on NET_TEAM
31
- ---help---
32
+ help
3233 Basic mode where port used for transmitting packets is selected in
3334 round-robin fashion using packet counter.
3435
....@@ -40,7 +41,7 @@
4041 config NET_TEAM_MODE_RANDOM
4142 tristate "Random mode support"
4243 depends on NET_TEAM
43
- ---help---
44
+ help
4445 Basic mode where port used for transmitting packets is selected
4546 randomly.
4647
....@@ -52,7 +53,7 @@
5253 config NET_TEAM_MODE_ACTIVEBACKUP
5354 tristate "Active-backup mode support"
5455 depends on NET_TEAM
55
- ---help---
56
+ help
5657 Only one port is active at a time and the rest of ports are used
5758 for backup.
5859
....@@ -65,7 +66,7 @@
6566 config NET_TEAM_MODE_LOADBALANCE
6667 tristate "Load-balance mode support"
6768 depends on NET_TEAM
68
- ---help---
69
+ help
6970 This mode provides load balancing functionality. Tx port selection
7071 is done using BPF function set up from userspace (bpf_hash_func
7172 option)