aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs/mfs/mfs_extern.h
diff options
context:
space:
mode:
authorJulian Elischer <julian@FreeBSD.org>1995-08-28 09:19:25 +0000
committerJulian Elischer <julian@FreeBSD.org>1995-08-28 09:19:25 +0000
commit2b14f991e64ebe31ca31a1a41237061c22a753d0 (patch)
tree53b6da073fd58ab81ebf18bb0642954c76b642bd /sys/ufs/mfs/mfs_extern.h
parentfe89a532f18d81f8e76e48fc462f070e870d035d (diff)
downloadsrc-2b14f991e64ebe31ca31a1a41237061c22a753d0.tar.gz
src-2b14f991e64ebe31ca31a1a41237061c22a753d0.zip
Reviewed by: julian with quick glances by bruce and others
Submitted by: terry (terry lambert) This is a composite of 3 patch sets submitted by terry. they are: New low-level init code that supports loadbal modules better some cleanups in the namei code to help terry in 16-bit character support some changes to the mount-root code to make it a little more modular.. NOTE: mounting root off cdrom or NFS MIGHT be broken as I haven't been able to test those cases.. certainly mounting root of disk still works just fine.. mfs should work but is untested. (tomorrows task) The low level init stuff includes a total rewrite of init_main.c to make it possible for new modules to have an init phase by simply adding an entry to a TEXT_SET (or is it DATA_SET) list. thus a new module can be added to the kernel without editing any other files other than the 'files' file.
Notes
Notes: svn path=/head/; revision=10358
Diffstat (limited to 'sys/ufs/mfs/mfs_extern.h')
-rw-r--r--sys/ufs/mfs/mfs_extern.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/ufs/mfs/mfs_extern.h b/sys/ufs/mfs/mfs_extern.h
index fa51177ac9fe..887c3d76404a 100644
--- a/sys/ufs/mfs/mfs_extern.h
+++ b/sys/ufs/mfs/mfs_extern.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)mfs_extern.h 8.1 (Berkeley) 6/11/93
- * $Id: mfs_extern.h,v 1.2 1994/08/02 07:54:42 davidg Exp $
+ * $Id: mfs_extern.h,v 1.3 1994/08/21 07:16:10 paul Exp $
*/
#ifndef _UFS_MFS_MFS_EXTERN_H_
@@ -56,6 +56,8 @@ int mfs_init __P((void));
int mfs_ioctl __P((struct vop_ioctl_args *));
int mfs_mount __P((struct mount *mp,
char *path, caddr_t data, struct nameidata *ndp, struct proc *p));
+int mfs_mountfs __P((struct vnode *, struct mount *, struct proc *));
+int mfs_mountroot __P((void));
int mfs_open __P((struct vop_open_args *));
int mfs_print __P((struct vop_print_args *)); /* XXX */
int mfs_start __P((struct mount *mp, int flags, struct proc *p));