aboutsummaryrefslogtreecommitdiff
path: root/sys/arm64/arm64/mp_machdep.c
diff options
context:
space:
mode:
authorConrad Meyer <cem@FreeBSD.org>2019-05-21 20:38:48 +0000
committerConrad Meyer <cem@FreeBSD.org>2019-05-21 20:38:48 +0000
commitdaec92844e8fef4d0a629c70443043691e59530c (patch)
tree412c8e680cf6c12d5cbd2532dd4513e495e7c09b /sys/arm64/arm64/mp_machdep.c
parentaa32159686aea482c6e5fffdac952904a1cfc13c (diff)
downloadsrc-daec92844e8fef4d0a629c70443043691e59530c.tar.gz
src-daec92844e8fef4d0a629c70443043691e59530c.zip
Include ktr.h in more compilation units
Similar to r348026, exhaustive search for uses of CTRn() and cross reference ktr.h includes. Where it was obvious that an OS compat header of some kind included ktr.h indirectly, .c files were left alone. Some of these files clearly got ktr.h via header pollution in some scenarios, or tinderbox would not be passing prior to this revision, but go ahead and explicitly include it in files using it anyway. Like r348026, these CUs did not show up in tinderbox as missing the include. Reported by: peterj (arm64/mp_machdep.c) X-MFC-With: r347984 Sponsored by: Dell EMC Isilon
Notes
Notes: svn path=/head/; revision=348064
Diffstat (limited to 'sys/arm64/arm64/mp_machdep.c')
-rw-r--r--sys/arm64/arm64/mp_machdep.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/arm64/arm64/mp_machdep.c b/sys/arm64/arm64/mp_machdep.c
index b2df286ee489..d046c27b8bad 100644
--- a/sys/arm64/arm64/mp_machdep.c
+++ b/sys/arm64/arm64/mp_machdep.c
@@ -40,6 +40,7 @@ __FBSDID("$FreeBSD$");
#include <sys/bus.h>
#include <sys/cpu.h>
#include <sys/kernel.h>
+#include <sys/ktr.h>
#include <sys/malloc.h>
#include <sys/module.h>
#include <sys/mutex.h>