diff options
author | Lawrence Brakmo <brakmo@fb.com> | 2017-06-30 20:02:45 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-07-01 16:15:13 -0700 |
commit | c400296bf63d234899cf2448cd3d17199676f188 (patch) | |
tree | 84d78d648f2ee14f815e27d9d34e0b19fe39f064 /samples/bpf/Makefile | |
parent | 13d3b1ebe28762c79e981931a41914fae5d04386 (diff) | |
download | lwn-c400296bf63d234899cf2448cd3d17199676f188.tar.gz lwn-c400296bf63d234899cf2448cd3d17199676f188.zip |
bpf: Sample bpf program to set initial window
The sample bpf program, tcp_rwnd_kern.c, sets the initial
advertized window to 40 packets in an environment where
distinct IPv6 prefixes indicate that both hosts are not
in the same data center.
Signed-off-by: Lawrence Brakmo <brakmo@fb.com>
Acked-by: Daniel Borkmann <daniel@iogearbox.net>
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 e29370a19957..ca955280cbeb 100644 --- a/samples/bpf/Makefile +++ b/samples/bpf/Makefile @@ -114,6 +114,7 @@ always += xdp_tx_iptunnel_kern.o always += test_map_in_map_kern.o always += cookie_uid_helper_example.o always += tcp_synrto_kern.o +always += tcp_rwnd_kern.o HOSTCFLAGS += -I$(objtree)/usr/include HOSTCFLAGS += -I$(srctree)/tools/lib/ |