svn commit: r353598 - head/sys/kern
Gleb Smirnoff
glebius at FreeBSD.org
Tue Oct 15 21:32:39 UTC 2019
Author: glebius
Date: Tue Oct 15 21:32:38 2019
New Revision: 353598
URL: https://svnweb.freebsd.org/changeset/base/353598
Log:
Missing from r353596.
Modified:
head/sys/kern/kern_malloc.c
head/sys/kern/kern_synch.c
Modified: head/sys/kern/kern_malloc.c
==============================================================================
--- head/sys/kern/kern_malloc.c Tue Oct 15 21:27:06 2019 (r353597)
+++ head/sys/kern/kern_malloc.c Tue Oct 15 21:32:38 2019 (r353598)
@@ -65,6 +65,9 @@ __FBSDID("$FreeBSD$");
#include <sys/sysctl.h>
#include <sys/time.h>
#include <sys/vmem.h>
+#ifdef EPOCH_TRACE
+#include <sys/epoch.h>
+#endif
#include <vm/vm.h>
#include <vm/pmap.h>
Modified: head/sys/kern/kern_synch.c
==============================================================================
--- head/sys/kern/kern_synch.c Tue Oct 15 21:27:06 2019 (r353597)
+++ head/sys/kern/kern_synch.c Tue Oct 15 21:32:38 2019 (r353598)
@@ -66,6 +66,9 @@ __FBSDID("$FreeBSD$");
#include <sys/uio.h>
#include <sys/ktrace.h>
#endif
+#ifdef EPOCH_TRACE
+#include <sys/epoch.h>
+#endif
#include <machine/cpu.h>
More information about the svn-src-all
mailing list