Hi,

I found a difference of definition softdep_request_cleanup.
when SOFTUPDATES undefined softdep_request_cleanup take only two arguments. 

Patch to fix this:

Index: sys/ufs/ffs/ffs_softdep.c
===================================================================
--- sys/ufs/ffs/ffs_softdep.c   (revision 220095)
+++ sys/ufs/ffs/ffs_softdep.c   (working copy)
@@ -514,9 +514,10 @@
 }
 
 int
-softdep_request_cleanup(fs, vp)
+softdep_request_cleanup(fs, vp, resource)
        struct fs *fs;
        struct vnode *vp;
+       int resource;
 {
 
        return (0);

-- 
Alexandr Rybalko <r...@dlink.ua> 
aka Alex RAY <r...@ddteam.net>
_______________________________________________
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"

Reply via email to