svn commit: r190954 - projects/tcp_cc_8.x/sys/netinet

Lawrence Stewart lstewart at FreeBSD.org
Sat Apr 11 20:45:04 PDT 2009


Author: lstewart
Date: Sun Apr 12 03:45:03 2009
New Revision: 190954
URL: http://svn.freebsd.org/changeset/base/190954

Log:
  Fix that allows kernel to compile after the recent vimage commit.

Modified:
  projects/tcp_cc_8.x/sys/netinet/tcp_subr.c

Modified: projects/tcp_cc_8.x/sys/netinet/tcp_subr.c
==============================================================================
--- projects/tcp_cc_8.x/sys/netinet/tcp_subr.c	Sun Apr 12 03:03:55 2009	(r190953)
+++ projects/tcp_cc_8.x/sys/netinet/tcp_subr.c	Sun Apr 12 03:45:03 2009	(r190954)
@@ -717,7 +717,7 @@ tcp_newtcpcb(struct inpcb *inp)
 
 	/* if the cc module fails to init, stop building the control block */
 	if (CC_ALGO(tp)->init(tp) > 0) {
-		uma_zfree(tcpcb_zone, tp);
+		uma_zfree(V_tcpcb_zone, tp);
 		return NULL;
 	}
 


More information about the svn-src-projects mailing list