svn commit: r216760 - head/sys/netinet

Lawrence Stewart lstewart at FreeBSD.org
Tue Dec 28 12:37:57 UTC 2010


Author: lstewart
Date: Tue Dec 28 12:37:57 2010
New Revision: 216760
URL: http://svn.freebsd.org/changeset/base/216760

Log:
  Add a comment for the ccv member of struct tcpcb.
  
  Sponsored by:	FreeBSD Foundation
  MFC after:	5 weeks
  X-MFC with:	r215166

Modified:
  head/sys/netinet/tcp_var.h

Modified: head/sys/netinet/tcp_var.h
==============================================================================
--- head/sys/netinet/tcp_var.h	Tue Dec 28 12:18:46 2010	(r216759)
+++ head/sys/netinet/tcp_var.h	Tue Dec 28 12:37:57 2010	(r216760)
@@ -200,7 +200,7 @@ struct tcpcb {
 	void	*t_toe;			/* TOE pcb pointer */
 	int	t_bytes_acked;		/* # bytes acked during current RTT */
 	struct cc_algo	*cc_algo;	/* congestion control algorithm */
-	struct cc_var	*ccv;
+	struct cc_var	*ccv;		/* congestion control specific vars */
 	struct osd	*osd;		/* storage for Khelp module data */
 
 	int	t_ispare;		/* explicit pad for 64bit alignment */


More information about the svn-src-head mailing list