svn commit: r352619 - head/sys/mips/mips

Jason Harmening jason.harmening at gmail.com
Mon Sep 23 14:01:42 UTC 2019



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>
> 


More information about the svn-src-head mailing list