diff options
author | Garrett Wollman <wollman@FreeBSD.org> | 1994-09-21 03:47:43 +0000 |
---|---|---|
committer | Garrett Wollman <wollman@FreeBSD.org> | 1994-09-21 03:47:43 +0000 |
commit | c901836c143aeb5695c20bb3a7c28d297e5829d3 (patch) | |
tree | 1c73df5527fa425afd9acc6b6f44948163165c7b /sys/msdosfs/msdosfs_vfsops.c | |
parent | 84cc2dc3328a37262a2dcd994aab6c0f479a1dc3 (diff) | |
download | src-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/msdosfs/msdosfs_vfsops.c')
-rw-r--r-- | sys/msdosfs/msdosfs_vfsops.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/msdosfs/msdosfs_vfsops.c b/sys/msdosfs/msdosfs_vfsops.c index 71ba4cb31b92..f9243765c7e0 100644 --- a/sys/msdosfs/msdosfs_vfsops.c +++ b/sys/msdosfs/msdosfs_vfsops.c @@ -1,4 +1,4 @@ -/* $Id: msdosfs_vfsops.c,v 1.1 1994/09/19 15:41:45 dfr Exp $ */ +/* $Id: msdosfs_vfsops.c,v 1.2 1994/09/19 19:24:44 dfr Exp $ */ /* $NetBSD: msdosfs_vfsops.c,v 1.19 1994/08/21 18:44:10 ws Exp $ */ /*- @@ -727,3 +727,5 @@ struct vfsops msdosfs_vfsops = { msdosfs_vptofh, msdosfs_init }; + +VFS_SET(msdosfs_vfsops, msdos, MOUNT_MSDOS, 0); |