aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs/mfsnode.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/ufs/mfsnode.h')
-rw-r--r--sys/ufs/mfsnode.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/sys/ufs/mfsnode.h b/sys/ufs/mfsnode.h
index 9cd1c29e4845..186a0804d9a5 100644
--- a/sys/ufs/mfsnode.h
+++ b/sys/ufs/mfsnode.h
@@ -31,9 +31,12 @@
* SUCH DAMAGE.
*
* from: @(#)mfsnode.h 7.3 (Berkeley) 4/16/91
- * $Id: mfsnode.h,v 1.2 1993/10/16 18:17:46 rgrimes Exp $
+ * $Id: mfsnode.h,v 1.4 1993/11/25 01:38:26 wollman Exp $
*/
+#ifndef _UFS_MFSNODE_H_
+#define _UFS_MFSNODE_H_ 1
+
/*
* This structure defines the control data for the memory
* based file system.
@@ -185,7 +188,7 @@ int mfs_bmap __P((
daddr_t *bnp));
int mfs_strategy __P((
struct buf *bp));
-int mfs_print __P((
+void mfs_print __P((
struct vnode *vp));
#define mfs_islocked ((int (*) __P(( \
struct vnode *vp))) nullop)
@@ -195,3 +198,7 @@ int mfs_print __P((
int op, \
struct flock *fl, \
int flags))) mfs_badop)
+
+void mfs_doio(struct buf *, caddr_t);
+
+#endif /* _UFS_MFSNODE_H_ */