xref: /original-bsd/sys/ufs/mfs/mfs_extern.h (revision 0842ddeb)
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.4 (Berkeley) 03/30/95
8  */
9 
10 struct buf;
11 struct mount;
12 struct nameidata;
13 struct proc;
14 struct statfs;
15 struct ucred;
16 struct vnode;
17 struct vfsconf;
18 
19 __BEGIN_DECLS
20 int	mfs_badop __P((void));
21 int	mfs_bmap __P((struct vop_bmap_args *));
22 int	mfs_close __P((struct vop_close_args *));
23 void	mfs_doio __P((struct buf *bp, caddr_t base));
24 int	mfs_inactive __P((struct vop_inactive_args *)); /* XXX */
25 int	mfs_reclaim __P((struct vop_reclaim_args *));
26 int	mfs_init __P((struct vfsconf *));
27 int	mfs_ioctl __P((struct vop_ioctl_args *));
28 int	mfs_mount __P((struct mount *mp,
29 	    char *path, caddr_t data, struct nameidata *ndp, struct proc *p));
30 int	mfs_open __P((struct vop_open_args *));
31 int	mfs_print __P((struct vop_print_args *)); /* XXX */
32 #define	mfs_revoke vop_revoke
33 int	mfs_start __P((struct mount *mp, int flags, struct proc *p));
34 int	mfs_statfs __P((struct mount *mp, struct statfs *sbp, struct proc *p));
35 int	mfs_strategy __P((struct vop_strategy_args *)); /* XXX */
36 __END_DECLS
37