Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 25 Sep 2020 10:49:27 +0000 (UTC)
From:      Richard Scheffenegger <rscheff@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r366151 - stable/12/sys/netinet/cc
Message-ID:  <202009251049.08PAnRo3015113@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rscheff
Date: Fri Sep 25 10:49:26 2020
New Revision: 366151
URL: https://svnweb.freebsd.org/changeset/base/366151

Log:
  MFC r365546: cc_mod: remove unused CCF_DELACK definition
  
  During the DCTCP improvements, use of CCF_DELACK was
  removed. This change is just to rename the unused flag
  bit to prevent use of it, without also re-implementing
  the tcp_input and tcp_output interfaces.
  
  No functional change.
  
  Reviewed by:	chengc_netapp.com,tuexen
  MFC after:	2 weeks
  Sponsored by:	NetApp, Inc.
  Differential Revision:	https://reviews.freebsd.org/D26181

Modified:
  stable/12/sys/netinet/cc/cc.h
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/netinet/cc/cc.h
==============================================================================
--- stable/12/sys/netinet/cc/cc.h	Fri Sep 25 10:38:19 2020	(r366150)
+++ stable/12/sys/netinet/cc/cc.h	Fri Sep 25 10:49:26 2020	(r366151)
@@ -98,7 +98,7 @@ struct cc_var {
 /* cc_var flags. */
 #define	CCF_ABC_SENTAWND	0x0001	/* ABC counted cwnd worth of bytes? */
 #define	CCF_CWND_LIMITED	0x0002	/* Are we currently cwnd limited? */
-#define	CCF_DELACK		0x0004	/* Is this ack delayed? */
+#define	CCF_UNUSED1		0x0004	/* unused */
 #define	CCF_ACKNOW		0x0008	/* Will this ack be sent now? */
 #define	CCF_IPHDR_CE		0x0010	/* Does this packet set CE bit? */
 #define	CCF_TCPHDR_CWR		0x0020	/* Does this packet set CWR bit? */



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