diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2011-04-07 13:42:54 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2011-04-07 13:42:54 +0000 |
commit | d29bbd04d668742aca5c9d535bab3eb4cf15152e (patch) | |
tree | 9d8c7bac7c0800200065a57ca9351aab11b22091 /sys/kern/vfs_init.c | |
parent | 1ba331daeed7d3b5168d998cfadec8bf7a70e3b0 (diff) |
merge vfs_conf.c and vfs_init.c and retire vfs_conf.c;
The contents belong togather a long with other crud,
that should get moved at some point.
ok deraadt@, miod@
Diffstat (limited to 'sys/kern/vfs_init.c')
-rw-r--r-- | sys/kern/vfs_init.c | 106 |
1 files changed, 97 insertions, 9 deletions
diff --git a/sys/kern/vfs_init.c b/sys/kern/vfs_init.c index 839af0e74e2..63b626b9ce6 100644 --- a/sys/kern/vfs_init.c +++ b/sys/kern/vfs_init.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_init.c,v 1.28 2010/12/21 20:14:43 thib Exp $ */ +/* $OpenBSD: vfs_init.c,v 1.29 2011/04/07 13:42:53 thib Exp $ */ /* $NetBSD: vfs_init.c,v 1.6 1996/02/09 19:00:58 christos Exp $ */ /* @@ -39,19 +39,107 @@ #include <sys/param.h> #include <sys/mount.h> -#include <sys/time.h> #include <sys/vnode.h> -#include <sys/stat.h> -#include <sys/namei.h> -#include <sys/ucred.h> -#include <sys/buf.h> -#include <sys/errno.h> -#include <sys/malloc.h> -#include <sys/pool.h> #include <sys/systm.h> +#include <sys/pool.h> struct pool namei_pool; +/* This defines the root filesystem. */ +struct vnode *rootvnode; + +/* Set up the filesystem operations for vnodes. */ +#ifdef FFS +extern const struct vfsops ffs_vfsops; +#endif + +#ifdef MFS +extern const struct vfsops mfs_vfsops; +#endif + +#ifdef MSDOSFS +extern const struct vfsops msdosfs_vfsops; +#endif + +#ifdef NFSCLIENT +extern const struct vfsops nfs_vfsops; +#endif + +#ifdef PROCFS +extern const struct vfsops procfs_vfsops; +#endif + +#ifdef CD9660 +extern const struct vfsops cd9660_vfsops; +#endif + +#ifdef EXT2FS +extern const struct vfsops ext2fs_vfsops; +#endif + +#ifdef NNPFS +extern const struct vfsops nnpfs_vfsops; +#endif + +#ifdef NTFS +extern const struct vfsops ntfs_vfsops; +#endif + +#ifdef UDF +extern const struct vfsops udf_vfsops; +#endif + +/* Set up the filesystem operations for vnodes. */ +static struct vfsconf vfsconflist[] = { +#ifdef FFS + { &ffs_vfsops, MOUNT_FFS, 1, 0, MNT_LOCAL, NULL }, +#endif + +#ifdef MFS + { &mfs_vfsops, MOUNT_MFS, 3, 0, MNT_LOCAL, NULL }, +#endif + +#ifdef EXT2FS + { &ext2fs_vfsops, MOUNT_EXT2FS, 17, 0, MNT_LOCAL, NULL }, +#endif + +#ifdef CD9660 + { &cd9660_vfsops, MOUNT_CD9660, 14, 0, MNT_LOCAL, NULL }, +#endif + +#ifdef MSDOSFS + { &msdosfs_vfsops, MOUNT_MSDOS, 4, 0, MNT_LOCAL, NULL }, +#endif + +#ifdef NFSCLIENT + { &nfs_vfsops, MOUNT_NFS, 2, 0, 0, NULL }, +#endif + +#ifdef NNPFS + { &nnpfs_vfsops, MOUNT_NNPFS, 21, 0, 0, NULL }, +#endif + +#ifdef PROCFS + { &procfs_vfsops, MOUNT_PROCFS, 12, 0, 0, NULL }, +#endif + +#ifdef NTFS + { &ntfs_vfsops, MOUNT_NTFS, 6, 0, MNT_LOCAL, NULL }, +#endif + +#ifdef UDF + { &udf_vfsops, MOUNT_UDF, 13, 0, MNT_LOCAL, NULL }, +#endif +}; + + +/* + * Initially the size of the list, vfsinit will set maxvfsconf + * to the highest defined type number. + */ +int maxvfsconf = sizeof(vfsconflist) / sizeof(struct vfsconf); +struct vfsconf *vfsconf = vfsconflist; + /* Initialize the vnode structures and initialize each file system type. */ void vfsinit(void) |