From fca51931dfc3aeccf58d6508c21b52e7f03c576d Mon Sep 17 00:00:00 2001 From: Matthieu Baerts Date: Tue, 19 Dec 2023 10:27:05 +0100 Subject: [PATCH] Squash to "bpf: Add bpf_mptcp_sched_ops" This fixes a compilation issue that we have in our tree after having synced with upstream. See the Fixes commit for more details. Fixes: 4cbb270e115b ("bpf: take into account BPF token when fetching helper protos") Signed-off-by: Matthieu Baerts --- net/mptcp/bpf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/mptcp/bpf.c b/net/mptcp/bpf.c index 6b61dd54e69fdb..dfcaaf0e07dd56 100644 --- a/net/mptcp/bpf.c +++ b/net/mptcp/bpf.c @@ -35,7 +35,7 @@ bpf_mptcp_sched_get_func_proto(enum bpf_func_id func_id, case BPF_FUNC_skc_to_tcp_sock: return &bpf_skc_to_tcp_sock_proto; default: - return bpf_base_func_proto(func_id); + return bpf_base_func_proto(func_id, prog); } }