On 2019-09-23 05:43, Kyle Evans wrote:
Author: kevans
Date: Mon Sep 23 12:43:08 2019
New Revision: 352619
URL: https://svnweb.freebsd.org/changeset/base/352619

Log:
   mips: fix XLPN32 after r352434
SYSINIT usage was added, but the <sys/kernel.h> dependency was not added.
   This worked by coincidence, as most of the mips configs have DDB enabled and
   pmap.c gets <sys/kernel.h> via ddb.h pollution.
Reported by: dim

Thanks for fixing this.
Pointyhat to: jah


Modified:
   head/sys/mips/mips/pmap.c

Modified: head/sys/mips/mips/pmap.c
==============================================================================
--- head/sys/mips/mips/pmap.c   Mon Sep 23 12:27:55 2019        (r352618)
+++ head/sys/mips/mips/pmap.c   Mon Sep 23 12:43:08 2019        (r352619)
@@ -68,6 +68,7 @@ __FBSDID("$FreeBSD$");
#include <sys/param.h>
  #include <sys/systm.h>
+#include <sys/kernel.h>
  #include <sys/lock.h>
  #include <sys/mman.h>
  #include <sys/msgbuf.h>

_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to