[PATCH net-next v2 15/15] mptcp: options: rst: drop unused skb parameter
From: Matthieu Baerts (NGI0)
Date: Fri Jun 05 2026 - 05:39:40 EST
It was passed since its introduction in commit dc87efdb1a5c ("mptcp: add
mptcp reset option support"), but never used.
Simply removes it.
Signed-off-by: Matthieu Baerts (NGI0) <matttbe@xxxxxxxxxx>
---
net/mptcp/options.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net/mptcp/options.c b/net/mptcp/options.c
index 614a561c1f7f..dff3fd5d3b55 100644
--- a/net/mptcp/options.c
+++ b/net/mptcp/options.c
@@ -744,7 +744,7 @@ static bool mptcp_established_options_mp_prio(struct sock *sk, int *size,
return true;
}
-static noinline bool mptcp_established_options_rst(struct sock *sk, struct sk_buff *skb,
+static noinline bool mptcp_established_options_rst(struct sock *sk,
int *size,
unsigned int remaining,
struct mptcp_out_options *opts)
@@ -833,7 +833,7 @@ int mptcp_established_options(struct sock *sk, struct sk_buff *skb,
remaining -= opt_size;
}
/* MP_RST can be used with MP_FASTCLOSE and MP_FAIL if there is room */
- if (mptcp_established_options_rst(sk, skb, &opt_size, remaining, opts)) {
+ if (mptcp_established_options_rst(sk, &opt_size, remaining, opts)) {
total_size += opt_size;
remaining -= opt_size;
}
--
2.53.0