From 2a91a9dd04db6f7f139116433bc749e9ef752d07 Mon Sep 17 00:00:00 2001 From: phk Date: Mon, 3 Jul 2000 13:26:54 +0000 Subject: Make the two calls from kern/* into softupdates #ifdef SOFTUPDATES, that is way cleaner than using the softupdates_stub stunt, which should be killed when convenient. Discussed with: mckusick --- sys/kern/vfs_export.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sys/kern/vfs_export.c') diff --git a/sys/kern/vfs_export.c b/sys/kern/vfs_export.c index eaec53b..684bcd4 100644 --- a/sys/kern/vfs_export.c +++ b/sys/kern/vfs_export.c @@ -43,6 +43,7 @@ * External virtual filesystem routines */ #include "opt_ddb.h" +#include "opt_ffs.h" #include #include @@ -1030,7 +1031,9 @@ sched_sync(void) /* * Do soft update processing. */ +#ifdef SOFTUPDATES softdep_process_worklist(NULL); +#endif /* * The variable rushjob allows the kernel to speed up the -- cgit v1.1