diff options
author | Lawrence Brakmo <brakmo@fb.com> | 2017-07-01 05:02:52 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-07-02 01:15:14 +0200 |
commit | 7bc62e28547946ec6e47009730ee1385819e6999 (patch) | |
tree | 160a15867876634565a91f33bf4a02fef0bc4e7c /samples/bpf/Makefile | |
parent | bpf: Adds support for setting initial cwnd (diff) | |
download | linux-7bc62e28547946ec6e47009730ee1385819e6999.tar.xz linux-7bc62e28547946ec6e47009730ee1385819e6999.zip |
bpf: Sample BPF program to set initial cwnd
Sample BPF program that assumes hosts are far away (i.e. large RTTs)
and sets initial cwnd and initial receive window to 40 packets,
send and receive buffers to 1.5MB.
In practice there would be a test to insure the hosts are actually
far enough away.
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 6fdf32dffa92..242d76e84a4b 100644 --- a/samples/bpf/Makefile +++ b/samples/bpf/Makefile @@ -117,6 +117,7 @@ always += tcp_synrto_kern.o always += tcp_rwnd_kern.o always += tcp_bufs_kern.o always += tcp_cong_kern.o +always += tcp_iw_kern.o HOSTCFLAGS += -I$(objtree)/usr/include HOSTCFLAGS += -I$(srctree)/tools/lib/ |