From: Mat Martineau <martineau@kernel.org>
To: mptcp@lists.linux.dev, geliang@kernel.org, davem@davemloft.net,
edumazet@google.com, kuba@kernel.org, pabeni@redhat.com,
fw@strlen.de
Cc: "Matthieu Baerts (NGI0)" <matttbe@kernel.org>,
netdev@vger.kernel.org, Mat Martineau <martineau@kernel.org>
Subject: [PATCH net-next v2 6/8] mptcp: remove unnecessary else statements
Date: Mon, 13 May 2024 18:13:30 -0700 [thread overview]
Message-ID: <20240514011335.176158-7-martineau@kernel.org> (raw)
In-Reply-To: <20240514011335.176158-1-martineau@kernel.org>
From: "Matthieu Baerts (NGI0)" <matttbe@kernel.org>
The 'else' statements are not needed here, because their previous 'if'
block ends with a 'return'.
This fixes CheckPatch warnings:
WARNING: else is not generally useful after a break or return
Reviewed-by: Geliang Tang <geliang@kernel.org>
Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
Signed-off-by: Mat Martineau <martineau@kernel.org>
---
net/mptcp/subflow.c | 32 +++++++++++++++++---------------
1 file changed, 17 insertions(+), 15 deletions(-)
diff --git a/net/mptcp/subflow.c b/net/mptcp/subflow.c
index c1d13e555d10..612c38570a64 100644
--- a/net/mptcp/subflow.c
+++ b/net/mptcp/subflow.c
@@ -1119,6 +1119,8 @@ static enum mapping_status get_mapping_status(struct sock *ssk,
}
if (mpext->data_fin == 1) {
+ u64 data_fin_seq;
+
if (data_len == 1) {
bool updated = mptcp_update_rcv_data_fin(msk, mpext->data_seq,
mpext->dsn64);
@@ -1131,26 +1133,26 @@ static enum mapping_status get_mapping_status(struct sock *ssk,
*/
skb_ext_del(skb, SKB_EXT_MPTCP);
return MAPPING_OK;
- } else {
- if (updated)
- mptcp_schedule_work((struct sock *)msk);
-
- return MAPPING_DATA_FIN;
}
- } else {
- u64 data_fin_seq = mpext->data_seq + data_len - 1;
- /* If mpext->data_seq is a 32-bit value, data_fin_seq
- * must also be limited to 32 bits.
- */
- if (!mpext->dsn64)
- data_fin_seq &= GENMASK_ULL(31, 0);
+ if (updated)
+ mptcp_schedule_work((struct sock *)msk);
- mptcp_update_rcv_data_fin(msk, data_fin_seq, mpext->dsn64);
- pr_debug("DATA_FIN with mapping seq=%llu dsn64=%d",
- data_fin_seq, mpext->dsn64);
+ return MAPPING_DATA_FIN;
}
+ data_fin_seq = mpext->data_seq + data_len - 1;
+
+ /* If mpext->data_seq is a 32-bit value, data_fin_seq must also
+ * be limited to 32 bits.
+ */
+ if (!mpext->dsn64)
+ data_fin_seq &= GENMASK_ULL(31, 0);
+
+ mptcp_update_rcv_data_fin(msk, data_fin_seq, mpext->dsn64);
+ pr_debug("DATA_FIN with mapping seq=%llu dsn64=%d",
+ data_fin_seq, mpext->dsn64);
+
/* Adjust for DATA_FIN using 1 byte of sequence space */
data_len--;
}
--
2.45.0
next prev parent reply other threads:[~2024-05-14 1:13 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-14 1:13 [PATCH net-next v2 0/8] mptcp: small improvements, fix and clean-ups Mat Martineau
2024-05-14 1:13 ` [PATCH net-next v2 1/8] mptcp: SO_KEEPALIVE: fix getsockopt support Mat Martineau
2024-05-14 1:13 ` [PATCH net-next v2 2/8] mptcp: fix full TCP keep-alive support Mat Martineau
2024-05-14 1:13 ` [PATCH net-next v2 3/8] mptcp: sockopt: info: stop early if no buffer Mat Martineau
2024-05-14 1:13 ` [PATCH net-next v2 4/8] mptcp: add net.mptcp.available_schedulers Mat Martineau
2024-05-14 1:13 ` [PATCH net-next v2 5/8] mptcp: prefer strscpy over strcpy Mat Martineau
2024-05-14 1:13 ` Mat Martineau [this message]
2024-05-14 1:13 ` [PATCH net-next v2 7/8] mptcp: move mptcp_pm_gen.h's include Mat Martineau
2024-05-14 1:13 ` [PATCH net-next v2 8/8] mptcp: include inet_common in mib.h Mat Martineau
2024-05-14 1:40 ` [PATCH net-next v2 0/8] mptcp: small improvements, fix and clean-ups patchwork-bot+netdevbpf
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240514011335.176158-7-martineau@kernel.org \
--to=martineau@kernel.org \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=fw@strlen.de \
--cc=geliang@kernel.org \
--cc=kuba@kernel.org \
--cc=matttbe@kernel.org \
--cc=mptcp@lists.linux.dev \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox