svn commit: r264498 - head/sys/net

Rick Macklem rmacklem at FreeBSD.org
Tue Apr 15 13:28:54 UTC 2014


Author: rmacklem
Date: Tue Apr 15 13:28:54 2014
New Revision: 264498
URL: http://svnweb.freebsd.org/changeset/base/264498

Log:
  Fix build for non-INET that was broken by r264469.
  
  MFC after:	2 weeks

Modified:
  head/sys/net/if_lagg.c

Modified: head/sys/net/if_lagg.c
==============================================================================
--- head/sys/net/if_lagg.c	Tue Apr 15 09:49:44 2014	(r264497)
+++ head/sys/net/if_lagg.c	Tue Apr 15 13:28:54 2014	(r264498)
@@ -54,11 +54,11 @@ __FBSDID("$FreeBSD$");
 
 #if defined(INET) || defined(INET6)
 #include <netinet/in.h>
+#include <netinet/ip.h>
 #endif
 #ifdef INET
 #include <netinet/in_systm.h>
 #include <netinet/if_ether.h>
-#include <netinet/ip.h>
 #endif
 
 #ifdef INET6
@@ -448,7 +448,11 @@ lagg_capabilities(struct lagg_softc *sc)
 	struct lagg_port *lp;
 	int cap = ~0, ena = ~0;
 	u_long hwa = ~0UL;
+#if defined(INET) || defined(INET6)
 	u_int hw_tsomax = IP_MAXPACKET;	/* Initialize to the maximum value. */
+#else
+	u_int hw_tsomax = ~0;	/* if_hw_tsomax is only for INET/INET6, but.. */
+#endif
 
 	LAGG_WLOCK_ASSERT(sc);
 


More information about the svn-src-all mailing list