another pair of files which relied on mbuf.h for pool.h; should be the last,
authorblambert <blambert@openbsd.org>
Sat, 31 Jul 2010 20:48:32 +0000 (20:48 +0000)
committerblambert <blambert@openbsd.org>
Sat, 31 Jul 2010 20:48:32 +0000 (20:48 +0000)
as the kernel now compiles w/o ``#include <sys/pool.h>'' in mbuf.h; removing
that line, though, is for another day, as a userland program (systat, IIRC)
fails to build without it there.

ok krw@

sys/net/if.c
sys/nfs/nfs_syscalls.c

index 8e0d467..1ad04c9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if.c,v 1.218 2010/07/03 04:44:51 guenther Exp $       */
+/*     $OpenBSD: if.c,v 1.219 2010/07/31 20:48:32 blambert Exp $       */
 /*     $NetBSD: if.c,v 1.35 1996/05/07 05:26:04 thorpej Exp $  */
 
 /*
@@ -71,6 +71,7 @@
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/mbuf.h>
+#include <sys/pool.h>
 #include <sys/proc.h>
 #include <sys/socket.h>
 #include <sys/socketvar.h>
index 77bfff3..df6deb7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: nfs_syscalls.c,v 1.89 2010/04/12 16:37:38 beck Exp $  */
+/*     $OpenBSD: nfs_syscalls.c,v 1.90 2010/07/31 20:48:32 blambert Exp $      */
 /*     $NetBSD: nfs_syscalls.c,v 1.19 1996/02/18 11:53:52 fvdl Exp $   */
 
 /*
@@ -42,6 +42,7 @@
 #include <sys/stat.h>
 #include <sys/vnode.h>
 #include <sys/mount.h>
+#include <sys/pool.h>
 #include <sys/proc.h>
 #include <sys/uio.h>
 #include <sys/malloc.h>