Directly include sys/mplock.h when needed instead of depending on
authorjsg <jsg@openbsd.org>
Mon, 19 Feb 2018 09:08:13 +0000 (09:08 +0000)
committerjsg <jsg@openbsd.org>
Mon, 19 Feb 2018 09:08:13 +0000 (09:08 +0000)
indirect inclusion.  Fixes non-MULTIPROCESSOR WITNESS build.

ok visa@ mpi@

sys/kern/kern_lock.c

index 64c5a1f..6529df4 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: kern_lock.c,v 1.57 2018/02/14 08:55:12 mpi Exp $      */
+/*     $OpenBSD: kern_lock.c,v 1.58 2018/02/19 09:08:13 jsg Exp $      */
 
 /*
  * Copyright (c) 2017 Visa Hankala
 
 #include <ddb/db_output.h>
 
+#if defined(MULTIPROCESSOR) || defined(WITNESS)
+#include <sys/mplock.h>
+struct __mp_lock kernel_lock;
+#endif
+
 #ifdef MP_LOCKDEBUG
 #ifndef DDB
 #error "MP_LOCKDEBUG requires DDB"
 int __mp_lock_spinout = 200000000;
 #endif /* MP_LOCKDEBUG */
 
-#if defined(MULTIPROCESSOR) || defined(WITNESS)
-struct __mp_lock kernel_lock;
-#endif
-
 #ifdef MULTIPROCESSOR
 
 /*