diff options
| author | Martin KaFai Lau <[email protected]> | 2024-04-25 13:26:21 -0700 |
|---|---|---|
| committer | Martin KaFai Lau <[email protected]> | 2024-04-25 14:09:05 -0700 |
| commit | 876373985efb87844ca7cacd2d1d3ef4c9398c9c (patch) | |
| tree | 90f30033f73d8801ca45d1ac453134c80b65b4db /include/uapi/linux | |
| parent | a311c3f9c342fc12e6c8a27e22c81955ab2a336c (diff) | |
| parent | 7eb4f66b38069eec9c86c9d115f0bba1cf73ef2c (diff) | |
Merge branch 'bpf: add mrtt and srtt as ctx->args for BPF_SOCK_OPS_RTT_CB'
Philo Lu says:
====================
These provides more information about tcp RTT estimation. The selftest for
BPF_SOCK_OPS_RTT_CB is extended for the added args.
changelogs
-> v1:
- extend rtt selftest for added args (suggested by Stanislav)
====================
Signed-off-by: Martin KaFai Lau <[email protected]>
Diffstat (limited to 'include/uapi/linux')
| -rw-r--r-- | include/uapi/linux/bpf.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/uapi/linux/bpf.h b/include/uapi/linux/bpf.h index e4ae83550fb3..d94a72593ead 100644 --- a/include/uapi/linux/bpf.h +++ b/include/uapi/linux/bpf.h @@ -6947,6 +6947,8 @@ enum { * socket transition to LISTEN state. */ BPF_SOCK_OPS_RTT_CB, /* Called on every RTT. + * Arg1: measured RTT input (mrtt) + * Arg2: updated srtt */ BPF_SOCK_OPS_PARSE_HDR_OPT_CB, /* Parse the header option. * It will be called to handle |