From patchwork Thu Feb 15 13:12:21 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 13558372 X-Patchwork-Delegate: kuba@kernel.org Received: from albert.telenet-ops.be (albert.telenet-ops.be [195.130.137.90]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 4BFAA12FB17 for ; Thu, 15 Feb 2024 13:12:32 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.130.137.90 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708002755; cv=none; b=L5xRdjKAepqaEgiSTDP6GM3joO++D6OjVin6E+DHLlsGSYkeWFwqblP+KJm2F1XdzswhFJ15WUX5p1JwQHqNYcxHFouxh258Vo+EzpGVbTf5V6r6bjQgGnKC0Au8qJBsaU7IFg2Q873TSxXGswCapTWy2h8IoTKXfiy8sDrcGuk= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708002755; c=relaxed/simple; bh=U/PG3zQXQ/kc1NLVZllKDbhYLsIvPRKZE8dAnhNuW/s=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=TmzUbcgRs8Q2xzq+ttslRTifAvZ3ivXvbicNV0v+DYMdRkpvzHIf3iiyOjT9H4R3YDyrDzF5N6U5FniA+4gXTqIsu4Rqxvr1T7V9OSNQr+1OpzMRzb8/eWkEhG/TbYmQJs/9fHKy0U45Xwid8oY7AYuRcVgfGRP3sYpjXESyrIM= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be; spf=none smtp.mailfrom=linux-m68k.org; arc=none smtp.client-ip=195.130.137.90 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=linux-m68k.org Received: from ramsan.of.borg ([IPv6:2a02:1810:ac12:ed40:ac52:3a54:2a84:d65a]) by albert.telenet-ops.be with bizsmtp id nRCP2B0040LVNSS06RCPAP; Thu, 15 Feb 2024 14:12:23 +0100 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtp (Exim 4.95) (envelope-from ) id 1rabXD-000gyC-NR; Thu, 15 Feb 2024 14:12:23 +0100 Received: from geert by rox.of.borg with local (Exim 4.95) (envelope-from ) id 1rabXL-00HZSw-2k; Thu, 15 Feb 2024 14:12:23 +0100 From: Geert Uytterhoeven To: Eric Dumazet , "David S . Miller" , David Ahern , Jakub Kicinski , Paolo Abeni Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH RESEND2 net-next] tcp: Spelling s/curcuit/circuit/ Date: Thu, 15 Feb 2024 14:12:21 +0100 Message-Id: X-Mailer: git-send-email 2.34.1 Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Patchwork-Delegate: kuba@kernel.org Fix a misspelling of "circuit". Signed-off-by: Geert Uytterhoeven --- net/ipv4/tcp_input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c index 2d20edf652e6cb5e..dd2656b63c3942f9 100644 --- a/net/ipv4/tcp_input.c +++ b/net/ipv4/tcp_input.c @@ -1164,7 +1164,7 @@ static void tcp_count_delivered(struct tcp_sock *tp, u32 delivered, * L|R 1 - orig is lost, retransmit is in flight. * S|R 1 - orig reached receiver, retrans is still in flight. * (L|S|R is logically valid, it could occur when L|R is sacked, - * but it is equivalent to plain S and code short-curcuits it to S. + * but it is equivalent to plain S and code short-circuits it to S. * L|S is logically invalid, it would mean -1 packet in flight 8)) * * These 6 states form finite state machine, controlled by the following events: