diff options
| author | Bruce Evans <bde@FreeBSD.org> | 2004-04-21 12:10:30 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 2004-04-21 12:10:30 +0000 |
| commit | 057e27959f7cfe8f0e496da451c09aad2a01d925 (patch) | |
| tree | 346916eabd0dbf153ef7f2db299de35f7620ed36 | |
| parent | 2d695ed31d8e99ad6caf764014de5386e8493427 (diff) | |
Notes
| -rw-r--r-- | sys/kern/vfs_export.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/sys/kern/vfs_export.c b/sys/kern/vfs_export.c index 2be2ac039a35..a90d6f860f16 100644 --- a/sys/kern/vfs_export.c +++ b/sys/kern/vfs_export.c @@ -38,17 +38,20 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> -#include <sys/systm.h> +#include <sys/dirent.h> +#include <sys/domain.h> #include <sys/kernel.h> -#include <sys/socket.h> +#include <sys/lock.h> #include <sys/malloc.h> #include <sys/mbuf.h> #include <sys/mount.h> -#include <net/radix.h> -#include <sys/domain.h> -#include <sys/dirent.h> +#include <sys/mutex.h> +#include <sys/socket.h> +#include <sys/systm.h> #include <sys/vnode.h> +#include <net/radix.h> + static MALLOC_DEFINE(M_NETADDR, "Export Host", "Export host address structure"); static void vfs_free_addrlist(struct netexport *nep); |
