aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/unionfs
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/fs/unionfs
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/fs/unionfs')
-rw-r--r--sys/fs/unionfs/union_subr.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/fs/unionfs/union_subr.c b/sys/fs/unionfs/union_subr.c
index 0abb08762f8a..f3b5e4840050 100644
--- a/sys/fs/unionfs/union_subr.c
+++ b/sys/fs/unionfs/union_subr.c
@@ -41,6 +41,7 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
+#include <sys/ktr.h>
#include <sys/lock.h>
#include <sys/mutex.h>
#include <sys/malloc.h>