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