Add a stub for softdep_request_cleanup() so that compilation without

SOFTUPDATES option works properly.

Submitted by:	Benno Rice <benno@jeamland.net>
This commit is contained in:
mckusick 2002-01-23 02:18:56 +00:00
parent 58bf98842e
commit 35edc11259

View File

@ -282,4 +282,13 @@ softdep_releasefile(ip)
panic("softdep_releasefile called");
}
int
softdep_request_cleanup(fs, vp)
struct fs *fs;
struct vnode *vp;
{
return (0);
}
#endif /* SOFTUPDATES not configured in */