From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 1BF662F5093; Wed, 16 Jul 2025 10:28:30 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1752661711; cv=none; b=oEuZMys7TeU0Q8dwWh/cxqdInK79uHaVvMBaambL6j/mSXnc7dZ1IYs8kkzMxdqpwa901Ie6n5vf/JuCquFleiufJiOBfJfcG4rGPIlb/DwP8vxcPsZVpfxZ3d0rZQcVz1Mdu11jUOvBmj4SrJFRFG/4EqthuUblTY+TdPfYSe8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1752661711; c=relaxed/simple; bh=ATxwF3oK0AHq0rXjzmSH/f3UnehAxyGxmt7OLGdPkmA=; h=From:Date:Subject:MIME-Version:Content-Type:Message-Id:References: In-Reply-To:To:Cc; b=Q9UYqrIzeb9viZqFoZqsQIBq4q68WHCsqhF3n0+CJY7udQ8UrxbHrt2xvdMYos508IyS9U1xxH7Gn7jU7oreNqbmpYvXQA5eV9cnN5JXJVKoVSWkCWuXG2+TbLS6DUYHi59ruSOwdVRwFmT5Z8nWdWVHdRU8yEjZOl7E0asQylM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=mYcQbXxG; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="mYcQbXxG" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 20169C4CEF1; Wed, 16 Jul 2025 10:28:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1752661710; bh=ATxwF3oK0AHq0rXjzmSH/f3UnehAxyGxmt7OLGdPkmA=; h=From:Date:Subject:References:In-Reply-To:To:Cc:From; b=mYcQbXxGtb1oAsBu7hrvRL8MiKu5qcMJm8rztJIBHtSKFwrcXckcdNnxLHFxq6d+q xULshS0b4cD/g4A6YwJLfM2shtVbpDWPEuSo3LGKJhHt4rpvNkzYuUs0LoS/rGSVTw x7kOWJo49ozFTNyVnv2Gooc+JHD8e1t3pU8OweKRkFwRdd0ODEmWuNACcgFG6Mbmaa nFk2zw7aMDeJw0k69MrQx6SSWOhpannQfJBu+IXxChr49Gh5JzztMkYzz+fw1myz7F JWZoMcr9nYQWbCN+tgNxhcicT0UKjOBV6Aao/BaH3UR6x69F3XMxPUWQZjnoJ10/EE oSKVbuGVTRn0A== From: "Matthieu Baerts (NGI0)" Date: Wed, 16 Jul 2025 12:28:06 +0200 Subject: [PATCH net-next 4/4] mptcp: fix typo in a comment Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Message-Id: <20250716-net-next-mptcp-tcp_maxseg-v1-4-548d3a5666f6@kernel.org> References: <20250716-net-next-mptcp-tcp_maxseg-v1-0-548d3a5666f6@kernel.org> In-Reply-To: <20250716-net-next-mptcp-tcp_maxseg-v1-0-548d3a5666f6@kernel.org> To: mptcp@lists.linux.dev, Mat Martineau , Geliang Tang , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Simon Horman , Neal Cardwell , Kuniyuki Iwashima , David Ahern Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org, "Matthieu Baerts (NGI0)" , moyuanhao X-Mailer: b4 0.14.2 X-Developer-Signature: v=1; a=openpgp-sha256; l=1302; i=matttbe@kernel.org; h=from:subject:message-id; bh=Ik5twdxPJJpwUw1wx5+zdFE+/xcyShWLAB0UWSDSQCY=; b=owGbwMvMwCVWo/Th0Gd3rumMp9WSGDLK6/Yr7A6LzDKVuiq8TLFL+QZT//dFC1uLZ1mem/uBc 1rMayeZjlIWBjEuBlkxRRbptsj8mc+reEu8/Cxg5rAygQxh4OIUgIksDWNkWLazomR2icXrXsut BbUbc544Oaksk+ZoqvOv8+Zd0RbTz/A/1XbPLu9f0SuezBGuOFBxzHHXIxn3iL+bfbMtsmbMKfB lBQA= X-Developer-Key: i=matttbe@kernel.org; a=openpgp; fpr=E8CB85F76877057A6E27F77AF6B7824F4269A073 From: moyuanhao This patch fixes the follow spelling mistake in a comment: greter -> greater Signed-off-by: moyuanhao Reviewed-by: Matthieu Baerts (NGI0) Signed-off-by: Matthieu Baerts (NGI0) --- Notes: - The same patch has already been sent to the netdev ML, but when net-next was closed: https://lore.kernel.org/20250530181004.261417-1-moyuanhao3676@163.com --- net/mptcp/protocol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/mptcp/protocol.c b/net/mptcp/protocol.c index 5f904fc5ac4c63e8b6c7c9aa79f17e8dcdf1a007..fe3135cd778a98d4f270d684c101af30d261ee71 100644 --- a/net/mptcp/protocol.c +++ b/net/mptcp/protocol.c @@ -1377,7 +1377,7 @@ struct sock *mptcp_subflow_get_send(struct mptcp_sock *msk) * - estimate the faster flow linger time * - use the above to estimate the amount of byte transferred * by the faster flow - * - check that the amount of queued data is greter than the above, + * - check that the amount of queued data is greater than the above, * otherwise do not use the picked, slower, subflow * We select the subflow with the shorter estimated time to flush * the queued mem, which basically ensure the above. We just need -- 2.48.1