Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mptcp: fix typos in comments

This patch fixes the spelling mistakes in comments.
The changes were generated using codespell and reviewed manually.

eariler -> earlier
greceful -> graceful

Signed-off-by: Shi-Sheng Yang <fourcolor4c@gmail.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Reviewed-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
Link: https://lore.kernel.org/r/20240502154740.249839-1-fourcolor4c@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Shi-Sheng Yang and committed by
Jakub Kicinski
46a5d3ab 6bee6942

+2 -2
+2 -2
net/mptcp/subflow.c
··· 911 911 } 912 912 913 913 /* check for expected invariant - should never trigger, just help 914 - * catching eariler subtle bugs 914 + * catching earlier subtle bugs 915 915 */ 916 916 WARN_ON_ONCE(child && *own_req && tcp_sk(child)->is_mptcp && 917 917 (!mptcp_subflow_ctx(child) || ··· 1259 1259 struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk); 1260 1260 unsigned long fail_tout; 1261 1261 1262 - /* greceful failure can happen only on the MPC subflow */ 1262 + /* graceful failure can happen only on the MPC subflow */ 1263 1263 if (WARN_ON_ONCE(ssk != READ_ONCE(msk->first))) 1264 1264 return; 1265 1265