dont rely on mbuf.h to provide pool.h.
authordlg <dlg@openbsd.org>
Mon, 18 Aug 2014 05:11:03 +0000 (05:11 +0000)
committerdlg <dlg@openbsd.org>
Mon, 18 Aug 2014 05:11:03 +0000 (05:11 +0000)
ok miod@, who has offerred to help with any MD fallout
ok guenther@

sys/arch/amd64/amd64/aesni.c
sys/arch/hppa/hppa/machdep.c
sys/arch/hppa64/hppa64/machdep.c
sys/crypto/cryptodev.c
sys/dev/pci/if_myx.c
sys/kern/kern_sysctl.c
sys/kern/uipc_mbuf2.c
sys/sys/mbuf.h

index a107ef6..36be2df 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: aesni.c,v 1.27 2014/07/12 18:44:41 tedu Exp $ */
+/*     $OpenBSD: aesni.c,v 1.28 2014/08/18 05:11:03 dlg Exp $  */
 /*-
  * Copyright (c) 2003 Jason Wright
  * Copyright (c) 2003, 2004 Theo de Raadt
@@ -24,6 +24,7 @@
 #include <sys/queue.h>
 #include <sys/types.h>
 #include <sys/malloc.h>
+#include <sys/pool.h>
 #include <sys/mbuf.h>
 #include <sys/pool.h>
 
index 39a79d6..11793d2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.233 2014/07/22 01:04:04 uebayasi Exp $  */
+/*     $OpenBSD: machdep.c,v 1.234 2014/08/18 05:11:03 dlg Exp $       */
 
 /*
  * Copyright (c) 1999-2003 Michael Shalayeff
@@ -38,7 +38,7 @@
 #include <sys/file.h>
 #include <sys/timeout.h>
 #include <sys/malloc.h>
-#include <sys/mbuf.h>
+#include <sys/pool.h>
 #include <sys/msgbuf.h>
 #include <sys/ioctl.h>
 #include <sys/tty.h>
index 9e07488..79a7d22 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.71 2014/07/22 01:04:04 uebayasi Exp $   */
+/*     $OpenBSD: machdep.c,v 1.72 2014/08/18 05:11:03 dlg Exp $        */
 
 /*
  * Copyright (c) 2005 Michael Shalayeff
@@ -29,7 +29,7 @@
 #include <sys/file.h>
 #include <sys/timeout.h>
 #include <sys/malloc.h>
-#include <sys/mbuf.h>
+#include <sys/pool.h>
 #include <sys/msgbuf.h>
 #include <sys/ioctl.h>
 #include <sys/tty.h>
index 67713ae..b704aac 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: cryptodev.c,v 1.81 2014/07/12 18:50:00 tedu Exp $     */
+/*     $OpenBSD: cryptodev.c,v 1.82 2014/08/18 05:11:03 dlg Exp $      */
 
 /*
  * Copyright (c) 2001 Theo de Raadt
@@ -33,6 +33,7 @@
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/malloc.h>
+#include <sys/pool.h>
 #include <sys/mbuf.h>
 #include <sys/proc.h>
 #include <sys/file.h>
index a2ecd73..b326c41 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if_myx.c,v 1.61 2014/07/12 18:48:51 tedu Exp $        */
+/*     $OpenBSD: if_myx.c,v 1.62 2014/08/18 05:11:03 dlg Exp $ */
 
 /*
  * Copyright (c) 2007 Reyk Floeter <reyk@openbsd.org>
@@ -29,6 +29,7 @@
 #include <sys/kernel.h>
 #include <sys/socket.h>
 #include <sys/malloc.h>
+#include <sys/pool.h>
 #include <sys/timeout.h>
 #include <sys/proc.h>
 #include <sys/device.h>
index 27487c0..d0cd8af 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: kern_sysctl.c,v 1.260 2014/07/22 11:06:09 mpi Exp $   */
+/*     $OpenBSD: kern_sysctl.c,v 1.261 2014/08/18 05:11:03 dlg Exp $   */
 /*     $NetBSD: kern_sysctl.c,v 1.17 1996/05/20 17:49:05 mrg Exp $     */
 
 /*-
@@ -43,6 +43,7 @@
 #include <sys/systm.h>
 #include <sys/kernel.h>
 #include <sys/malloc.h>
+#include <sys/pool.h>
 #include <sys/proc.h>
 #include <sys/resourcevar.h>
 #include <sys/signalvar.h>
index 090594c..7900594 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: uipc_mbuf2.c,v 1.37 2013/06/11 01:01:15 dlg Exp $     */
+/*     $OpenBSD: uipc_mbuf2.c,v 1.38 2014/08/18 05:11:03 dlg Exp $     */
 /*     $KAME: uipc_mbuf2.c,v 1.29 2001/02/14 13:42:10 itojun Exp $     */
 /*     $NetBSD: uipc_mbuf.c,v 1.40 1999/04/01 00:23:25 thorpej Exp $   */
 
@@ -66,6 +66,7 @@
 #include <sys/systm.h>
 #include <sys/proc.h>
 #include <sys/malloc.h>
+#include <sys/pool.h>
 #include <sys/mbuf.h>
 
 extern struct pool mtagpool;
index f202be7..bdfdcf6 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: mbuf.h,v 1.181 2014/08/18 04:06:16 dlg Exp $  */
+/*     $OpenBSD: mbuf.h,v 1.182 2014/08/18 05:11:03 dlg Exp $  */
 /*     $NetBSD: mbuf.h,v 1.19 1996/02/09 18:25:14 christos Exp $       */
 
 /*
@@ -36,7 +36,6 @@
 #define _SYS_MBUF_H_
 
 #include <sys/malloc.h>
-#include <sys/pool.h>
 #include <sys/queue.h>
 
 /*