aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/nullfs
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>1994-09-22 19:38:41 +0000
committerGarrett Wollman <wollman@FreeBSD.org>1994-09-22 19:38:41 +0000
commitc9b1d6048dd2438cf4a1676ab55dcf0b9735ef55 (patch)
tree8a04304254d084244650740c5bace4d140e11a7e /sys/fs/nullfs
parentaf2c9cfd5bce441d3f682348f415ee8965ea2f02 (diff)
downloadsrc-c9b1d6048dd2438cf4a1676ab55dcf0b9735ef55.tar.gz
src-c9b1d6048dd2438cf4a1676ab55dcf0b9735ef55.zip
More loadable VFS changes:
- Make a number of filesystems work again when they are statically compiled (blush) - FIFOs are no longer optional; ``options FIFO'' removed from distributed config files.
Notes
Notes: svn path=/head/; revision=2979
Diffstat (limited to 'sys/fs/nullfs')
-rw-r--r--sys/fs/nullfs/null_vfsops.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/fs/nullfs/null_vfsops.c b/sys/fs/nullfs/null_vfsops.c
index 98f9cc624bf7..8ffdcb477f08 100644
--- a/sys/fs/nullfs/null_vfsops.c
+++ b/sys/fs/nullfs/null_vfsops.c
@@ -36,7 +36,7 @@
* @(#)null_vfsops.c 8.2 (Berkeley) 1/21/94
*
* @(#)lofs_vfsops.c 1.2 (Berkeley) 6/18/92
- * $Id: null_vfsops.c,v 1.1.1.1 1994/05/24 10:05:03 rgrimes Exp $
+ * $Id: null_vfsops.c,v 1.2 1994/09/21 03:47:01 wollman Exp $
*/
/*
@@ -46,6 +46,7 @@
#include <sys/param.h>
#include <sys/systm.h>
+#include <sys/kernel.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/vnode.h>