diff options
author | Lawrence Brakmo <brakmo@fb.com> | 2017-06-30 20:02:50 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-07-01 16:15:14 -0700 |
commit | bb56d4449d8b8de1f22a07f007bb91cb30fcc7cc (patch) | |
tree | f267b7163aa103e842705e765a2cf726b0a7f6a4 /samples/bpf/Makefile | |
parent | 91b5b21c7c16899abb37f4a9e4388b4e9aae0b9d (diff) | |
download | op-kernel-dev-bb56d4449d8b8de1f22a07f007bb91cb30fcc7cc.zip op-kernel-dev-bb56d4449d8b8de1f22a07f007bb91cb30fcc7cc.tar.gz |
bpf: Sample BPF program to set congestion control
Sample BPF program that sets congestion control to dctcp when both hosts
are within the same datacenter. In this example that is assumed to be
when they have the first 5.5 bytes of their IPv6 address are the same.
Signed-off-by: Lawrence Brakmo <brakmo@fb.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'samples/bpf/Makefile')
-rw-r--r-- | samples/bpf/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/samples/bpf/Makefile b/samples/bpf/Makefile index 3b300db..6fdf32d 100644 --- a/samples/bpf/Makefile +++ b/samples/bpf/Makefile @@ -116,6 +116,7 @@ always += cookie_uid_helper_example.o always += tcp_synrto_kern.o always += tcp_rwnd_kern.o always += tcp_bufs_kern.o +always += tcp_cong_kern.o HOSTCFLAGS += -I$(objtree)/usr/include HOSTCFLAGS += -I$(srctree)/tools/lib/ |