diff options
author | phk <phk@FreeBSD.org> | 2000-06-16 13:00:33 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2000-06-16 13:00:33 +0000 |
commit | 74e1ff15ad65bce9d3b760f6a45392480dd8e173 (patch) | |
tree | 22cb646a60b1642d5926cbc241a8005b10cb3020 /sys/contrib | |
parent | ce4f63fda759313480cd755482c4f6ac8c62705b (diff) | |
download | FreeBSD-src-74e1ff15ad65bce9d3b760f6a45392480dd8e173.zip FreeBSD-src-74e1ff15ad65bce9d3b760f6a45392480dd8e173.tar.gz |
ARGH! I have too many source trees :-(
Fix prototype errors in last commit.
Diffstat (limited to 'sys/contrib')
-rw-r--r-- | sys/contrib/softupdates/ffs_softdep.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/contrib/softupdates/ffs_softdep.c b/sys/contrib/softupdates/ffs_softdep.c index 6574363..870d6ac 100644 --- a/sys/contrib/softupdates/ffs_softdep.c +++ b/sys/contrib/softupdates/ffs_softdep.c @@ -213,8 +213,6 @@ static void add_to_worklist __P((struct worklist *)); static void softdep_disk_io_initiation __P((struct buf *)); static void softdep_disk_write_complete __P((struct buf *)); static void softdep_deallocate_dependencies __P((struct buf *)); -static int softdep_fsync __P((struct vnode *)); -static int softdep_process_worklist __P((struct mount *)); static void softdep_move_dependencies __P((struct buf *, struct buf *)); static int softdep_count_dependencies __P((struct buf *bp, int)); @@ -521,7 +519,7 @@ add_to_worklist(wk) * ordering ensures that no new <vfsid, inum, lbn> triples will be generated * until all the old ones have been purged from the dependency lists. */ -static int +int softdep_process_worklist(matchmnt) struct mount *matchmnt; { @@ -3690,7 +3688,7 @@ merge_inode_lists(inodedep) * If we are doing an fsync, then we must ensure that any directory * entries for the inode have been written after the inode gets to disk. */ -static int +int softdep_fsync(vp) struct vnode *vp; /* the "in_core" copy of the inode */ { |