Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 Apr 2012 17:12:04 +0000 (UTC)
From:      Navdeep Parhar <np@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r234426 - in user/np/toe_iwarp/sys: modules/toecore netinet
Message-ID:  <201204181712.q3IHC4Uk041539@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: np
Date: Wed Apr 18 17:12:04 2012
New Revision: 234426
URL: http://svn.freebsd.org/changeset/base/234426

Log:
  proper #includes.

Modified:
  user/np/toe_iwarp/sys/modules/toecore/Makefile
  user/np/toe_iwarp/sys/netinet/tcp_offload.c

Modified: user/np/toe_iwarp/sys/modules/toecore/Makefile
==============================================================================
--- user/np/toe_iwarp/sys/modules/toecore/Makefile	Wed Apr 18 16:47:57 2012	(r234425)
+++ user/np/toe_iwarp/sys/modules/toecore/Makefile	Wed Apr 18 17:12:04 2012	(r234426)
@@ -4,5 +4,6 @@
 
 KMOD=	toecore
 SRCS=	toecore.c
+SRCS+=	opt_ofed.h
 
 .include <bsd.kmod.mk>

Modified: user/np/toe_iwarp/sys/netinet/tcp_offload.c
==============================================================================
--- user/np/toe_iwarp/sys/netinet/tcp_offload.c	Wed Apr 18 16:47:57 2012	(r234425)
+++ user/np/toe_iwarp/sys/netinet/tcp_offload.c	Wed Apr 18 17:12:04 2012	(r234426)
@@ -34,9 +34,12 @@ __FBSDID("$FreeBSD$");
 #include <sys/types.h>
 #include <sys/mbuf.h>
 #include <sys/socket.h>
+#include <sys/socketvar.h>
 #include <sys/sockopt.h>
 #include <net/if.h>
 #include <net/route.h>
+#include <netinet/in.h>
+#include <netinet/in_pcb.h>
 #include <netinet/tcp.h>
 #include <netinet/tcp_var.h>
 #include <netinet/tcp_offload.h>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201204181712.q3IHC4Uk041539>