Message ID | f132a1597e4ad525b403028258493384c3a251a2.1734947922.git.tanggeliang@kylinos.cn (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | use bpf_iter in bpf schedulers | expand |
Context | Check | Description |
---|---|---|
matttbe/checkpatch | success | total: 0 errors, 0 warnings, 0 checks, 16 lines checked |
matttbe/shellcheck | success | MPTCP selftests files have not been modified |
matttbe/build | success | Build and static analysis OK |
matttbe/KVM_Validation__normal | success | Success! ✅ |
matttbe/KVM_Validation__debug | success | Success! ✅ |
matttbe/KVM_Validation__btf-normal__only_bpftest_all_ | success | Success! ✅ |
matttbe/KVM_Validation__btf-debug__only_bpftest_all_ | success | Success! ✅ |
diff --git a/net/mptcp/bpf.c b/net/mptcp/bpf.c index 57c4606a26ab..ea8098c6add9 100644 --- a/net/mptcp/bpf.c +++ b/net/mptcp/bpf.c @@ -178,14 +178,12 @@ static int bpf_mptcp_sched_init(struct btf *btf) return 0; } -static int __bpf_mptcp_sched_get_send(struct mptcp_sock *msk, - struct mptcp_sched_data *data) +static int __bpf_mptcp_sched_get_send(struct mptcp_sock *msk) { return 0; } -static int __bpf_mptcp_sched_get_retrans(struct mptcp_sock *msk, - struct mptcp_sched_data *data) +static int __bpf_mptcp_sched_get_retrans(struct mptcp_sock *msk) { return 0; }