2005-03-29 06:41:05 +04:00
|
|
|
/* $NetBSD: vfs_init.c,v 1.27 2005/03/29 02:41:05 thorpej Exp $ */
|
1998-02-18 10:15:30 +03:00
|
|
|
|
|
|
|
/*-
|
2000-08-04 00:41:05 +04:00
|
|
|
* Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
|
1998-02-18 10:15:30 +03:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
|
|
|
|
* NASA Ames Research Center.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1994-06-08 15:28:29 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1989, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed
|
|
|
|
* to Berkeley by John Heidemann of the UCLA Ficus project.
|
|
|
|
*
|
|
|
|
* Source: * @(#)i405_init.c 2.10 92/04/27 UCLA Ficus project
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 20:26:28 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-06-08 15:28:29 +04:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1998-03-01 05:20:01 +03:00
|
|
|
* @(#)vfs_init.c 8.5 (Berkeley) 5/11/95
|
1994-06-08 15:28:29 +04:00
|
|
|
*/
|
|
|
|
|
2001-11-12 18:25:01 +03:00
|
|
|
#include <sys/cdefs.h>
|
2005-03-29 06:41:05 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: vfs_init.c,v 1.27 2005/03/29 02:41:05 thorpej Exp $");
|
2001-11-12 18:25:01 +03:00
|
|
|
|
1994-06-08 15:28:29 +04:00
|
|
|
#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>
|
1996-02-04 05:17:43 +03:00
|
|
|
#include <sys/systm.h>
|
1994-06-08 15:28:29 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Sigh, such primitive tools are these...
|
|
|
|
*/
|
|
|
|
#if 0
|
|
|
|
#define DODEBUG(A) A
|
|
|
|
#else
|
|
|
|
#define DODEBUG(A)
|
|
|
|
#endif
|
|
|
|
|
1998-02-18 10:15:30 +03:00
|
|
|
/*
|
|
|
|
* The global list of vnode operations.
|
|
|
|
*/
|
2001-01-22 12:57:25 +03:00
|
|
|
extern const struct vnodeop_desc * const vfs_op_descs[];
|
1998-02-18 10:15:30 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* These vnodeopv_descs are listed here because they are not
|
|
|
|
* associated with any particular file system, and thus cannot
|
|
|
|
* be initialized by vfs_attach().
|
|
|
|
*/
|
2001-01-22 15:17:35 +03:00
|
|
|
extern const struct vnodeopv_desc dead_vnodeop_opv_desc;
|
|
|
|
extern const struct vnodeopv_desc fifo_vnodeop_opv_desc;
|
|
|
|
extern const struct vnodeopv_desc spec_vnodeop_opv_desc;
|
|
|
|
extern const struct vnodeopv_desc sync_vnodeop_opv_desc;
|
1998-02-18 10:15:30 +03:00
|
|
|
|
2001-01-22 15:17:35 +03:00
|
|
|
const struct vnodeopv_desc * const vfs_special_vnodeopv_descs[] = {
|
1998-02-18 10:15:30 +03:00
|
|
|
&dead_vnodeop_opv_desc,
|
|
|
|
&fifo_vnodeop_opv_desc,
|
|
|
|
&spec_vnodeop_opv_desc,
|
1999-11-15 21:49:07 +03:00
|
|
|
&sync_vnodeop_opv_desc,
|
1998-02-18 10:15:30 +03:00
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
1994-06-08 15:28:29 +04:00
|
|
|
/*
|
|
|
|
* This code doesn't work if the defn is **vnodop_defns with cc.
|
|
|
|
* The problem is because of the compiler sometimes putting in an
|
|
|
|
* extra level of indirection for arrays. It's an interesting
|
|
|
|
* "feature" of C.
|
|
|
|
*/
|
2004-03-23 16:22:03 +03:00
|
|
|
typedef int (*PFI)(void *);
|
1996-02-04 05:17:43 +03:00
|
|
|
|
2004-03-23 16:22:03 +03:00
|
|
|
static void vfs_opv_init_explicit(const struct vnodeopv_desc *);
|
|
|
|
static void vfs_opv_init_default(const struct vnodeopv_desc *);
|
2001-01-22 12:57:25 +03:00
|
|
|
#ifdef DEBUG
|
2004-03-23 16:22:03 +03:00
|
|
|
static void vfs_op_check(void);
|
2001-01-22 12:57:25 +03:00
|
|
|
#endif
|
1994-06-08 15:28:29 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* A miscellaneous routine.
|
|
|
|
* A generic "default" routine that just returns an error.
|
|
|
|
*/
|
1996-02-04 05:17:43 +03:00
|
|
|
/*ARGSUSED*/
|
1994-06-08 15:28:29 +04:00
|
|
|
int
|
1996-02-04 05:17:43 +03:00
|
|
|
vn_default_error(v)
|
|
|
|
void *v;
|
1994-06-08 15:28:29 +04:00
|
|
|
{
|
|
|
|
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* vfs_init.c
|
|
|
|
*
|
|
|
|
* Allocate and fill in operations vectors.
|
|
|
|
*
|
|
|
|
* An undocumented feature of this approach to defining operations is that
|
|
|
|
* there can be multiple entries in vfs_opv_descs for the same operations
|
|
|
|
* vector. This allows third parties to extend the set of operations
|
|
|
|
* supported by another layer in a binary compatibile way. For example,
|
|
|
|
* assume that NFS needed to be modified to support Ficus. NFS has an entry
|
|
|
|
* (probably nfs_vnopdeop_decls) declaring all the operations NFS supports by
|
|
|
|
* default. Ficus could add another entry (ficus_nfs_vnodeop_decl_entensions)
|
|
|
|
* listing those new operations Ficus adds to NFS, all without modifying the
|
|
|
|
* NFS code. (Of couse, the OTW NFS protocol still needs to be munged, but
|
|
|
|
* that is a(whole)nother story.) This is a feature.
|
|
|
|
*/
|
1994-07-24 11:15:19 +04:00
|
|
|
|
|
|
|
/*
|
1998-02-18 10:15:30 +03:00
|
|
|
* Init the vector, if it needs it.
|
1994-07-24 11:15:19 +04:00
|
|
|
* Also handle backwards compatibility.
|
|
|
|
*/
|
2001-01-22 12:57:25 +03:00
|
|
|
static void
|
1994-07-24 11:15:19 +04:00
|
|
|
vfs_opv_init_explicit(vfs_opv_desc)
|
2001-01-22 15:17:35 +03:00
|
|
|
const struct vnodeopv_desc *vfs_opv_desc;
|
1994-06-08 15:28:29 +04:00
|
|
|
{
|
2004-03-23 16:22:03 +03:00
|
|
|
int (**opv_desc_vector)(void *);
|
2001-01-22 15:17:35 +03:00
|
|
|
const struct vnodeopv_entry_desc *opve_descp;
|
1994-06-08 15:28:29 +04:00
|
|
|
|
1994-07-24 11:15:19 +04:00
|
|
|
opv_desc_vector = *(vfs_opv_desc->opv_desc_vector_p);
|
|
|
|
|
|
|
|
for (opve_descp = vfs_opv_desc->opv_desc_ops;
|
|
|
|
opve_descp->opve_op;
|
|
|
|
opve_descp++) {
|
1994-06-08 15:28:29 +04:00
|
|
|
/*
|
1994-07-24 11:15:19 +04:00
|
|
|
* Sanity check: is this operation listed
|
|
|
|
* in the list of operations? We check this
|
2003-05-17 19:53:42 +04:00
|
|
|
* by seeing if its offset is zero. Since
|
1994-07-24 11:15:19 +04:00
|
|
|
* the default routine should always be listed
|
|
|
|
* first, it should be the only one with a zero
|
|
|
|
* offset. Any other operation with a zero
|
|
|
|
* offset is probably not listed in
|
|
|
|
* vfs_op_descs, and so is probably an error.
|
|
|
|
*
|
|
|
|
* A panic here means the layer programmer
|
|
|
|
* has committed the all-too common bug
|
|
|
|
* of adding a new operation to the layer's
|
|
|
|
* list of vnode operations but
|
|
|
|
* not adding the operation to the system-wide
|
|
|
|
* list of supported operations.
|
1994-06-08 15:28:29 +04:00
|
|
|
*/
|
1994-07-24 11:15:19 +04:00
|
|
|
if (opve_descp->opve_op->vdesc_offset == 0 &&
|
|
|
|
opve_descp->opve_op->vdesc_offset != VOFFSET(vop_default)) {
|
1996-10-13 06:32:29 +04:00
|
|
|
printf("operation %s not listed in %s.\n",
|
1994-07-24 11:15:19 +04:00
|
|
|
opve_descp->opve_op->vdesc_name, "vfs_op_descs");
|
|
|
|
panic ("vfs_opv_init: bad operation");
|
1994-06-08 15:28:29 +04:00
|
|
|
}
|
1994-07-24 11:15:19 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Fill in this entry.
|
|
|
|
*/
|
|
|
|
opv_desc_vector[opve_descp->opve_op->vdesc_offset] =
|
|
|
|
opve_descp->opve_impl;
|
1994-06-08 15:28:29 +04:00
|
|
|
}
|
1994-07-24 11:15:19 +04:00
|
|
|
}
|
|
|
|
|
2001-01-22 12:57:25 +03:00
|
|
|
static void
|
1994-07-24 11:15:19 +04:00
|
|
|
vfs_opv_init_default(vfs_opv_desc)
|
2001-01-22 15:17:35 +03:00
|
|
|
const struct vnodeopv_desc *vfs_opv_desc;
|
1994-07-24 11:15:19 +04:00
|
|
|
{
|
|
|
|
int j;
|
2004-03-23 16:22:03 +03:00
|
|
|
int (**opv_desc_vector)(void *);
|
1994-07-24 11:15:19 +04:00
|
|
|
|
|
|
|
opv_desc_vector = *(vfs_opv_desc->opv_desc_vector_p);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Force every operations vector to have a default routine.
|
|
|
|
*/
|
|
|
|
if (opv_desc_vector[VOFFSET(vop_default)] == NULL)
|
|
|
|
panic("vfs_opv_init: operation vector without default routine.");
|
|
|
|
|
2001-01-22 12:57:25 +03:00
|
|
|
for (j = 0; j < VNODE_OPS_COUNT; j++)
|
1994-07-24 11:15:19 +04:00
|
|
|
if (opv_desc_vector[j] == NULL)
|
2005-02-27 00:34:55 +03:00
|
|
|
opv_desc_vector[j] =
|
1994-07-24 11:15:19 +04:00
|
|
|
opv_desc_vector[VOFFSET(vop_default)];
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1998-02-18 10:15:30 +03:00
|
|
|
vfs_opv_init(vopvdpp)
|
2001-01-22 15:17:35 +03:00
|
|
|
const struct vnodeopv_desc * const *vopvdpp;
|
1994-07-24 11:15:19 +04:00
|
|
|
{
|
2004-03-23 16:22:03 +03:00
|
|
|
int (**opv_desc_vector)(void *);
|
1994-07-24 11:15:19 +04:00
|
|
|
int i;
|
|
|
|
|
|
|
|
/*
|
1998-02-18 10:15:30 +03:00
|
|
|
* Allocate the vectors.
|
1994-07-24 11:15:19 +04:00
|
|
|
*/
|
1998-02-18 10:15:30 +03:00
|
|
|
for (i = 0; vopvdpp[i] != NULL; i++) {
|
|
|
|
/* XXX - shouldn't be M_VNODE */
|
|
|
|
opv_desc_vector =
|
2001-01-22 12:57:25 +03:00
|
|
|
malloc(VNODE_OPS_COUNT * sizeof(PFI), M_VNODE, M_WAITOK);
|
|
|
|
memset(opv_desc_vector, 0, VNODE_OPS_COUNT * sizeof(PFI));
|
1998-02-18 10:15:30 +03:00
|
|
|
*(vopvdpp[i]->opv_desc_vector_p) = opv_desc_vector;
|
|
|
|
DODEBUG(printf("vector at %p allocated\n",
|
|
|
|
opv_desc_vector_p));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ...and fill them in.
|
|
|
|
*/
|
|
|
|
for (i = 0; vopvdpp[i] != NULL; i++)
|
|
|
|
vfs_opv_init_explicit(vopvdpp[i]);
|
1994-07-24 11:15:19 +04:00
|
|
|
|
1994-06-08 15:28:29 +04:00
|
|
|
/*
|
|
|
|
* Finally, go back and replace unfilled routines
|
1994-07-24 11:15:19 +04:00
|
|
|
* with their default.
|
1994-06-08 15:28:29 +04:00
|
|
|
*/
|
1998-02-18 10:15:30 +03:00
|
|
|
for (i = 0; vopvdpp[i] != NULL; i++)
|
|
|
|
vfs_opv_init_default(vopvdpp[i]);
|
1994-06-08 15:28:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1998-02-18 10:15:30 +03:00
|
|
|
vfs_opv_free(vopvdpp)
|
2001-01-22 15:17:35 +03:00
|
|
|
const struct vnodeopv_desc * const *vopvdpp;
|
1994-06-08 15:28:29 +04:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/*
|
1998-02-18 10:15:30 +03:00
|
|
|
* Free the vectors allocated in vfs_opv_init().
|
1994-06-08 15:28:29 +04:00
|
|
|
*/
|
1998-02-18 10:15:30 +03:00
|
|
|
for (i = 0; vopvdpp[i] != NULL; i++) {
|
|
|
|
/* XXX - shouldn't be M_VNODE */
|
|
|
|
free(*(vopvdpp[i]->opv_desc_vector_p), M_VNODE);
|
|
|
|
*(vopvdpp[i]->opv_desc_vector_p) = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-01-22 12:57:25 +03:00
|
|
|
#ifdef DEBUG
|
|
|
|
static void
|
|
|
|
vfs_op_check()
|
1998-02-18 10:15:30 +03:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
DODEBUG(printf("Vnode_interface_init.\n"));
|
2001-01-22 12:57:25 +03:00
|
|
|
|
1994-06-08 15:28:29 +04:00
|
|
|
/*
|
2001-01-22 12:57:25 +03:00
|
|
|
* Check offset of each op.
|
1994-06-08 15:28:29 +04:00
|
|
|
*/
|
2001-01-22 12:57:25 +03:00
|
|
|
for (i = 0; vfs_op_descs[i]; i++) {
|
|
|
|
if (vfs_op_descs[i]->vdesc_offset != i)
|
|
|
|
panic("vfs_op_check: vfs_op_desc[] offset mismatch");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i != VNODE_OPS_COUNT) {
|
|
|
|
panic("vfs_op_check: vnode ops count mismatch (%d != %d)",
|
|
|
|
i, VNODE_OPS_COUNT);
|
1994-06-08 15:28:29 +04:00
|
|
|
}
|
2001-01-22 12:57:25 +03:00
|
|
|
|
|
|
|
DODEBUG(printf ("vfs_opv_numops=%d\n", VNODE_OPS_COUNT));
|
1994-06-08 15:28:29 +04:00
|
|
|
}
|
2001-01-22 12:57:25 +03:00
|
|
|
#endif /* DEBUG */
|
1994-06-08 15:28:29 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Routines having to do with the management of the vnode table.
|
|
|
|
*/
|
|
|
|
struct vattr va_null;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize the vnode structures and initialize each file system type.
|
|
|
|
*/
|
1996-02-04 05:17:43 +03:00
|
|
|
void
|
1994-06-08 15:28:29 +04:00
|
|
|
vfsinit()
|
|
|
|
{
|
2005-03-29 06:41:05 +04:00
|
|
|
__link_set_decl(vfsops, struct vfsops);
|
|
|
|
struct vfsops * const *vfsp;
|
1994-06-08 15:28:29 +04:00
|
|
|
|
2000-08-04 00:41:05 +04:00
|
|
|
/*
|
2001-10-18 03:33:29 +04:00
|
|
|
* Initialize the namei pathname buffer pool and cache.
|
2000-08-04 00:41:05 +04:00
|
|
|
*/
|
|
|
|
pool_init(&pnbuf_pool, MAXPATHLEN, 0, 0, 0, "pnbufpl",
|
2002-03-08 23:48:27 +03:00
|
|
|
&pool_allocator_nointr);
|
2001-10-18 03:33:29 +04:00
|
|
|
pool_cache_init(&pnbuf_cache, &pnbuf_pool, NULL, NULL, NULL);
|
2000-08-04 00:41:05 +04:00
|
|
|
|
1994-06-08 15:28:29 +04:00
|
|
|
/*
|
|
|
|
* Initialize the vnode table
|
|
|
|
*/
|
|
|
|
vntblinit();
|
1998-02-18 10:15:30 +03:00
|
|
|
|
1994-06-08 15:28:29 +04:00
|
|
|
/*
|
|
|
|
* Initialize the vnode name cache
|
|
|
|
*/
|
|
|
|
nchinit();
|
1998-02-18 10:15:30 +03:00
|
|
|
|
2001-01-22 12:57:25 +03:00
|
|
|
#ifdef DEBUG
|
1994-06-08 15:28:29 +04:00
|
|
|
/*
|
2001-01-22 12:57:25 +03:00
|
|
|
* Check the list of vnode operations.
|
1994-06-08 15:28:29 +04:00
|
|
|
*/
|
2001-01-22 12:57:25 +03:00
|
|
|
vfs_op_check();
|
|
|
|
#endif
|
1998-02-18 10:15:30 +03:00
|
|
|
|
1994-06-08 15:28:29 +04:00
|
|
|
/*
|
1998-02-18 10:15:30 +03:00
|
|
|
* Initialize the special vnode operations.
|
|
|
|
*/
|
|
|
|
vfs_opv_init(vfs_special_vnodeopv_descs);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Establish each file system which was statically
|
|
|
|
* included in the kernel.
|
1994-06-08 15:28:29 +04:00
|
|
|
*/
|
|
|
|
vattr_null(&va_null);
|
2005-03-29 06:41:05 +04:00
|
|
|
__link_set_foreach(vfsp, vfsops) {
|
|
|
|
if (vfs_attach(*vfsp)) {
|
1998-02-18 10:15:30 +03:00
|
|
|
printf("multiple `%s' file systems",
|
2005-03-29 06:41:05 +04:00
|
|
|
(*vfsp)->vfs_name);
|
1998-02-18 10:15:30 +03:00
|
|
|
panic("vfsinit");
|
|
|
|
}
|
1994-06-08 15:28:29 +04:00
|
|
|
}
|
|
|
|
}
|