aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/fdescfs/fdesc_vfsops.c
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>1994-09-21 03:47:43 +0000
committerGarrett Wollman <wollman@FreeBSD.org>1994-09-21 03:47:43 +0000
commitc901836c143aeb5695c20bb3a7c28d297e5829d3 (patch)
tree1c73df5527fa425afd9acc6b6f44948163165c7b /sys/fs/fdescfs/fdesc_vfsops.c
parent84cc2dc3328a37262a2dcd994aab6c0f479a1dc3 (diff)
downloadsrc-c901836c143aeb5695c20bb3a7c28d297e5829d3.tar.gz
src-c901836c143aeb5695c20bb3a7c28d297e5829d3.zip
Implemented loadable VFS modules, and made most existing filesystems
loadable. (NFS is a notable exception.)
Notes
Notes: svn path=/head/; revision=2946
Diffstat (limited to 'sys/fs/fdescfs/fdesc_vfsops.c')
-rw-r--r--sys/fs/fdescfs/fdesc_vfsops.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/fs/fdescfs/fdesc_vfsops.c b/sys/fs/fdescfs/fdesc_vfsops.c
index 80c543da6550..d82f14d209af 100644
--- a/sys/fs/fdescfs/fdesc_vfsops.c
+++ b/sys/fs/fdescfs/fdesc_vfsops.c
@@ -35,7 +35,7 @@
*
* @(#)fdesc_vfsops.c 8.4 (Berkeley) 1/21/94
*
- * $Id: fdesc_vfsops.c,v 1.9 1993/04/06 15:28:33 jsp Exp $
+ * $Id: fdesc_vfsops.c,v 1.1.1.1 1994/05/24 10:04:59 rgrimes Exp $
*/
/*
@@ -44,6 +44,7 @@
#include <sys/param.h>
#include <sys/systm.h>
+#include <sys/kernel.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/proc.h>
@@ -286,3 +287,5 @@ struct vfsops fdesc_vfsops = {
fdesc_vptofh,
fdesc_init,
};
+
+VFS_SET(fdesc_vfsops, fdesc, MOUNT_FDESC, 0);