Date: Mon, 23 Sep 2019 12:43:08 +0000 (UTC) From: Kyle Evans <kevans@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r352619 - head/sys/mips/mips Message-ID: <201909231243.x8NCh8RD077448@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909231243.x8NCh8RD077448>