add a stub for softdep_slowdown so that it's possible to build the

kernel without SOFTUPDATES
This commit is contained in:
assar 2000-12-17 23:59:56 +00:00
parent 69242be380
commit 4d01c1e206

View File

@ -266,4 +266,10 @@ softdep_sync_metadata(ap)
return (0);
}
int
softdep_slowdown(vp)
struct vnode *vp;
{
panic("softdep_slowdown called");
}
#endif /* SOFTUPDATES not configured in */