The branch main has been updated by glebius:

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

commit 0c7f3ae8c604fc5d34a86c00f79187a30248fa27
Author:     Gleb Smirnoff <[email protected]>
AuthorDate: 2022-09-19 17:29:53 +0000
Commit:     Gleb Smirnoff <[email protected]>
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;

Reply via email to