Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 30 Dec 2020 16:58:57 -0600
From:      "Brandon Bergren" <bdragon@FreeBSD.org>
To:        "Piotr Kubaj" <pkubaj@FreeBSD.org>, src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   =?UTF-8?Q?Re:_git:_ac19bf854b8c_-_main_-_powerpc/aim:_Add_machine_check_?= =?UTF-8?Q?handler_for_TLB_multihit?=
Message-ID:  <cc88b65d-f614-4f93-af59-407b4b0b1a02@www.fastmail.com>
In-Reply-To: <202012302245.0BUMjrc6032470@gitrepo.freebsd.org>
References:  <202012302245.0BUMjrc6032470@gitrepo.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
Approved-By: bdragon (in IRC)

On Wed, Dec 30, 2020, at 4:45 PM, Piotr Kubaj wrote:
> The branch main has been updated by pkubaj (ports committer):
> 
> URL: 
> https://cgit.FreeBSD.org/src/commit/?id=ac19bf854b8c0bedc793af0cb501f08c6612ccd5
> 
> commit ac19bf854b8c0bedc793af0cb501f08c6612ccd5
> Author:     Justin Hibbits <chmeeedalf@gmail.com>
> AuthorDate: 2020-05-29 02:02:41 +0000
> Commit:     Piotr Kubaj <pkubaj@FreeBSD.org>
> CommitDate: 2020-12-30 22:45:10 +0000
> 
>     powerpc/aim: Add machine check handler for TLB multihit
>     
>     Handle TLB multi-hit the same as ERAT multi-hit, by flushing the full
>     TLB.
> ---
>  sys/powerpc/aim/aim_machdep.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/sys/powerpc/aim/aim_machdep.c 
> b/sys/powerpc/aim/aim_machdep.c
> index 8824e7447ea6..0ce7cf03403f 100644
> --- a/sys/powerpc/aim/aim_machdep.c
> +++ b/sys/powerpc/aim/aim_machdep.c
> @@ -563,7 +563,8 @@ cpu_machine_check(struct thread *td, struct 
> trapframe *frame, int *ucode)
>  		/* SLB multi-hit is recoverable. */
>  		if ((frame->cpu.aim.dsisr & DSISR_MC_SLB_MULTIHIT) != 0)
>  			return (0);
> -		if ((frame->cpu.aim.dsisr & DSISR_MC_DERAT_MULTIHIT) != 0) {
> +		if ((frame->cpu.aim.dsisr &
> +		    (DSISR_MC_DERAT_MULTIHIT | DSISR_MC_TLB_MULTIHIT)) != 0) {
>  			pmap_tlbie_all();
>  			return (0);
>  		}
>

-- 
  Brandon Bergren
  bdragon@FreeBSD.org



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?cc88b65d-f614-4f93-af59-407b4b0b1a02>