mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 02:21:16 +00:00
753f993911
As suggested by Eric Dumazet, allow user to select mode which chooses TX port randomly. Functionality should be more of less similar to round-robin mode with even lower overhead. Signed-off-by: Jiri Pirko <jiri@resnulli.us> Signed-off-by: David S. Miller <davem@davemloft.net>
10 lines
398 B
Makefile
10 lines
398 B
Makefile
#
|
|
# Makefile for the network team driver
|
|
#
|
|
|
|
obj-$(CONFIG_NET_TEAM) += team.o
|
|
obj-$(CONFIG_NET_TEAM_MODE_BROADCAST) += team_mode_broadcast.o
|
|
obj-$(CONFIG_NET_TEAM_MODE_ROUNDROBIN) += team_mode_roundrobin.o
|
|
obj-$(CONFIG_NET_TEAM_MODE_RANDOM) += team_mode_random.o
|
|
obj-$(CONFIG_NET_TEAM_MODE_ACTIVEBACKUP) += team_mode_activebackup.o
|
|
obj-$(CONFIG_NET_TEAM_MODE_LOADBALANCE) += team_mode_loadbalance.o
|