1 /*- 2 * Copyright (c) 1991, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * %sccs.include.redist.c% 6 * 7 * @(#)mfs_extern.h 8.1 (Berkeley) 06/11/93 8 */ 9 10 struct buf; 11 struct mount; 12 struct nameidata; 13 struct proc; 14 struct statfs; 15 struct ucred; 16 struct vnode; 17 18 __BEGIN_DECLS 19 int mfs_badop __P((void)); 20 int mfs_bmap __P((struct vop_bmap_args *)); 21 int mfs_close __P((struct vop_close_args *)); 22 void mfs_doio __P((struct buf *bp, caddr_t base)); 23 int mfs_inactive __P((struct vop_inactive_args *)); /* XXX */ 24 int mfs_reclaim __P((struct vop_reclaim_args *)); /* XXX */ 25 int mfs_init __P((void)); 26 int mfs_ioctl __P((struct vop_ioctl_args *)); 27 int mfs_mount __P((struct mount *mp, 28 char *path, caddr_t data, struct nameidata *ndp, struct proc *p)); 29 int mfs_open __P((struct vop_open_args *)); 30 int mfs_print __P((struct vop_print_args *)); /* XXX */ 31 int mfs_start __P((struct mount *mp, int flags, struct proc *p)); 32 int mfs_statfs __P((struct mount *mp, struct statfs *sbp, struct proc *p)); 33 int mfs_strategy __P((struct vop_strategy_args *)); /* XXX */ 34 __END_DECLS 35