diff options
author | grog <grog@FreeBSD.org> | 2001-04-23 09:05:15 +0000 |
---|---|---|
committer | grog <grog@FreeBSD.org> | 2001-04-23 09:05:15 +0000 |
commit | 1f5de3071891f86c0e7d51efde6705f5b8ac2959 (patch) | |
tree | 2f60aabcb12c36c1d96b7e6a92c008714a5a2f7c /sys/nfsserver | |
parent | cdfbb3de26026e4ee99ec51a6eee46d807a9dcf7 (diff) | |
download | FreeBSD-src-1f5de3071891f86c0e7d51efde6705f5b8ac2959.zip FreeBSD-src-1f5de3071891f86c0e7d51efde6705f5b8ac2959.tar.gz |
Correct #includes to work with fixed sys/mount.h.
Diffstat (limited to 'sys/nfsserver')
-rw-r--r-- | sys/nfsserver/nfs_serv.c | 2 | ||||
-rw-r--r-- | sys/nfsserver/nfs_srvcache.c | 2 | ||||
-rw-r--r-- | sys/nfsserver/nfs_srvsock.c | 2 | ||||
-rw-r--r-- | sys/nfsserver/nfs_srvsubs.c | 2 | ||||
-rw-r--r-- | sys/nfsserver/nfs_syscalls.c | 2 |
5 files changed, 10 insertions, 0 deletions
diff --git a/sys/nfsserver/nfs_serv.c b/sys/nfsserver/nfs_serv.c index e015d17..bd54a3b 100644 --- a/sys/nfsserver/nfs_serv.c +++ b/sys/nfsserver/nfs_serv.c @@ -76,6 +76,8 @@ #include <sys/namei.h> #include <sys/unistd.h> #include <sys/vnode.h> +#include <net/radix.h> +#include <sys/socket.h> #include <sys/mount.h> #include <sys/socket.h> #include <sys/socketvar.h> diff --git a/sys/nfsserver/nfs_srvcache.c b/sys/nfsserver/nfs_srvcache.c index e7b10dd..f2e9182 100644 --- a/sys/nfsserver/nfs_srvcache.c +++ b/sys/nfsserver/nfs_srvcache.c @@ -44,6 +44,8 @@ */ #include <sys/param.h> #include <sys/malloc.h> +#include <net/radix.h> +#include <sys/socket.h> #include <sys/mount.h> #include <sys/systm.h> #include <sys/mbuf.h> diff --git a/sys/nfsserver/nfs_srvsock.c b/sys/nfsserver/nfs_srvsock.c index fefeea8..de6a592 100644 --- a/sys/nfsserver/nfs_srvsock.c +++ b/sys/nfsserver/nfs_srvsock.c @@ -45,6 +45,8 @@ #include <sys/systm.h> #include <sys/proc.h> #include <sys/malloc.h> +#include <net/radix.h> +#include <sys/socket.h> #include <sys/mount.h> #include <sys/kernel.h> #include <sys/mbuf.h> diff --git a/sys/nfsserver/nfs_srvsubs.c b/sys/nfsserver/nfs_srvsubs.c index c7e6917..ac9c217 100644 --- a/sys/nfsserver/nfs_srvsubs.c +++ b/sys/nfsserver/nfs_srvsubs.c @@ -48,6 +48,8 @@ #include <sys/bio.h> #include <sys/buf.h> #include <sys/proc.h> +#include <net/radix.h> +#include <sys/socket.h> #include <sys/mount.h> #include <sys/vnode.h> #include <sys/namei.h> diff --git a/sys/nfsserver/nfs_syscalls.c b/sys/nfsserver/nfs_syscalls.c index a47d5a8..e461d0d 100644 --- a/sys/nfsserver/nfs_syscalls.c +++ b/sys/nfsserver/nfs_syscalls.c @@ -46,6 +46,8 @@ #include <sys/filedesc.h> #include <sys/vnode.h> #include <sys/malloc.h> +#include <net/radix.h> +#include <sys/socket.h> #include <sys/mount.h> #include <sys/proc.h> #include <sys/bio.h> |