Re: [PATCH bpf-next/net v2 4/7] bpf: Add mptcp_subflow bpf_iter

2025-01-30 Thread Matthieu Baerts
Hi Martin, Thank you for your review! Sorry for the delay here, Geliang started to work on a new version, but it might take a bit of time as he is currently off for a few days. On 24/01/2025 01:47, Martin KaFai Lau wrote: > On 12/19/24 7:46 AM, Matthieu Baerts (NGI0) wrote: >> From: Geliang Tang

Re: [PATCH bpf-next/net v2 4/7] bpf: Add mptcp_subflow bpf_iter

2025-01-23 Thread Martin KaFai Lau
On 12/19/24 7:46 AM, Matthieu Baerts (NGI0) wrote: From: Geliang Tang It's necessary to traverse all subflows on the conn_list of an MPTCP socket and then call kfunc to modify the fields of each subflow. In kernel space, mptcp_for_each_subflow() helper is used for this: mptcp_for_each_

[PATCH bpf-next/net v2 4/7] bpf: Add mptcp_subflow bpf_iter

2024-12-19 Thread Matthieu Baerts (NGI0)
From: Geliang Tang It's necessary to traverse all subflows on the conn_list of an MPTCP socket and then call kfunc to modify the fields of each subflow. In kernel space, mptcp_for_each_subflow() helper is used for this: mptcp_for_each_subflow(msk, subflow) kfunc(subflow);