svn commit: r253254 - head/sys/netinet

Andre Oppermann andre at FreeBSD.org
Fri Jul 12 07:43:56 UTC 2013


Author: andre
Date: Fri Jul 12 07:43:56 2013
New Revision: 253254
URL: http://svnweb.freebsd.org/changeset/base/253254

Log:
  Unbreak VIMAGE by correctly naming the vnet pointer in struct tcp_syncache.
  
  Reported by:	trociny, rodrigc

Modified:
  head/sys/netinet/tcp_syncache.h

Modified: head/sys/netinet/tcp_syncache.h
==============================================================================
--- head/sys/netinet/tcp_syncache.h	Fri Jul 12 06:54:29 2013	(r253253)
+++ head/sys/netinet/tcp_syncache.h	Fri Jul 12 07:43:56 2013	(r253254)
@@ -118,7 +118,7 @@ struct tcp_syncache {
 	u_int	cache_limit;
 	u_int	rexmt_limit;
 	u_int	hash_secret;
-	struct vnet *sch_vnet;
+	struct vnet *vnet;
 	struct syncookie_secret secret;
 };
 


More information about the svn-src-all mailing list