Author: jeff
Date: Wed Apr 28 07:26:41 2010
New Revision: 207309
URL: http://svn.freebsd.org/changeset/base/207309

Log:
   - Fix builds without SOFTUPDATES defined in the kernel config.

Modified:
  head/sys/ufs/ffs/ffs_softdep.c

Modified: head/sys/ufs/ffs/ffs_softdep.c
==============================================================================
--- head/sys/ufs/ffs/ffs_softdep.c      Wed Apr 28 06:34:47 2010        
(r207308)
+++ head/sys/ufs/ffs/ffs_softdep.c      Wed Apr 28 07:26:41 2010        
(r207309)
@@ -123,6 +123,21 @@ softdep_uninitialize()
 }
 
 void
+softdep_unmount(mp)
+       struct mount *mp;
+{
+
+}
+
+void
+softdep_setup_sbupdate(ump, fs, bp)
+       struct ufsmount *ump;
+       struct fs *fs;
+       struct buf *bp;
+{
+}
+
+void
 softdep_setup_inomapdep(bp, ip, newinum)
        struct buf *bp;
        struct inode *ip;
@@ -267,6 +282,162 @@ softdep_setup_directory_change(bp, dp, i
        panic("softdep_setup_directory_change called");
 }
 
+void *
+softdep_setup_trunc(vp, length, flags)
+       struct vnode *vp;
+       off_t length;
+       int flags;
+{
+
+       panic("%s called", __FUNCTION__);
+
+       return (NULL);
+}
+
+int
+softdep_complete_trunc(vp, cookie)
+       struct vnode *vp;
+       void *cookie;
+{
+
+       panic("%s called", __FUNCTION__);
+
+       return (0);
+}
+
+void
+softdep_setup_blkfree(mp, bp, blkno, frags, wkhd)
+       struct mount *mp;
+       struct buf *bp;
+       ufs2_daddr_t blkno;
+       int frags;
+       struct workhead *wkhd;
+{
+
+       panic("%s called", __FUNCTION__);
+}
+
+void
+softdep_setup_inofree(mp, bp, ino, wkhd)
+       struct mount *mp;
+       struct buf *bp;
+       ino_t ino;
+       struct workhead *wkhd;
+{
+
+       panic("%s called", __FUNCTION__);
+}
+
+void
+softdep_setup_unlink(dp, ip)
+       struct inode *dp;
+       struct inode *ip;
+{
+
+       panic("%s called", __FUNCTION__);
+}
+
+void
+softdep_setup_link(dp, ip)
+       struct inode *dp;
+       struct inode *ip;
+{
+
+       panic("%s called", __FUNCTION__);
+}
+
+void
+softdep_revert_link(dp, ip)
+       struct inode *dp;
+       struct inode *ip;
+{
+
+       panic("%s called", __FUNCTION__);
+}
+
+void
+softdep_setup_rmdir(dp, ip)
+       struct inode *dp;
+       struct inode *ip;
+{
+
+       panic("%s called", __FUNCTION__);
+}
+
+void
+softdep_revert_rmdir(dp, ip)
+       struct inode *dp;
+       struct inode *ip;
+{
+
+       panic("%s called", __FUNCTION__);
+}
+
+void
+softdep_setup_create(dp, ip)
+       struct inode *dp;
+       struct inode *ip;
+{
+
+       panic("%s called", __FUNCTION__);
+}
+
+void
+softdep_revert_create(dp, ip)
+       struct inode *dp;
+       struct inode *ip;
+{
+
+       panic("%s called", __FUNCTION__);
+}
+
+void
+softdep_setup_mkdir(dp, ip)
+       struct inode *dp;
+       struct inode *ip;
+{
+
+       panic("%s called", __FUNCTION__);
+}
+
+void
+softdep_revert_mkdir(dp, ip)
+       struct inode *dp;
+       struct inode *ip;
+{
+
+       panic("%s called", __FUNCTION__);
+}
+
+void
+softdep_setup_dotdot_link(dp, ip)
+       struct inode *dp;
+       struct inode *ip;
+{
+
+       panic("%s called", __FUNCTION__);
+}
+
+int
+softdep_prealloc(vp, waitok)
+       struct vnode *vp;
+       int waitok;
+{
+
+       panic("%s called", __FUNCTION__);
+
+       return (0);
+}
+
+int
+softdep_journal_lookup(mp, vpp)
+       struct mount *mp;
+       struct vnode **vpp;
+{
+
+       return (ENOENT);
+}
+
 void
 softdep_change_linkcnt(ip)
        struct inode *ip;
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to