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:
Kirk McKusick 2002-01-23 02:18:56 +00:00
parent ce6d929bb5
commit 7b60855308

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 */