Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 19 Sep 2022 17:31:37 GMT
From:      Gleb Smirnoff <glebius@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 0c7f3ae8c604 - main - tcpcb: fix tabulation count in i4012ef7754c and abbreviate "packets"
Message-ID:  <202209191731.28JHVbT0085027@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by glebius:

URL: https://cgit.FreeBSD.org/src/commit/?id=0c7f3ae8c604fc5d34a86c00f79187a30248fa27

commit 0c7f3ae8c604fc5d34a86c00f79187a30248fa27
Author:     Gleb Smirnoff <glebius@FreeBSD.org>
AuthorDate: 2022-09-19 17:29:53 +0000
Commit:     Gleb Smirnoff <glebius@FreeBSD.org>
CommitDate: 2022-09-19 17:29:53 +0000

    tcpcb: fix tabulation count in i4012ef7754c and abbreviate "packets"
    
    This lines up comments to the rest of the file.  Abbreviation
    helps to fit in to 80 char terminal.  Not a functional change.
---
 sys/netinet/tcp_var.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h
index 6019f162090e..d6146841a1ab 100644
--- a/sys/netinet/tcp_var.h
+++ b/sys/netinet/tcp_var.h
@@ -249,8 +249,8 @@ struct tcpcb {
 	int	t_dupacks;		/* consecutive dup acks recd */
 	int	t_lognum;		/* Number of log entries */
 	int	t_loglimit;		/* Maximum number of log entries */
-	uint32_t t_rcep;			/* Number of received CE marked packets */
-	uint32_t t_scep;			/* Synced number of delivered CE packets */
+	uint32_t t_rcep;		/* Number of received CE marked pkts */
+	uint32_t t_scep;		/* Synced number of delivered CE pkts */
 	int64_t	t_pacing_rate;		/* bytes / sec, -1 => unlimited */
 	struct tcp_log_stailq t_logs;	/* Log buffer */
 	struct tcp_log_id_node *t_lin;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202209191731.28JHVbT0085027>