Date: Tue, 15 Apr 2014 13:28:54 +0000 (UTC) From: Rick Macklem <rmacklem@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r264498 - head/sys/net Message-ID: <201404151328.s3FDSsME043487@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404151328.s3FDSsME043487>