151479Sbostic /*- 251479Sbostic * Copyright (c) 1991 The Regents of the University of California. 351479Sbostic * All rights reserved. 451479Sbostic * 551479Sbostic * %sccs.include.redist.c% 651479Sbostic * 7*53561Sheideman * @(#)mfs_extern.h 7.3 (Berkeley) 05/14/92 851479Sbostic */ 951479Sbostic 1051479Sbostic struct buf; 1151479Sbostic struct mount; 1251479Sbostic struct nameidata; 1351479Sbostic struct proc; 1451479Sbostic struct statfs; 1551479Sbostic struct ucred; 1651479Sbostic struct vnode; 1751479Sbostic 1851479Sbostic __BEGIN_DECLS 1951479Sbostic int mfs_badop __P((void)); 20*53561Sheideman int mfs_bmap __P((struct vop_bmap_args *)); 21*53561Sheideman int mfs_close __P((struct vop_close_args *)); 2251479Sbostic void mfs_doio __P((struct buf *bp, caddr_t base)); 23*53561Sheideman int mfs_inactive __P((struct vop_inactive_args *)); /* XXX */ 24*53561Sheideman int mfs_reclaim __P((struct vop_reclaim_args *)); /* XXX */ 2551479Sbostic int mfs_init __P((void)); 26*53561Sheideman int mfs_ioctl __P((struct vop_ioctl_args *)); 2751479Sbostic int mfs_mount __P((struct mount *mp, 2851479Sbostic char *path, caddr_t data, struct nameidata *ndp, struct proc *p)); 29*53561Sheideman int mfs_open __P((struct vop_open_args *)); 30*53561Sheideman int mfs_print __P((struct vop_print_args *)); /* XXX */ 3151479Sbostic int mfs_start __P((struct mount *mp, int flags, struct proc *p)); 3251479Sbostic int mfs_statfs __P((struct mount *mp, struct statfs *sbp, struct proc *p)); 33*53561Sheideman int mfs_strategy __P((struct vop_strategy_args *)); /* XXX */ 3451479Sbostic __END_DECLS 35