CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2018/09/17 08:56:37
Modified files:
sys/kern : vfs_init.c vfs_subr.c
sys/sys : mount.h
Log message:
Simplify VFS initialization.
Because loadable kernel modules are no longer, there is no need to
register or unregister filesystem implementations at runtime. Remove
vfs_register() and vfs_unregister(), and make vfsinit() call vfs_init
routines directly. Replace the linked list of vfsconf structs with
the vfsconflist[] array.
OK mpi@ bluhm@