diff options
Diffstat (limited to 'sys/kern/vfs_subr.c')
-rw-r--r-- | sys/kern/vfs_subr.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index eaec53b..684bcd4 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -43,6 +43,7 @@ * External virtual filesystem routines */ #include "opt_ddb.h" +#include "opt_ffs.h" #include <sys/param.h> #include <sys/systm.h> @@ -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 |