From 95f249d8b3a8b2126355432f27afb4de095f8397 Mon Sep 17 00:00:00 2001 From: Geliang Tang Date: Wed, 2 Aug 2023 13:10:18 +0800 Subject: [PATCH] Squash to "bpf: Add bpf_mptcp_sched_ops" No need to change subflow->stale bit-filed now, so drop the writing access of it. Signed-off-by: Geliang Tang --- net/mptcp/bpf.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/net/mptcp/bpf.c b/net/mptcp/bpf.c index 0cb25ae3ee3013..60c16d3b58e195 100644 --- a/net/mptcp/bpf.c +++ b/net/mptcp/bpf.c @@ -52,9 +52,6 @@ static int bpf_mptcp_sched_btf_struct_access(struct bpf_verifier_log *log, case offsetof(struct mptcp_subflow_context, scheduled): end = offsetofend(struct mptcp_subflow_context, scheduled); break; - case offsetofend(struct mptcp_subflow_context, map_csum_len): - end = offsetof(struct mptcp_subflow_context, data_avail); - break; case offsetof(struct mptcp_subflow_context, avg_pacing_rate): end = offsetofend(struct mptcp_subflow_context, avg_pacing_rate); break;