bpf: add mrtt and srtt as BPF_SOCK_OPS_RTT_CB args
authorPhilo Lu <lulie@linux.alibaba.com>
Thu, 25 Apr 2024 16:17:23 +0000 (00:17 +0800)
committerMartin KaFai Lau <martin.lau@kernel.org>
Thu, 25 Apr 2024 21:09:05 +0000 (14:09 -0700)
commit48e2cd3e3dcfe04f212df4fb189fa04c2a87b980
tree25a93be2e1812044e50c7cf4909e18c8f5c8ff43
parenta311c3f9c342fc12e6c8a27e22c81955ab2a336c
bpf: add mrtt and srtt as BPF_SOCK_OPS_RTT_CB args

Two important arguments in RTT estimation, mrtt and srtt, are passed to
tcp_bpf_rtt(), so that bpf programs get more information about RTT
computation in BPF_SOCK_OPS_RTT_CB.

The difference between bpf_sock_ops->srtt_us and the srtt here is: the
former is an old rtt before update, while srtt passed by tcp_bpf_rtt()
is that after update.

Signed-off-by: Philo Lu <lulie@linux.alibaba.com>
Link: https://lore.kernel.org/r/20240425161724.73707-2-lulie@linux.alibaba.com
Signed-off-by: Martin KaFai Lau <martin.lau@kernel.org>
include/net/tcp.h
include/uapi/linux/bpf.h
net/ipv4/tcp_input.c
tools/include/uapi/linux/bpf.h