aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Lehey <grog@FreeBSD.org>2001-04-23 08:28:44 +0000
committerGreg Lehey <grog@FreeBSD.org>2001-04-23 08:28:44 +0000
commit97d5f7bb3b3599b1016490a8287cfbd2b761141a (patch)
treeb317eb94335dc313092ca45a4621585f474013a3
parente84a5d837288a3741d92895f14f398c1ea391e58 (diff)
downloadsrc-97d5f7bb3b3599b1016490a8287cfbd2b761141a.tar.gz
src-97d5f7bb3b3599b1016490a8287cfbd2b761141a.zip
Correct #includes to work with fixed sys/mount.h.
Notes
Notes: svn path=/head/; revision=75856
-rw-r--r--sys/fs/cd9660/cd9660_bmap.c2
-rw-r--r--sys/fs/cd9660/cd9660_lookup.c2
-rw-r--r--sys/fs/cd9660/cd9660_node.c2
-rw-r--r--sys/fs/cd9660/cd9660_rrip.c2
-rw-r--r--sys/fs/cd9660/cd9660_util.c2
-rw-r--r--sys/fs/cd9660/cd9660_vfsops.c2
-rw-r--r--sys/fs/cd9660/cd9660_vnops.c2
-rw-r--r--sys/isofs/cd9660/cd9660_bmap.c2
-rw-r--r--sys/isofs/cd9660/cd9660_lookup.c2
-rw-r--r--sys/isofs/cd9660/cd9660_node.c2
-rw-r--r--sys/isofs/cd9660/cd9660_rrip.c2
-rw-r--r--sys/isofs/cd9660/cd9660_util.c2
-rw-r--r--sys/isofs/cd9660/cd9660_vfsops.c2
-rw-r--r--sys/isofs/cd9660/cd9660_vnops.c2
14 files changed, 28 insertions, 0 deletions
diff --git a/sys/fs/cd9660/cd9660_bmap.c b/sys/fs/cd9660/cd9660_bmap.c
index e5fcd9ab32b3..d6796c9f2e13 100644
--- a/sys/fs/cd9660/cd9660_bmap.c
+++ b/sys/fs/cd9660/cd9660_bmap.c
@@ -41,6 +41,8 @@
#include <sys/param.h>
#include <sys/vnode.h>
+#include <net/radix.h>
+#include <sys/socket.h>
#include <sys/mount.h>
#include <isofs/cd9660/iso.h>
diff --git a/sys/fs/cd9660/cd9660_lookup.c b/sys/fs/cd9660/cd9660_lookup.c
index b2d5057f631e..27e182463ac3 100644
--- a/sys/fs/cd9660/cd9660_lookup.c
+++ b/sys/fs/cd9660/cd9660_lookup.c
@@ -47,6 +47,8 @@
#include <sys/bio.h>
#include <sys/buf.h>
#include <sys/vnode.h>
+#include <net/radix.h>
+#include <sys/socket.h>
#include <sys/mount.h>
#include <isofs/cd9660/iso.h>
diff --git a/sys/fs/cd9660/cd9660_node.c b/sys/fs/cd9660/cd9660_node.c
index 00f79e80c1d1..53c4dae7d450 100644
--- a/sys/fs/cd9660/cd9660_node.c
+++ b/sys/fs/cd9660/cd9660_node.c
@@ -41,6 +41,8 @@
#include <sys/param.h>
#include <sys/systm.h>
+#include <net/radix.h>
+#include <sys/socket.h>
#include <sys/mount.h>
#include <sys/bio.h>
#include <sys/buf.h>
diff --git a/sys/fs/cd9660/cd9660_rrip.c b/sys/fs/cd9660/cd9660_rrip.c
index 5f0a262bd901..9616f3506505 100644
--- a/sys/fs/cd9660/cd9660_rrip.c
+++ b/sys/fs/cd9660/cd9660_rrip.c
@@ -44,6 +44,8 @@
#include <sys/bio.h>
#include <sys/buf.h>
#include <sys/vnode.h>
+#include <net/radix.h>
+#include <sys/socket.h>
#include <sys/mount.h>
#include <sys/kernel.h>
diff --git a/sys/fs/cd9660/cd9660_util.c b/sys/fs/cd9660/cd9660_util.c
index 56279db03665..f3e693e754aa 100644
--- a/sys/fs/cd9660/cd9660_util.c
+++ b/sys/fs/cd9660/cd9660_util.c
@@ -41,6 +41,8 @@
*/
#include <sys/param.h>
+#include <net/radix.h>
+#include <sys/socket.h>
#include <sys/mount.h>
#include <sys/vnode.h>
diff --git a/sys/fs/cd9660/cd9660_vfsops.c b/sys/fs/cd9660/cd9660_vfsops.c
index a4744249db0d..0228988cb988 100644
--- a/sys/fs/cd9660/cd9660_vfsops.c
+++ b/sys/fs/cd9660/cd9660_vfsops.c
@@ -45,6 +45,8 @@
#include <sys/proc.h>
#include <sys/kernel.h>
#include <sys/vnode.h>
+#include <net/radix.h>
+#include <sys/socket.h>
#include <sys/mount.h>
#include <sys/bio.h>
#include <sys/buf.h>
diff --git a/sys/fs/cd9660/cd9660_vnops.c b/sys/fs/cd9660/cd9660_vnops.c
index f34ebd44634e..270da205a0de 100644
--- a/sys/fs/cd9660/cd9660_vnops.c
+++ b/sys/fs/cd9660/cd9660_vnops.c
@@ -46,6 +46,8 @@
#include <sys/stat.h>
#include <sys/bio.h>
#include <sys/buf.h>
+#include <net/radix.h>
+#include <sys/socket.h>
#include <sys/mount.h>
#include <sys/vnode.h>
#include <miscfs/fifofs/fifo.h>
diff --git a/sys/isofs/cd9660/cd9660_bmap.c b/sys/isofs/cd9660/cd9660_bmap.c
index e5fcd9ab32b3..d6796c9f2e13 100644
--- a/sys/isofs/cd9660/cd9660_bmap.c
+++ b/sys/isofs/cd9660/cd9660_bmap.c
@@ -41,6 +41,8 @@
#include <sys/param.h>
#include <sys/vnode.h>
+#include <net/radix.h>
+#include <sys/socket.h>
#include <sys/mount.h>
#include <isofs/cd9660/iso.h>
diff --git a/sys/isofs/cd9660/cd9660_lookup.c b/sys/isofs/cd9660/cd9660_lookup.c
index b2d5057f631e..27e182463ac3 100644
--- a/sys/isofs/cd9660/cd9660_lookup.c
+++ b/sys/isofs/cd9660/cd9660_lookup.c
@@ -47,6 +47,8 @@
#include <sys/bio.h>
#include <sys/buf.h>
#include <sys/vnode.h>
+#include <net/radix.h>
+#include <sys/socket.h>
#include <sys/mount.h>
#include <isofs/cd9660/iso.h>
diff --git a/sys/isofs/cd9660/cd9660_node.c b/sys/isofs/cd9660/cd9660_node.c
index 00f79e80c1d1..53c4dae7d450 100644
--- a/sys/isofs/cd9660/cd9660_node.c
+++ b/sys/isofs/cd9660/cd9660_node.c
@@ -41,6 +41,8 @@
#include <sys/param.h>
#include <sys/systm.h>
+#include <net/radix.h>
+#include <sys/socket.h>
#include <sys/mount.h>
#include <sys/bio.h>
#include <sys/buf.h>
diff --git a/sys/isofs/cd9660/cd9660_rrip.c b/sys/isofs/cd9660/cd9660_rrip.c
index 5f0a262bd901..9616f3506505 100644
--- a/sys/isofs/cd9660/cd9660_rrip.c
+++ b/sys/isofs/cd9660/cd9660_rrip.c
@@ -44,6 +44,8 @@
#include <sys/bio.h>
#include <sys/buf.h>
#include <sys/vnode.h>
+#include <net/radix.h>
+#include <sys/socket.h>
#include <sys/mount.h>
#include <sys/kernel.h>
diff --git a/sys/isofs/cd9660/cd9660_util.c b/sys/isofs/cd9660/cd9660_util.c
index 56279db03665..f3e693e754aa 100644
--- a/sys/isofs/cd9660/cd9660_util.c
+++ b/sys/isofs/cd9660/cd9660_util.c
@@ -41,6 +41,8 @@
*/
#include <sys/param.h>
+#include <net/radix.h>
+#include <sys/socket.h>
#include <sys/mount.h>
#include <sys/vnode.h>
diff --git a/sys/isofs/cd9660/cd9660_vfsops.c b/sys/isofs/cd9660/cd9660_vfsops.c
index a4744249db0d..0228988cb988 100644
--- a/sys/isofs/cd9660/cd9660_vfsops.c
+++ b/sys/isofs/cd9660/cd9660_vfsops.c
@@ -45,6 +45,8 @@
#include <sys/proc.h>
#include <sys/kernel.h>
#include <sys/vnode.h>
+#include <net/radix.h>
+#include <sys/socket.h>
#include <sys/mount.h>
#include <sys/bio.h>
#include <sys/buf.h>
diff --git a/sys/isofs/cd9660/cd9660_vnops.c b/sys/isofs/cd9660/cd9660_vnops.c
index f34ebd44634e..270da205a0de 100644
--- a/sys/isofs/cd9660/cd9660_vnops.c
+++ b/sys/isofs/cd9660/cd9660_vnops.c
@@ -46,6 +46,8 @@
#include <sys/stat.h>
#include <sys/bio.h>
#include <sys/buf.h>
+#include <net/radix.h>
+#include <sys/socket.h>
#include <sys/mount.h>
#include <sys/vnode.h>
#include <miscfs/fifofs/fifo.h>