Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 23 Sep 2019 07:00:34 -0700
From:      Jason Harmening <jason.harmening@gmail.com>
To:        Kyle Evans <kevans@FreeBSD.org>, src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   Re: svn commit: r352619 - head/sys/mips/mips
Message-ID:  <d9dcf2f6-f82f-5e68-1f83-31a72089f2f4@gmail.com>
In-Reply-To: <201909231243.x8NCh8RD077448@repo.freebsd.org>
References:  <201909231243.x8NCh8RD077448@repo.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help


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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?d9dcf2f6-f82f-5e68-1f83-31a72089f2f4>