Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 24 Apr 2023 23:29:07 GMT
From:      Cheng Cui <cc@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 8aa2be695e0c - main - Correct the value of macro TF2_TCP_ACCOUNTING.
Message-ID:  <202304242329.33ONT7oj042041@gitrepo.freebsd.org>

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

URL: https://cgit.FreeBSD.org/src/commit/?id=8aa2be695e0c1e48ffef0de57b3b3dbee18486d8

commit 8aa2be695e0c1e48ffef0de57b3b3dbee18486d8
Author:     Cheng Cui <cc@FreeBSD.org>
AuthorDate: 2023-04-20 07:43:47 +0000
Commit:     Cheng Cui <cc@FreeBSD.org>
CommitDate: 2023-04-24 19:28:41 +0000

    Correct the value of macro TF2_TCP_ACCOUNTING.
    
    Summary: Make sure the values are in order.
    
    Reviewers: rscheff, tuexen, #transport!
    Approved by: rscheff, tuexen, glebius
    Subscribers: imp, melifaro, glebius
    Differential Revision: https://reviews.freebsd.org/D39716
---
 sys/netinet/tcp_var.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h
index 5632e5d8bb41..f80e9fc37ff4 100644
--- a/sys/netinet/tcp_var.h
+++ b/sys/netinet/tcp_var.h
@@ -834,7 +834,7 @@ tcp_packets_this_ack(struct tcpcb *tp, tcp_seq ack)
 #define	TF2_ACE_PERMIT		0x00000100 /* Accurate ECN mode */
 #define	TF2_FBYTES_COMPLETE	0x00000400 /* We have first bytes in and out */
 #define	TF2_ECN_USE_ECT1	0x00000800 /* Use ECT(1) marking on session */
-#define TF2_TCP_ACCOUNTING	0x00010000 /* Do TCP accounting */
+#define TF2_TCP_ACCOUNTING	0x00001000 /* Do TCP accounting */
 
 /*
  * Structure to hold TCP options that are only used during segment



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